From 23b21693eb3964b4c2dc47b40164543bf86ec2ad Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Wed, 10 Sep 2025 12:05:04 -0400 Subject: [PATCH 01/33] Adding single search option to v2 affiliation search --- requirements.txt | 1 + rorapi/common/es_utils.py | 19 + rorapi/common/matching_single_search.py | 325 + rorapi/common/views.py | 9 +- rorapi/management/commands/indexrordump.py | 13 + .../data/dataset_affiliations.json | 5712 ----- ...aset_affiliations_crossref_2024_02_19.json | 17314 +++++++++++++++ ...aset_affiliations_springer_2023_10_31.json | 18195 ++++++++++++++++ .../tests_functional/tests_matching_v1.py | 10 +- .../tests_functional/tests_matching_v2.py | 26 +- rorapi/v2/index_template_es7.json | 37 + 11 files changed, 35939 insertions(+), 5722 deletions(-) create mode 100644 rorapi/common/matching_single_search.py delete mode 100644 rorapi/tests/tests_functional/data/dataset_affiliations.json create mode 100644 rorapi/tests/tests_functional/data/dataset_affiliations_crossref_2024_02_19.json create mode 100644 rorapi/tests/tests_functional/data/dataset_affiliations_springer_2023_10_31.json diff --git a/requirements.txt b/requirements.txt index a44a9b88..af6a22ba 100644 --- a/requirements.txt +++ b/requirements.txt @@ -25,6 +25,7 @@ launchdarkly-server-sdk==7.6.1 jsonschema==3.2.0 python-magic iso639-lang +rapidfuzz==3.6.1 mysqlclient==2.2.7 bleach==6.0.0 pycountry==22.3.5 diff --git a/rorapi/common/es_utils.py b/rorapi/common/es_utils.py index cb3765b8..af19e529 100644 --- a/rorapi/common/es_utils.py +++ b/rorapi/common/es_utils.py @@ -28,6 +28,25 @@ def add_string_query(self, terms): query=Q("query_string", query=terms, fuzzy_max_expansions=1), ) + def add_affiliation_query(self, terms, max_candidates): + # print(terms) + self.search = self.search.query( + "nested", + path="affiliation_match.names", + score_mode="max", + query=Q("match", **{"affiliation_match.names.name": terms}) + ).extra(size=max_candidates) + + ''' + Nested( + path="outer_nested_field", + query=Q( + "nested", + path="outer_nested_field.inner_nested_field", + query=Q("match", outer_nested_field__inner_nested_field__some_field="some_value") + ) + ''' + def add_string_query_advanced(self, terms): self.search = self.search.query( "bool", diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py new file mode 100644 index 00000000..c2b993c2 --- /dev/null +++ b/rorapi/common/matching_single_search.py @@ -0,0 +1,325 @@ +import os +import re +import unicodedata +import unidecode + +from rorapi.common.models import Errors +from rorapi.common.es_utils import ESQueryBuilder +from rorapi.v1.models import MatchingResult as MatchingResultV1 +from rorapi.v2.models import MatchingResult as MatchingResultV2 + +from collections import namedtuple +from functools import lru_cache +from rapidfuzz import fuzz +from itertools import groupby + +MIN_SCORE = 96 +MIN_SCORE_FOR_RETURN = 50 + +MATCHING_TYPE_SINGLE = "SINGLE SEARCH" + +# Matching strategy from Marple: +# https://gitlab.com/crossref/labs/marple/-/blob/main/strategies_available/affiliation_single_search/strategy.py?ref_type=heads + +@lru_cache(maxsize=None) +def load_countries(): + """Load custom country code map from countries.txt. Tried to use geonames but it gave worse results since it only + includes country names. Might be worth it to try again in the future.""" + countries = [] + with open(os.path.join(os.path.split(__file__)[0], "countries.txt")) as file: + lines = [line.strip().split() for line in file] + countries = [(line[0], " ".join(line[1:])) for line in lines] + return countries + + +GEONAMES_COUNTRIES = load_countries() + + +def to_region(c): + """Map country code to "region" string. + This effectively groups countries often confused in the data to make sure + the scoring functions do not reject potential matching candidates.""" + + return { + "GB": "GB-UK", + "UK": "GB-UK", + "CN": "CN-HK-TW", + "HK": "CN-HK-TW", + "TW": "CN-HK-TW", + "PR": "US-PR", + "US": "US-PR", + }.get(c, c) + + +def get_country_codes(string): + string = unidecode.unidecode(string).strip() + lower = re.sub(r"\s+", " ", string.lower()) + lower_alpha = re.sub(r"\s+", " ", re.sub("[^a-z]", " ", string.lower())) + alpha = re.sub(r"\s+", " ", re.sub("[^a-zA-Z]", " ", string)) + codes = [] + for code, name in GEONAMES_COUNTRIES: + if re.search("[^a-z]", name): + score = fuzz.partial_ratio(name, lower) + elif len(name) == 2: + score = max([fuzz.ratio(name.upper(), t) for t in alpha.split()] + [0]) + else: + score = max([fuzz.ratio(name, t) for t in lower_alpha.split()] + [0]) + if score >= 90: + codes.append(code.upper()) + return list(set(codes)) + + +def get_countries(string): + """Extract country codes the the string and map to regions.""" + + codes = get_country_codes(string) + return [to_region(c) for c in codes] + + +def check_latin_chars(s): + for ch in s: + if ch.isalpha(): + if "LATIN" not in unicodedata.name(ch): + return False + return True + + +def normalize(s): + """Normalize string for matching.""" + + if check_latin_chars(s): + s = re.sub(r"\s+", " ", unidecode.unidecode(s).strip().lower()) + else: + s = re.sub(r"\s+", " ", s.strip().lower()) + s = re.sub( + "(? 4: + score += 1 + if c_diff - o_diff > 4: + score -= 1 + if candidate.start > other.end: + score += 1 + if other.start > candidate.end: + score -= 1 + if candidate.score > 99 and other.score < 99: + score += 1 + if candidate.score < 99 and other.score > 99: + score -= 1 + return score > 0 + + +def rescore(aff, candidates): + new_scores = [] + for candidate in candidates: + ns = 0 + for other in candidates: + if is_better(aff, candidate, other): + ns += 1 + new_scores.append(ns) + return [c._replace(rescore=ns) for c, ns in zip(candidates, new_scores)] + + +def score(aff, candidate): + best = MatchedOrganization( + organization=candidate, + name="", + score=0, + rescore=0, + start=-1, + end=-1, + matching_type=MATCHING_TYPE_SINGLE, + substring=aff, + chosen=False, + ) + for candidate_name in candidate["_source"]["affiliation_match"]["names"]: + if hasattr(candidate_name, "name"): + name = candidate_name["name"] + if ( + name.lower() in ["university school", "university hospital"] + or len(name) >= len(aff) + 4 + or len(name) < 5 + or (" " not in name and aff.lower() != name.lower()) + or (" " not in aff and aff.lower() != name.lower()) + ): + continue + alignment = fuzz.partial_ratio_alignment(normalize(aff), normalize(name)) + if alignment.score > best.score: + best = MatchedOrganization( + organization=candidate, + name=name, + score=alignment.score, + rescore=alignment.score, + start=alignment.src_start, + end=alignment.src_end, + matching_type=MATCHING_TYPE_SINGLE, + substring=aff, + chosen=False, + ) + return best + +def choose_candidate(rescored): + + top_score = max([c.rescore for c in rescored]) + top_scored = [c for c in rescored if c.rescore == top_score] + + if len(top_scored) == 1: + return top_scored[0] + + return last_non_overlapping(top_scored) + +MatchedOrganization = namedtuple( + "MatchedOrganization", + [ + "organization", + "name", + "score", + "rescore", + "start", + "end", + "matching_type", + "substring", + "chosen", + ], +) +MatchedOrganization.__new__.__defaults__ = (None, None, 0, 0, 0, 0, None, None, False) + +def match_by_query(text, query, countries): + """Match affiliation text using specific ES query.""" + scored_candidates = [] + chosen_candidate = None + chosen_true = None + results = query.execute() + candidates = results.hits.hits + if candidates: + candidates = [c for c in candidates if c["_source"]["status"] == "active"] + scored_candidates = [score(text, c) for c in candidates] + scored_candidates = [s for s in scored_candidates if s.score >= MIN_SCORE_FOR_RETURN] + if scored_candidates: + if (len(scored_candidates) == 1) and (scored_candidates[0].score >= MIN_SCORE): + chosen_candidate = scored_candidates[0] + if len(scored_candidates) > 1: + rescored_candidates = rescore(text, scored_candidates) + rescored_candidates = [ + r for r in rescored_candidates if r.score >= MIN_SCORE + ] + if rescored_candidates: + chosen_candidate = choose_candidate(rescored_candidates) + if chosen_candidate: + if (countries + and to_region(chosen_candidate[0]["_source"]["locations"][0]["geonames_details"]["country_code"]) + not in countries): + pass + else: + chosen_true = MatchedOrganization( + organization=chosen_candidate.organization, + name=chosen_candidate.name, + rescore=chosen_candidate.rescore, + score=round(chosen_candidate.score / 100, 2), + start=chosen_candidate.start, + end=chosen_candidate.end, + matching_type=MATCHING_TYPE_SINGLE, + substring=chosen_candidate.substring, + chosen=True, + ) + scored_candidates = [ + s._replace(score=round(s.score / 100, 2)) for s in scored_candidates + ] + + return chosen_true, scored_candidates + + +def get_output(chosen, all_matched, active_only): + if active_only: + all_matched = [ + m for m in all_matched if m.organization["_source"]["status"] == "active" + ] + all_matched = sorted(all_matched, key=lambda x: x.score, reverse=True)[:100] + if chosen: + all_matched = [ + a + for a in all_matched + if a.organization["_id"] != chosen.organization["_id"] + ] + all_matched.insert(0, chosen) + return all_matched + + +def get_candidates(aff, countries, version): + qb = ESQueryBuilder(version) + qb.add_affiliation_query(aff, 200) + return match_by_query(aff, qb.get_query(), countries) + + +def match_affiliation(affiliation, active_only, version): + countries = get_countries(affiliation) + chosen, all_matched = get_candidates(affiliation, countries, version) + return get_output(chosen, all_matched, active_only) + + +def match_organizations(params, version): + if "affiliation" in params: + active_only = True + if "all_status" in params: + if params["all_status"] == "" or params["all_status"].lower() == "true": + active_only = False + matched = match_affiliation(params.get("affiliation"), active_only, version) + if version == "v2": + return None, MatchingResultV2(matched) + return None, MatchingResultV1(matched) + return Errors('"affiliation" parameter missing'), None \ No newline at end of file diff --git a/rorapi/common/views.py b/rorapi/common/views.py index 554e22b4..73bb95ec 100644 --- a/rorapi/common/views.py +++ b/rorapi/common/views.py @@ -16,6 +16,7 @@ from rorapi.common.csv_utils import validate_csv from rorapi.settings import REST_FRAMEWORK, ES7, ES_VARS from rorapi.common.matching import match_organizations +from rorapi.common.matching_single_search import match_organizations as single_search_match_organizations from rorapi.common.models import ( Errors ) @@ -155,7 +156,13 @@ def list(self, request, version=REST_FRAMEWORK["DEFAULT_VERSION"]): if "format" in params: del params["format"] if "affiliation" in params: - errors, organizations = match_organizations(params, version) + if version == "v2": + if "single_search" in params: + errors, organizations = single_search_match_organizations(params, version) + else: + errors, organizations = match_organizations(params, version) + else: + errors, organizations = match_organizations(params, version) else: errors, organizations = search_organizations(params, version) if errors is not None: diff --git a/rorapi/management/commands/indexrordump.py b/rorapi/management/commands/indexrordump.py index c116c766..1cea9367 100644 --- a/rorapi/management/commands/indexrordump.py +++ b/rorapi/management/commands/indexrordump.py @@ -44,6 +44,17 @@ def get_nested_ids_v2(org): for eid in ext_id['all']: yield eid +def get_affiliation_match_doc(org): + doc = { + 'id': org['id'], + 'country': org["locations"][0]["geonames_details"]["country_code"], + 'status': org['status'], + 'primary': [n["value"] for n in org["names"] if "ror_display" in n["types"]][0], + 'names': [{"name": n} for n in get_nested_names_v2(org)], + 'relationships': [{"type": r['type'], "id": r['id']} for r in org['relationships']] + } + return doc + def index_dump(self, filename, index, dataset): backup_index = '{}-tmp'.format(index) ES7.reindex(body={ @@ -72,6 +83,8 @@ def index_dump(self, filename, index, dataset): org['names_ids'] += [{ 'id': n } for n in get_nested_ids_v2(org)] + # experimental affiliations_match nested doc + org['affiliation_match'] = get_affiliation_match_doc(org) else: org['names_ids'] = [{ 'name': n diff --git a/rorapi/tests/tests_functional/data/dataset_affiliations.json b/rorapi/tests/tests_functional/data/dataset_affiliations.json deleted file mode 100644 index 8578a4e9..00000000 --- a/rorapi/tests/tests_functional/data/dataset_affiliations.json +++ /dev/null @@ -1,5712 +0,0 @@ -[ - { - "affiliation": "Department of Pathology, Samsung Medical Center, Sungkyunkwan University School of Medicine, Seoul, Korea.", - "ror_ids": [ - "https://ror.org/05a15z872", - "https://ror.org/04q78tk20" - ] - }, - { - "affiliation": "Department of Clinical Research, Venous Research Foundation, Chicago, Illinois, USA", - "ror_ids": [] - }, - { - "affiliation": "\n Bill Lyons Informatics Centre, UCL Cancer Institute, University College London, 72 Huntley Street, London WC1E 6DD, UK", - "ror_ids": [ - "https://ror.org/02jx3x895" - ] - }, - { - "affiliation": "Department of Ruminant, Agriculture Research Organization, Volcani Center, Bet Dagan, Israel; and", - "ror_ids": [ - "https://ror.org/05hbrxp80" - ] - }, - { - "affiliation": "Leibniz Institute of Polymer Research e.V. Dresden, Hohe Str. 6, D-01069 Dresden, Germany", - "ror_ids": [ - "https://ror.org/01tspta37" - ] - }, - { - "affiliation": "Department of Applied Physics, CINVESTAV-Unidad M\u00e9rida, Antigua Carretera a Progreso Km. 6, 97310 M\u00e9rida, YUC, Mexico", - "ror_ids": [] - }, - { - "affiliation": "Department of Architecture, University of California, Berkeley, California.", - "ror_ids": [ - "https://ror.org/01an7q238" - ] - }, - { - "affiliation": "Department of Neurology, Hallym University Sacred Heart Hospital, Anyang, Korea.", - "ror_ids": [ - "https://ror.org/04ngysf93" - ] - }, - { - "affiliation": "School of Women's and Infants\u2019 Health; The University of Western Australia; Perth WA Australia", - "ror_ids": [ - "https://ror.org/047272k79" - ] - }, - { - "affiliation": "Johns Hopkins University, Baltimore, Maryland, USA", - "ror_ids": [ - "https://ror.org/00za53h95" - ] - }, - { - "affiliation": "Agency for Health Care Policy and Research", - "ror_ids": [] - }, - { - "affiliation": "Lehigh Valley Hospital, Allentown, PA;", - "ror_ids": [ - "https://ror.org/03h4fx826" - ] - }, - { - "affiliation": "Dana-Farber Cancer Institute/Boston Children's Hospital, Boston, MA", - "ror_ids": [ - "https://ror.org/02jzgtq86", - "https://ror.org/00dvg7y05" - ] - }, - { - "affiliation": "Hospital Kassel, Kassel, Germany", - "ror_ids": [] - }, - { - "affiliation": "Wake Forest University Cancer Center; Medical Center Boulevard; Winston-Salem NC USA", - "ror_ids": [ - "https://ror.org/0207ad724" - ] - }, - { - "affiliation": "Science and Technology Policy Institute, Sejong National Research Complex, 370 Sicheong-daero, Sejong-si 30147, Republic of Korea", - "ror_ids": [ - "https://ror.org/00s147322" - ] - }, - { - "affiliation": "University of Newcastle, Callaghan, New South Wales, Australia", - "ror_ids": [ - "https://ror.org/00eae9z71" - ] - }, - { - "affiliation": "Friedrich Schiller University Jena", - "ror_ids": [ - "https://ror.org/05qpz1x62" - ] - }, - { - "affiliation": "Department of Radiology; Beth Israel Deaconess Medical Center; Boston Massachusetts USA", - "ror_ids": [ - "https://ror.org/04drvxt59" - ] - }, - { - "affiliation": "Department of Mechanical & Materials Engineering", - "ror_ids": [] - }, - { - "affiliation": "Department of Ophthalmology and Office of Academic Computing, The University of Texas Medical Branch, Galveston, Texas, USA", - "ror_ids": [ - "https://ror.org/016tfm930" - ] - }, - { - "affiliation": "Department of Mathematics, University of the Thai Chamber of Commerce, Bangkok 10400, Thailand", - "ror_ids": [ - "https://ror.org/03m7a5q02" - ] - }, - { - "affiliation": "Michigan State University, East Lansing, USA", - "ror_ids": [ - "https://ror.org/05hs6h993" - ] - }, - { - "affiliation": "Candidate at Neuroscience Research Australia, Australia", - "ror_ids": [ - "https://ror.org/01g7s6g79" - ] - }, - { - "affiliation": "Herbarium Haussknecht, Friedrich-Schiller-Univ.; F\u00fcrstengraben 1 DE-07737 Jena Germany", - "ror_ids": [ - "https://ror.org/05qpz1x62" - ] - }, - { - "affiliation": " Department of Economics, University of North Dakota, Grand Forks, ND, USA", - "ror_ids": [ - "https://ror.org/04a5szx83" - ] - }, - { - "affiliation": "Donghua University", - "ror_ids": [ - "https://ror.org/035psfh38" - ] - }, - { - "affiliation": "Department of Oral Physiology, School of Dentistry, Kyungpook National University, 188-1 Samduck-2, Chung-gu, Daegu 700-412, Republic of Korea", - "ror_ids": [ - "https://ror.org/040c17130" - ] - }, - { - "affiliation": "Department of Mathematics and Institute of Mathematics, Seoul National University, Seoul 151-742, South Korea", - "ror_ids": [ - "https://ror.org/04h9pn542" - ] - }, - { - "affiliation": "Department of Civil and Environmental Engineering; U.S. Air Force Academy; USAF Academy Colorado USA", - "ror_ids": [ - "https://ror.org/0055d0g64" - ] - }, - { - "affiliation": " c Medical Dow Chemical Company, U.S.A., Michigan Division; Midland, MI 48640", - "ror_ids": [ - "https://ror.org/032hx4q18" - ] - }, - { - "affiliation": "Laboratory Center of Life Sciences, College of Life Sciences; Nanjing Agricultural University; Nanjing 210095 China", - "ror_ids": [ - "https://ror.org/05td3s095" - ] - }, - { - "affiliation": "Department of Pediatrics, Division of Neonatology; Children's Mercy; Kansas City MO USA", - "ror_ids": [ - "https://ror.org/04zfmcq84" - ] - }, - { - "affiliation": "Department of Neurology & Neurological Sciences, Stanford University, Stanford, CA, USA", - "ror_ids": [ - "https://ror.org/00f54p054" - ] - }, - { - "affiliation": "Winthrop University Hospital, Mineola, NY", - "ror_ids": [ - "https://ror.org/04mpzkf73" - ] - }, - { - "affiliation": " Kyoto University, Department of Nuclear Engineering Yoshida-Honmachi, Sakyo-ku, Kyoto 606, Japan", - "ror_ids": [ - "https://ror.org/02kpeqv85" - ] - }, - { - "affiliation": "Azbil Corporation", - "ror_ids": [] - }, - { - "affiliation": "Department of Nuclear Medicine, West China Hospital, Chengdu, China;", - "ror_ids": [] - }, - { - "affiliation": "NOVA School of Business and Economics", - "ror_ids": [] - }, - { - "affiliation": "Boehringer Ingelheim, Reims, France", - "ror_ids": [ - "https://ror.org/03gdpyq31" - ] - }, - { - "affiliation": "University of Antwerp; Department of Sociology; Sint-Jacobstraat 2B 2000 Antwerpen Belgium", - "ror_ids": [ - "https://ror.org/008x57b05" - ] - }, - { - "affiliation": "Department of Pharmaceutical Sciences, University of Maryland School of Pharmacy, Baltimore, Maryland 21201; and", - "ror_ids": [ - "https://ror.org/04rq5mt64" - ] - }, - { - "affiliation": "Museu Paraense Em\u00edlio Goeldi, Brasil", - "ror_ids": [ - "https://ror.org/010gvqg61" - ] - }, - { - "affiliation": "University of CopenhagenDenmark", - "ror_ids": [ - "https://ror.org/035b05819" - ] - }, - { - "affiliation": "University of Newcastle", - "ror_ids": [ - "https://ror.org/01kj2bm70" - ] - }, - { - "affiliation": "Department of Pathology; Turku University Hospital, University of Turku; Turku Finland", - "ror_ids": [ - "https://ror.org/05dbzj528", - "https://ror.org/05vghhr25" - ] - }, - { - "affiliation": "New York University; New York NY USA", - "ror_ids": [ - "https://ror.org/0190ak572" - ] - }, - { - "affiliation": "Institute of Biological Chemistry, Academia Sinica, Taipei, Taiwan; Institute of Molecular Medicine, College of Medicine, National Taiwan University, Taipei, Taiwan", - "ror_ids": [ - "https://ror.org/05bxb3784", - "https://ror.org/05bqach95" - ] - }, - { - "affiliation": "Department of Physiology, Medical College of Wisconsin, Milwaukee 53226.", - "ror_ids": [ - "https://ror.org/00qqv6244" - ] - }, - { - "affiliation": "Department of Medical Entomology, National Institute of Infectious Disease", - "ror_ids": [ - "https://ror.org/001ggbx22" - ] - }, - { - "affiliation": "Faculty of Geo-Information Science and Earth Observation (ITC), University of Twente, Enschede, The Netherlands", - "ror_ids": [ - "https://ror.org/038v7xb98", - "https://ror.org/006hf6230" - ] - }, - { - "affiliation": "University of Surrey, Guildford, United Kingdom", - "ror_ids": [ - "https://ror.org/00ks66431" - ] - }, - { - "affiliation": "Counseling Center, University of Washington, USA", - "ror_ids": [ - "https://ror.org/00ykgmf04", - "https://ror.org/00cvxb145" - ] - }, - { - "affiliation": "Department of Electrical Engineering, Princeton University, Princeton, NJ", - "ror_ids": [ - "https://ror.org/00hx57361" - ] - }, - { - "affiliation": "Department of English, University of British Columbia, Vancouver, Canada", - "ror_ids": [ - "https://ror.org/03rmrcq20" - ] - }, - { - "affiliation": "Department of Sport Science and Kinesiology, University of Salzburg, Salzburg, Austria", - "ror_ids": [ - "https://ror.org/05gs8cd61" - ] - }, - { - "affiliation": "Zhejiang San Xing Mechanical and Electrical Co., Limited", - "ror_ids": [] - }, - { - "affiliation": "Mass\rSpectrometry Laboratory, Brazilian Biosciences National Laboratory- CNPEM, R. Giuseppe M\u00e1ximo Scolfaro 10000, 13083-970 Campinas, Brazil", - "ror_ids": [ - "https://ror.org/04kjcjc51" - ] - }, - { - "affiliation": "Department of Pathology and Laboratory Medicine; Weill Cornell Medicine; New York NY", - "ror_ids": [ - "https://ror.org/02r109517" - ] - }, - { - "affiliation": "Division of Dental Propaedeutics, Aesthetic, Department of Prosthetic Dentistry and Dental Materials, \u201cIuliu Hatieganu\u201d University of Medicine and Pharmacy, Cluj-Napoca, Romania.", - "ror_ids": [ - "https://ror.org/051h0cw83" - ] - }, - { - "affiliation": "Department of Trauma and Orthopaedics, Farwanya Hospital, Kuwait", - "ror_ids": [ - "https://ror.org/01akfrh45" - ] - }, - { - "affiliation": "Universidade Federal do Cear\u00e1, Brasil", - "ror_ids": [ - "https://ror.org/03srtnf24" - ] - }, - { - "affiliation": "Department of Clinical Chemistry, Karolinska Hospital, S-104 01 Stockholm, Sweden", - "ror_ids": [ - "https://ror.org/00m8d6786" - ] - }, - { - "affiliation": "Department of Children and Family Services, State of Illinois, Champaign Regional Office, Champaign, Illinois.", - "ror_ids": [ - "https://ror.org/037fek297" - ] - }, - { - "affiliation": "Faculty of Medicine; University of British Columbia; Vancouver Canada", - "ror_ids": [ - "https://ror.org/03rmrcq20" - ] - }, - { - "affiliation": "Bangor University", - "ror_ids": [ - "https://ror.org/006jb1a24" - ] - }, - { - "affiliation": "University of Szeged", - "ror_ids": [ - "https://ror.org/01pnej532" - ] - }, - { - "affiliation": " Family Medicine and Community Health, University of Pennsylvania School of Medicine, Philadelphia, Pennsylvania, USA", - "ror_ids": [ - "https://ror.org/00b30xv10" - ] - }, - { - "affiliation": " National Chiayi University", - "ror_ids": [ - "https://ror.org/04gknbs13" - ] - }, - { - "affiliation": "Center for Marine Science; Aquaculture Program; University of North Carolina Wilmington; 601 South College Road Wilmington North Carolina 28403-5927 USA", - "ror_ids": [ - "https://ror.org/02t0qr014" - ] - }, - { - "affiliation": "Institute of Aeronautics and Astronautics, National Cheng Kung University, Taiwan, ROC", - "ror_ids": [ - "https://ror.org/01b8kcc49" - ] - }, - { - "affiliation": "State Key Laboratory of Software Development Environment, Beihang University, Beijing 100191, China", - "ror_ids": [ - "https://ror.org/00wk2mp56" - ] - }, - { - "affiliation": "Department of Radiology, National Institute of Oncology, Rabat, Morocco", - "ror_ids": [] - }, - { - "affiliation": "Department of Pediatric Neurology, Harran University School of Medicine, Sanl\u0131urfa, Turkey", - "ror_ids": [ - "https://ror.org/057qfs197" - ] - }, - { - "affiliation": "Bristol, England", - "ror_ids": [] - }, - { - "affiliation": "From the Royal Free Hospital and University College London (J.V.B.), Department of Neurology, Royal Free Hospital, London, UK; and the Center for Stroke Research (P.B.G.), Department of Neurology and Rehabilitation, University of Illinois College of Medicine at Chicago, Chicago, Ill.", - "ror_ids": [ - "https://ror.org/01ge67z96", - "https://ror.org/02jx3x895", - "https://ror.org/047426m28" - ] - }, - { - "affiliation": "Instituto de Bot\u00e2nica, Brasil", - "ror_ids": [ - "https://ror.org/01fptm710" - ] - }, - { - "affiliation": "First Department of Obstetrics\u2013Gynecology, Athens University Medical School University of Athens", - "ror_ids": [ - "https://ror.org/04gnjpq42" - ] - }, - { - "affiliation": "Department of City and Regional Planning, Cardiff University, Glamorgan Building, King Edward VII Avenue, Cardiff, Wales", - "ror_ids": [ - "https://ror.org/03kk7td41" - ] - }, - { - "affiliation": "University of Aberdeen; United Kingdom", - "ror_ids": [ - "https://ror.org/016476m91" - ] - }, - { - "affiliation": "Faculty of Public Health and Universitas Airlangga, Indonesia", - "ror_ids": [ - "https://ror.org/04ctejd88" - ] - }, - { - "affiliation": "Department\rof Chemistry, University of North Carolina at Chapel Hill, Chapel Hill, North Carolina 27599-3290, United States", - "ror_ids": [ - "https://ror.org/0130frc33" - ] - }, - { - "affiliation": "Institut f\u00fcr Inorganische und Analytische Chemie; Johannes Gutenberg-Universit\u00e4t; Mainz Germany", - "ror_ids": [ - "https://ror.org/023b0x485" - ] - }, - { - "affiliation": "University of San Diego, San Diego, CA, USA", - "ror_ids": [ - "https://ror.org/03jbbze48" - ] - }, - { - "affiliation": "From the Laboratoire de Biochimie Applique\u0301e, Faculte\u0301 des Sciences Pharmaceutiques et Biologiques, Cha\u0302tenay-Malabry (B.V., I.M., H.T., N.M.), and the Laboratoires de Biochimie (B.V., I.M., N.M.), Biologie Mole\u0301culaire (X.J.), and the Centre de Medecine Pre\u0301ventive Cardiovasculaire and INSERM U28 (J.L.M., A.S.), Ho\u0302pital Broussais, Paris, France.", - "ror_ids": [ - "https://ror.org/0315s4978", - "https://ror.org/05h8pvh61" - ] - }, - { - "affiliation": "School of Biomedical Sciences, University of Ulster, Coleraine, N Ireland, BT52 1SA, UK", - "ror_ids": [ - "https://ror.org/01yp9g959" - ] - }, - { - "affiliation": "Department of Business Administration of Food and Agricultural Enterprises, University of Patras, Patras, Greece", - "ror_ids": [ - "https://ror.org/017wvtq80" - ] - }, - { - "affiliation": "Kaiser-Wilhelm-Institut f\u00fcr Eisenforschung zu D\u00fcsseldorf; D\u00fcsseldorf", - "ror_ids": [] - }, - { - "affiliation": "Laborat\u00f3rio de Mal\u00e1ria; Instituto Ren\u00e9 Rachou; Funda\u00e7\u00e3o Oswaldo Cruz; Belo Horizonte MG Brazil", - "ror_ids": [ - "https://ror.org/04jhswv08" - ] - }, - { - "affiliation": "Department of Exercise and Sport Sciences; Jeju National University; Jeju South Korea", - "ror_ids": [ - "https://ror.org/05hnb4n85" - ] - }, - { - "affiliation": "University of the West of England, Bristol, UK", - "ror_ids": [ - "https://ror.org/02nwg5t34" - ] - }, - { - "affiliation": "U. Cattolica del Sacro Cuore, Rome", - "ror_ids": [ - "https://ror.org/03h7r5v07" - ] - }, - { - "affiliation": "Institut Lavoisier", - "ror_ids": [] - }, - { - "affiliation": "Department of Information Engineering, University of Padua, Padua, Italy.", - "ror_ids": [ - "https://ror.org/00240q980" - ] - }, - { - "affiliation": " Student Research Committee, Esfarayen Faculty of Medical Sciences, Esfarayen, Iran; ", - "ror_ids": [] - }, - { - "affiliation": "Third Department of Internal Medicine; University Medical School of Debrecen", - "ror_ids": [] - }, - { - "affiliation": "Laboratoire d'Ing\u00e9nierie de Surface, Centre de Recherche sur les Mat\u00e9riaux Avanc\u00e9s, D\u00e9partement de g\u00e9nie des mines, de la m\u00e9tallurgie et des mat\u00e9riaux; Universit\u00e9 Laval; 1065, avenue de la M\u00e9decine Qu\u00e9bec City Canada G1V 0A6", - "ror_ids": [ - "https://ror.org/04sjchr03" - ] - }, - { - "affiliation": "University of Nevada, Las Vegas, NV, USA", - "ror_ids": [ - "https://ror.org/01keh0577" - ] - }, - { - "affiliation": "Centre de Recherche en Sante de Nouna; Nouna; Burkina Faso", - "ror_ids": [ - "https://ror.org/059vhx348" - ] - }, - { - "affiliation": " Psychology Department, Indiana University\u2014Purdue University Columbus, Indiana, USA", - "ror_ids": [ - "https://ror.org/00e0c0q64" - ] - }, - { - "affiliation": " Professor Emerita, Keene State College, Keene, USA", - "ror_ids": [ - "https://ror.org/04c1gbz02" - ] - }, - { - "affiliation": "Department of Animal Sciences, The University of Adelaide, Waite Agricultural Research Institute; Glen Osmond South Australia 5064", - "ror_ids": [ - "https://ror.org/00892tw58" - ] - }, - { - "affiliation": "Biochemistry &\rMolecular Biology Program, Departments of Biology and\rChemistry, The College of Wooster, Wooster, Ohio 44691, United States", - "ror_ids": [ - "https://ror.org/029zqs055" - ] - }, - { - "affiliation": "Department of Biochemistry,University of Wisconsin-Madison, 433 Babcock Drive, Madison WI 3706,USA.", - "ror_ids": [ - "https://ror.org/01y2jtd41" - ] - }, - { - "affiliation": " Department of Pathology, Immunology and Laboratory Medicine, College of Medicine, University of Florida, PO Box 100275, Gainesville, Florida 32610, USA", - "ror_ids": [ - "https://ror.org/02y3ad647" - ] - }, - { - "affiliation": "Institute of General Physics, Vienna University of Technology, Vienna, Austria", - "ror_ids": [ - "https://ror.org/04d836q62" - ] - }, - { - "affiliation": " Worcester Polytechnic Institute, USA", - "ror_ids": [ - "https://ror.org/05ejpqr48" - ] - }, - { - "affiliation": "\n 37, Bedford Square", - "ror_ids": [] - }, - { - "affiliation": "International Institute for Strategic Studies", - "ror_ids": [ - "https://ror.org/03jzczt57" - ] - }, - { - "affiliation": " Department of Behavioural Sciences and Learning, Link\u00f6ping University, Link\u00f6ping, Sweden; ", - "ror_ids": [ - "https://ror.org/05ynxx418" - ] - }, - { - "affiliation": "Department of Physiology, Medical College of Georgia, Augusta, Georgia", - "ror_ids": [] - }, - { - "affiliation": "Maria Research Center, Seoul, Korea.", - "ror_ids": [] - }, - { - "affiliation": "Department of Ecosystem Biology; Faculty of Science; University of South Bohemia, Branisovska; 1760, 37005 Ceske Budejovice Czech Republic", - "ror_ids": [] - }, - { - "affiliation": "Division of General Pediatric and Adolescent Medicine, Department of Pediatric and Adolescent Medicine, Mayo Clinic, Rochester, Minnesota.", - "ror_ids": [ - "https://ror.org/03zzw1w08" - ] - }, - { - "affiliation": " Integrated Systems Engineering and Orthopaedics The Ohio State University Columbus, OH USA", - "ror_ids": [ - "https://ror.org/00rs6vg23" - ] - }, - { - "affiliation": "DIKW Management Group, USA", - "ror_ids": [] - }, - { - "affiliation": "Ger\u00eancia Regional de Sa\u00fade de Divin\u00f3polis, Brasil", - "ror_ids": [] - }, - { - "affiliation": "State Key Laboratory of Organometallic Chemistry", - "ror_ids": [] - }, - { - "affiliation": "Faculdade Guairac\u00e1, Brasil", - "ror_ids": [ - "https://ror.org/01s4arm57" - ] - }, - { - "affiliation": "School of Life Science; East China Normal University; Shanghai China", - "ror_ids": [ - "https://ror.org/02n96ep67" - ] - }, - { - "affiliation": "Rinku General Medical Center, Izumisano, Japan;", - "ror_ids": [] - }, - { - "affiliation": "Nippon Medical School Hospital, Tokyo, Japan;", - "ror_ids": [ - "https://ror.org/04y6ges66" - ] - }, - { - "affiliation": " a Institute of Europe, Russian Academy of Sciences", - "ror_ids": [ - "https://ror.org/05qrfxd25" - ] - }, - { - "affiliation": "Embrapa Instrumenta\u00e7\u00e3o, Brazil", - "ror_ids": [] - }, - { - "affiliation": "Department of Oriental Rehabilitation, Kangnam Korean Hospital, Kyung Hee University, Seoul, Korea.", - "ror_ids": [ - "https://ror.org/01zqcg218" - ] - }, - { - "affiliation": "School of Information Science and Engineering, Northeastern University, Shenyang 110819, China", - "ror_ids": [ - "https://ror.org/03awzbc87" - ] - }, - { - "affiliation": "Iowa State College", - "ror_ids": [] - }, - { - "affiliation": "National Agriculture and Food Research Organization; Hokkaido Agricultural Research Center; Sapporo 062-8555 Japan", - "ror_ids": [ - "https://ror.org/023v4bd62", - "https://ror.org/02bkd7d61" - ] - }, - { - "affiliation": "Division of Human Genetics, Department of Pediatrics; The Children's Hospital; Pennsylvania Philadelphia", - "ror_ids": [] - }, - { - "affiliation": "The Oaks, 24 Old Coach Road Belfast, N Ireland", - "ror_ids": [] - }, - { - "affiliation": " Key Laboratory of Biomedical Functional Materials, School of Science, China Pharmaceutical University, Nanjing, China", - "ror_ids": [ - "https://ror.org/01sfm2718" - ] - }, - { - "affiliation": "formerly KCH GROUP GmbH; Berggarten 1 Siershahn Germany 56427", - "ror_ids": [] - }, - { - "affiliation": "Department of Applied Physics, Nagoya University, Nagoya 464-8603", - "ror_ids": [ - "https://ror.org/04chrp450" - ] - }, - { - "affiliation": "Department of Pulmonary Medicine, Institute of Clinical Medicine, University of Tsukuba, Tsukuba, Ibaraki, 305-8575; and", - "ror_ids": [ - "https://ror.org/02956yf07" - ] - }, - { - "affiliation": "Department of Internal Medicine, University of Texas Southwestern Medical Center, Dallas", - "ror_ids": [ - "https://ror.org/05byvp690" - ] - }, - { - "affiliation": "Air Force Institute of Technology", - "ror_ids": [ - "https://ror.org/03f9f1d95" - ] - }, - { - "affiliation": "Assistance Publique-H\u00f4pitaux de Marseille, Centre Pluridisciplinaire de Diagnostic Pr\u00e9natal, H\u00f4pital Nord, Chemin des Bourrely, 13015 Marseille, France", - "ror_ids": [ - "https://ror.org/002cp4060", - "https://ror.org/029a4pp87" - ] - }, - { - "affiliation": "Department of Optics and Optical Engineering, University of Science and Technology of China, Hefei, Anhui Province 230026, China", - "ror_ids": [ - "https://ror.org/04c4dkn09" - ] - }, - { - "affiliation": "Nagaoka University of Techonology", - "ror_ids": [ - "https://ror.org/00ys1hz88" - ] - }, - { - "affiliation": "Department of Clinical Biochemistry, Immunology and Genetics; Statens Serum Institut; Artillerivej 5; 2300; Copenhagen S; Denmark", - "ror_ids": [ - "https://ror.org/0417ye583" - ] - }, - { - "affiliation": "Center of Research in Optoelectronics and Communications and Control Systems (BU-CROCCS); Bangkok University; Pathumthani 12100 Thailand", - "ror_ids": [ - "https://ror.org/002qeva03" - ] - }, - { - "affiliation": "University of Southern Queensland, Australia", - "ror_ids": [ - "https://ror.org/04sjbnx57" - ] - }, - { - "affiliation": "Muroran Institute of Technology", - "ror_ids": [ - "https://ror.org/04rymkk69" - ] - }, - { - "affiliation": "School of Health Sciences, Swinburne University of Technology, Melbourne, Australia.", - "ror_ids": [ - "https://ror.org/031rekg67" - ] - }, - { - "affiliation": "Clinical Research Unit; Academic Medical Center; Amsterdam The Netherlands", - "ror_ids": [ - "https://ror.org/03t4gr691" - ] - }, - { - "affiliation": "Key Laboratory of Pollinating Insect Biology, Ministry\rof Agriculture/Institute of Apicultural Research, Chinese Academy of Agricultural Science, Beijing, China 100093", - "ror_ids": [ - "https://ror.org/0313jb750" - ] - }, - { - "affiliation": "Nagasaki University, 1-14 Bunkyo-machi, Nagasaki 852-8521, Japan", - "ror_ids": [ - "https://ror.org/058h74p94" - ] - }, - { - "affiliation": "Fylde Primary Care Trust, Blackpool FY3 9ES", - "ror_ids": [] - }, - { - "affiliation": "Molecular Pharmacology Laboratory; Faculty of Life Science and Technology; Kunming University of Science and Technology; Kunming China", - "ror_ids": [ - "https://ror.org/035rhx828" - ] - }, - { - "affiliation": "The New York Medical College; Metropolitan Hospital Research Unit; Welfare Island New York 17 N. Y.", - "ror_ids": [ - "https://ror.org/03dkvy735" - ] - }, - { - "affiliation": "Department of Fermented Food Science, Seoul University of Venture & Information, Seoul, Republic of Korea", - "ror_ids": [] - }, - { - "affiliation": "Department of Experimental Orofacial Medicine; Philipps University Marburg; Marburg Germany", - "ror_ids": [ - "https://ror.org/01rdrb571" - ] - }, - { - "affiliation": "Key Laboratory of Bio-inspired Smart Interfacial Science and Technology of Ministry of Education; School of Chemistry; Beihang University; Beijing 100191 China", - "ror_ids": [ - "https://ror.org/00wk2mp56" - ] - }, - { - "affiliation": " Department of Oncohematology, University of Perugia, Santa Maria Hospital, Terni, Italy; ", - "ror_ids": [ - "https://ror.org/00x27da85" - ] - }, - { - "affiliation": "Systems and Synthetic Biology", - "ror_ids": [] - }, - { - "affiliation": "Department of Medicine, VA Greater Los Angeles Healthcare System,, West Los Angeles,, CA", - "ror_ids": [ - "https://ror.org/05xcarb80" - ] - }, - { - "affiliation": "Laboratory for Mechanics of Materials and Nanostructures, EMPA-Swiss Federal Research Institute for Material Science and Technology, Thun, Switzerland.", - "ror_ids": [ - "https://ror.org/02x681a42" - ] - }, - { - "affiliation": "Centre d\u2019Esclerosi M\u00faltiple de Catalunya, Hospital Universitari Vall d\u2019Hebron, Spain.", - "ror_ids": [ - "https://ror.org/03ba28x55" - ] - }, - { - "affiliation": "Department of Anesthesiology, Nanfang Hospital, Southern Medical University, Guangzhou, China", - "ror_ids": [ - "https://ror.org/01eq10738", - "https://ror.org/01vjw4z39" - ] - }, - { - "affiliation": "National Referral Center for Rare Systemic Autoimmune Diseases, H\u00f4pital Cochin, AP-HP, and Universit\u00e9 Paris Descartes; Paris France", - "ror_ids": [ - "https://ror.org/00ph8tk69" - ] - }, - { - "affiliation": "Klinik f\u00fcr Nephrologie, Dialyse und Transplantation", - "ror_ids": [] - }, - { - "affiliation": "Universidad Aut\u00f3noma de Santo Domingo, Departamento de F\u00edsica, Facultad de Ciencias, Ciudad Universitaria, Santo Domingo, 11114, Rep\u00fablica Dominicana", - "ror_ids": [ - "https://ror.org/05478zz46" - ] - }, - { - "affiliation": "Virology Group, International Centre for Genetic Engineering and Biotechnology (ICGEB); New Delhi India", - "ror_ids": [ - "https://ror.org/03j4rrt43" - ] - }, - { - "affiliation": "\n Sutton, Surrey", - "ror_ids": [] - }, - { - "affiliation": "College of Pharmacy, University of Michigan", - "ror_ids": [ - "https://ror.org/00jmfr291" - ] - }, - { - "affiliation": " Bryant University", - "ror_ids": [ - "https://ror.org/01gk44f56" - ] - }, - { - "affiliation": "University of Hull", - "ror_ids": [ - "https://ror.org/04nkhwh30" - ] - }, - { - "affiliation": "Infertility Unit, Fondazione IRCCS Ca\u2019 Granda, Ospedale Maggiore Policlinico, University of Milan, Milan, Italy", - "ror_ids": [ - "https://ror.org/016zn0y21", - "https://ror.org/00wjc7c48" - ] - }, - { - "affiliation": "Department of Chemical and Biomolecular Engineering and \u2021Department of Materials Science and Engineering, University of California, Los Angeles, California 90095, United States", - "ror_ids": [ - "https://ror.org/046rm7j60" - ] - }, - { - "affiliation": "Southern Power Supply Company under Shanghai Municipal Electric Power", - "ror_ids": [] - }, - { - "affiliation": " b Biology Centre ASCR, Institute of Hydrobiology , \u010cesk\u00e9 Bud\u011bjovice , Czech Republic", - "ror_ids": [ - "https://ror.org/0436nxt45" - ] - }, - { - "affiliation": "Department of Mechanical Engineering; Indian Institute of Technology Madras; Chennai 600036 India", - "ror_ids": [ - "https://ror.org/03v0r5n49" - ] - }, - { - "affiliation": "State University of RS and University of Minho, Alameda da Universidade, Guimar\u00e3es, Portugal", - "ror_ids": [ - "https://ror.org/037wpkx04" - ] - }, - { - "affiliation": " Professor of Surgery, Department of General Surgery, Erasmus Medical Centre, Rotterdam, The Netherlands", - "ror_ids": [] - }, - { - "affiliation": "Institute of Higher Education, University of Florida, Gainesville, Florida; Santa Fe Community College, Gainesville, Floridam and Deytona Beach Community College, Daytona Beach, Florida.", - "ror_ids": [ - "https://ror.org/02y3ad647", - "https://ror.org/02axsa366", - "https://ror.org/03jbk2g75" - ] - }, - { - "affiliation": "Australian Centre for Asian Business, University of South Australia, Australia", - "ror_ids": [ - "https://ror.org/01p93h210" - ] - }, - { - "affiliation": "Document analyst, Metropolitan Police Department, Washington, D.C., US.", - "ror_ids": [] - }, - { - "affiliation": "China Electric Power Research Institute", - "ror_ids": [] - }, - { - "affiliation": " b Virginia Treatment Center for Children , 515 North 10th Street, PO Box 980489, Richmond, VA, 23298-0489, USA", - "ror_ids": [] - }, - { - "affiliation": "Department of Cell Biology, Janssen Pharmaceutica, Research Laboratories, 2340 Beerse, Belgium", - "ror_ids": [ - "https://ror.org/04yzcpd71" - ] - }, - { - "affiliation": " a Programs in Clinical and School Psychology, Curry School of Education , University of Virginia , 405 Emmet Street, Charlottesville, VA, 22903-2495, USA", - "ror_ids": [ - "https://ror.org/0153tk833" - ] - }, - { - "affiliation": "Department of Internal Medicine, Catholic University College of Medicine, Seoul, Korea.", - "ror_ids": [] - }, - { - "affiliation": "SINTEF Energy Research, Energy Systems; Trondheim Norway", - "ror_ids": [] - }, - { - "affiliation": " M\u00fcnchen", - "ror_ids": [] - }, - { - "affiliation": "Department of Orthopedics, Rady Children\u2019s Hospital San Diego, 3020 Children\u2019s Way, MC 5054, 92123, San Diego, CA USA", - "ror_ids": [ - "https://ror.org/00414dg76" - ] - }, - { - "affiliation": "Deutsches Herzzentrum M\u00fcnchen, Technische Universit\u00e4t M\u00fcnchen, Germany", - "ror_ids": [ - "https://ror.org/04hbwba26", - "https://ror.org/02kkvpp62" - ] - }, - { - "affiliation": "Japan Atomic Energy Research Institute", - "ror_ids": [] - }, - { - "affiliation": "National University of Misiones, Argentina", - "ror_ids": [ - "https://ror.org/03kr8x191" - ] - }, - { - "affiliation": "School of Psychological Sciences; Monash University; Clayton Australia", - "ror_ids": [ - "https://ror.org/02bfwt286" - ] - }, - { - "affiliation": "Texas A&M University, USA", - "ror_ids": [ - "https://ror.org/01f5ytq51" - ] - }, - { - "affiliation": "North-Eastern Federal University, Yakutsk, Russia", - "ror_ids": [ - "https://ror.org/02p6aa271" - ] - }, - { - "affiliation": "Department of Pediatrics, University of California, San Diego, California", - "ror_ids": [ - "https://ror.org/0168r3w48" - ] - }, - { - "affiliation": "UFAM", - "ror_ids": [ - "https://ror.org/02263ky35" - ] - }, - { - "affiliation": "Department of Astronomy; Cornell University; Ithaca New York USA", - "ror_ids": [ - "https://ror.org/05bnh6r87" - ] - }, - { - "affiliation": "Oita University", - "ror_ids": [ - "https://ror.org/01nyv7k26" - ] - }, - { - "affiliation": "Robert D. and Patricia E. Kern Center for the Science of Health Care Delivery (X.Y., P.A.N., N.D.S.), Mayo Clinic, Rochester, MN.", - "ror_ids": [ - "https://ror.org/03zzw1w08" - ] - }, - { - "affiliation": "FEB Universitas Paramadina, Jl. Gatot Subroto, Kav. 97 Mampang, 12790, Jakarta, Indonesia", - "ror_ids": [ - "https://ror.org/04g8bba17" - ] - }, - { - "affiliation": "Universidade Estadual Paulista", - "ror_ids": [ - "https://ror.org/00987cb86" - ] - }, - { - "affiliation": "Department of Chemistry, Durham University, South Road, DH1 3LE Durham, United Kingdom", - "ror_ids": [ - "https://ror.org/01v29qb04" - ] - }, - { - "affiliation": "Neuroscience Program, Wellesley College, Wellesley,\rMassachusetts, ", - "ror_ids": [ - "https://ror.org/01srpnj69" - ] - }, - { - "affiliation": "UFLA", - "ror_ids": [ - "https://ror.org/0122bmm03" - ] - }, - { - "affiliation": " Centre for Culture and Technology, Research and Graduate Studies, Faculty of Humanities, Curtin University, GPO Box U1987, Perth, WA 6845, AustraliaE-mail: ", - "ror_ids": [ - "https://ror.org/02n415q13" - ] - }, - { - "affiliation": "Department of Biostatistics, School of Public Health (D.E.S.), University of Michigan, Ann Arbor.", - "ror_ids": [ - "https://ror.org/00jmfr291" - ] - }, - { - "affiliation": "Department of Geography, Queen Mary, University of London, Mile End Road, London E1 4NS, UK", - "ror_ids": [ - "https://ror.org/04cw6st05" - ] - }, - { - "affiliation": "WIEGO, Durban, South Africa", - "ror_ids": [] - }, - { - "affiliation": "Division of Academic Excellence and Development; Western Technical College; La Crosse WI USA", - "ror_ids": [ - "https://ror.org/016tysf12" - ] - }, - { - "affiliation": "University of Adelaide; Adelaide South Australia", - "ror_ids": [ - "https://ror.org/00892tw58" - ] - }, - { - "affiliation": "Clinic for Cattle, University of Veterinary Medicine Hanover, Bischofsholer Damm 15, 30173, Germany.", - "ror_ids": [ - "https://ror.org/015qjqf64" - ] - }, - { - "affiliation": "The University of New South Wales, Australia", - "ror_ids": [ - "https://ror.org/03r8z3t63" - ] - }, - { - "affiliation": "Northeast Petroleum University", - "ror_ids": [ - "https://ror.org/03net5943" - ] - }, - { - "affiliation": "GeoThinkTank, LLC (United States)", - "ror_ids": [ - "https://ror.org/05fep0t76" - ] - }, - { - "affiliation": "Xinxiang University", - "ror_ids": [ - "https://ror.org/05qvskn85" - ] - }, - { - "affiliation": "From the Department of Ophthalmology, Institute of Clinical Medicine, University of Tsukuba, Ibaraki, Japan; and", - "ror_ids": [ - "https://ror.org/02956yf07" - ] - }, - { - "affiliation": "Angereds N\u00e4rsjukhus; Angered Sweden", - "ror_ids": [ - "https://ror.org/05wvcb507" - ] - }, - { - "affiliation": "Instituto de Desarrollo Tecnol\u00f3gico para la Industria Qu\u00edmica (INTEC) CONICET\u2014UNL, Santa Fe 3000, Argentina", - "ror_ids": [ - "https://ror.org/01kwwh635" - ] - }, - { - "affiliation": "Sheffield Hallam University", - "ror_ids": [ - "https://ror.org/019wt1929" - ] - }, - { - "affiliation": "Department of Astronomy; Mount Holyoke College; South Hadley Massachusetts USA", - "ror_ids": [ - "https://ror.org/031z8pr38" - ] - }, - { - "affiliation": "La Salle University, Philadelphia, PA, USA", - "ror_ids": [ - "https://ror.org/02beve479" - ] - }, - { - "affiliation": "John A. Paulson School of Engineering and\r Applied Sciences, Harvard University, Cambridge, MA, USA", - "ror_ids": [ - "https://ror.org/03vek6s52" - ] - }, - { - "affiliation": "University of Zurich; Zurich Switzerland", - "ror_ids": [ - "https://ror.org/02crff812" - ] - }, - { - "affiliation": "Departament de Qu\u00edmica Inorg\u00e0nica i Org\u00e0nica, Secci\u00f3 Inorg\u00e0nica and Institute of Nanoscience (IN UB) and Nanotecnology; Universitat de Barcelona; Av. Diagonal 645 08028 Barcelona Spain", - "ror_ids": [ - "https://ror.org/021018s57" - ] - }, - { - "affiliation": " South Group, Cochabamba, Bolivia", - "ror_ids": [] - }, - { - "affiliation": "Marine Hydrophysical Institute of RAS", - "ror_ids": [ - "https://ror.org/04ayzes68" - ] - }, - { - "affiliation": "\n Food Research Laboratories, Inc., Long Island City, New York", - "ror_ids": [] - }, - { - "affiliation": "Laboratory\rof Environmental Process Engineering and Energy (LEPAE), Department\rof Chemical Engineering, University of Porto, Rua Dr. Roberto Frias s/n, 4200-465 Porto, Portugal", - "ror_ids": [ - "https://ror.org/043pwc612" - ] - }, - { - "affiliation": "Aurigene Discovery Technologies Limited, 39-40 KIADB Industrial Area, Electronic\rCity Phase II, Bangalore 560 100, India", - "ror_ids": [ - "https://ror.org/05k1y3v43" - ] - }, - { - "affiliation": "From the Department of Internal Medicine, Division of Cardiology, University of Texas Southwestern Medical Center, Dallas (H.M.H., J.A.d.L., D.K.M., S.R.D.); Division of Cardiology, University of Missouri-Kansas City (J.R.E.); Duke Clinical Research Institute, Durham, NC (S.A.P., K.P.A., M.T.R.); and Division of Cardiology, Brigham and Women\u2019s Hospital, Boston, MA (N.D., S.D.W.).", - "ror_ids": [ - "https://ror.org/05byvp690", - "https://ror.org/01w0d5g70", - "https://ror.org/04b6nzv94" - ] - }, - { - "affiliation": " Horticultural Crops Research Laboratory, USDA ARS, 3420 NW Orchard Avenue, Corvallis, Oregon 97330", - "ror_ids": [ - "https://ror.org/01na82s61" - ] - }, - { - "affiliation": "Department of Biosciences and Nutrition, Karolinska Institutet and University Hospital, Stockholm, Sweden", - "ror_ids": [ - "https://ror.org/056d84691" - ] - }, - { - "affiliation": "Crop Science Department, P.O. Box LG44, University of Ghana, Legon, Ghana", - "ror_ids": [ - "https://ror.org/01r22mr83" - ] - }, - { - "affiliation": "University of Colorado at Colorado Springs (United States)", - "ror_ids": [ - "https://ror.org/054spjc55" - ] - }, - { - "affiliation": "American Heart of Poland; Katowice; Poland", - "ror_ids": [ - "https://ror.org/04grq3m63" - ] - }, - { - "affiliation": "Ankara Ataturk Training and Research Hospital, Turkey", - "ror_ids": [] - }, - { - "affiliation": "\n M.L. Boninger, MD, is Professor and Chair, Department of Physical Medicine and Rehabilitation and McGowan Institute for Regenerative Medicine, University of Pittsburgh.", - "ror_ids": [ - "https://ror.org/04js6xx21", - "https://ror.org/01an3r305" - ] - }, - { - "affiliation": "Department of Thoracic Oncology, National Cancer Center Hospital East, Tokyo, Japan;", - "ror_ids": [ - "https://ror.org/03rm3gk43" - ] - }, - { - "affiliation": " a Faculty of Engineering , University of Khartoum , Sudan", - "ror_ids": [ - "https://ror.org/02jbayz55" - ] - }, - { - "affiliation": " a Dept. of Physics , Hong Ik Univeristy , Mapoku, Seoul , KOREA", - "ror_ids": [] - }, - { - "affiliation": "Department of Mechanical Engineering and Materials Science, University of Pittsburgh, Pittsburgh, Pennsylvania 15261, USA", - "ror_ids": [ - "https://ror.org/01an3r305" - ] - }, - { - "affiliation": "\n Project Manager, ecos, B\u00e4umleingasse 22, CH-4051 Basel, Switzerland (E-mail: urban.frei@ecos.ch)", - "ror_ids": [] - }, - { - "affiliation": "GeoEngineering Centre at Queen\u2019s\u2013RMC, Department of Civil Engineering, 13 General Crerar, Sawyer Building, Room 2085, Royal Military College of Canada, Kingston, ON K7K 7B4, Canada.", - "ror_ids": [ - "https://ror.org/04yr71909" - ] - }, - { - "affiliation": "Program Coordinator", - "ror_ids": [] - }, - { - "affiliation": "Department of Human Environmental Sciences, Konkuk University, Chungbuk, Seoul, Republic of Korea", - "ror_ids": [ - "https://ror.org/025h1m602" - ] - }, - { - "affiliation": "Faculty of Mechanical Engineering", - "ror_ids": [] - }, - { - "affiliation": "Warwick Business School, University of Warwick", - "ror_ids": [ - "https://ror.org/01a77tt86" - ] - }, - { - "affiliation": "School of Medicine; University of St Andrews; St Andrews UK", - "ror_ids": [ - "https://ror.org/02wn5qz54" - ] - }, - { - "affiliation": "Lancaster Environment Centre; Lancaster University; Lancaster UK", - "ror_ids": [ - "https://ror.org/04f2nsd36" - ] - }, - { - "affiliation": "Faculty of Fisheries Sciences, Hokkaido University", - "ror_ids": [ - "https://ror.org/02e16g702" - ] - }, - { - "affiliation": "School of Mechanical Engineering and Automation; Beihang University; Beijing 100191 China", - "ror_ids": [ - "https://ror.org/00wk2mp56" - ] - }, - { - "affiliation": "School of Physical & Geographical Sciences; Keele University; ST5 5BG Keele UK", - "ror_ids": [ - "https://ror.org/00340yn33" - ] - }, - { - "affiliation": "University of California, US", - "ror_ids": [ - "https://ror.org/00pjdza24" - ] - }, - { - "affiliation": "Instituto de Radiologia S\u00e3o Lu\u00eds, Brasil", - "ror_ids": [] - }, - { - "affiliation": "Key Laboratory of New Processing Technology for Nonferrous Metals and Materials, Guilin University of Technology, Guilin, Guangxi 541004, P. R. China", - "ror_ids": [ - "https://ror.org/03z391397" - ] - }, - { - "affiliation": "Universidad de Valencia, Valencia, Spain.", - "ror_ids": [ - "https://ror.org/043nxc105" - ] - }, - { - "affiliation": " Department of Biological Sciences, Stanford University, Stanford, California 94305, USA", - "ror_ids": [ - "https://ror.org/00f54p054" - ] - }, - { - "affiliation": "Universidade Federal de Vi\u00e7osa, Brazil", - "ror_ids": [ - "https://ror.org/0409dgb37" - ] - }, - { - "affiliation": "College of Light Industry and Food Sciences, South China University of Technology, Guangzhou, China.", - "ror_ids": [ - "https://ror.org/0530pts50" - ] - }, - { - "affiliation": "Texas Woman's University, USA", - "ror_ids": [ - "https://ror.org/04dyzkj40" - ] - }, - { - "affiliation": "Centro de Inform\u00e1tica e Automa\u00e7\u00e3o do Estado de Santa Catarina (CIASC), Brazil", - "ror_ids": [] - }, - { - "affiliation": ", SWITZERLAND", - "ror_ids": [] - }, - { - "affiliation": " Department of Research and DevelopmentDivision of Emergencies and Critical Care, Oslo University Hospital, Oslo, Norway", - "ror_ids": [ - "https://ror.org/00j9c2840" - ] - }, - { - "affiliation": " Centre for Neuropsychological research, Institute of Neurology- Catholic University, Rome, Italy", - "ror_ids": [] - }, - { - "affiliation": "Department of Business Administration, Assam University, Silchar, India", - "ror_ids": [ - "https://ror.org/0535c1v66" - ] - }, - { - "affiliation": "\n Dawlish", - "ror_ids": [] - }, - { - "affiliation": "Centre for Quality of Care Research, University Medical Centre St. Radboud, Nijmegen", - "ror_ids": [ - "https://ror.org/05wg1m734" - ] - }, - { - "affiliation": "Department of Endocrinology; Tongji Hospital; Tongji Medical College; Huazhong University of Science and Technology; Wuhan; China", - "ror_ids": [ - "https://ror.org/04xy45965", - "https://ror.org/00p991c53" - ] - }, - { - "affiliation": "Department of Research and Process Development, Klabin S.A., S\u00e3o Paulo, SP, Brazil", - "ror_ids": [] - }, - { - "affiliation": "IAEA, Austria", - "ror_ids": [ - "https://ror.org/02zt1gg83" - ] - }, - { - "affiliation": "Department of Pediatrics, Alberta Children\u2019s Hospital Research Institute, University of Calgary, Alberta, Canada", - "ror_ids": [ - "https://ror.org/00sx29x36", - "https://ror.org/03yjb2x39" - ] - }, - { - "affiliation": "Department of Clinical Neurological Sciences, Western University, London, ON, Canada", - "ror_ids": [ - "https://ror.org/02grkyz14" - ] - }, - { - "affiliation": "Department of Thoracic and Cardiovascular Surgery, Gangnam Severance Hospital, Yonsei University, College of Medicine, Seoul, Korea.", - "ror_ids": [ - "https://ror.org/04ajwkn20", - "https://ror.org/01wjejq96" - ] - }, - { - "affiliation": "Department of Medicine Statistics Core", - "ror_ids": [] - }, - { - "affiliation": "Locum GP, Northern Ireland", - "ror_ids": [] - }, - { - "affiliation": "State Key Laboratory for Strength and Vibration of Mechanical Structures, Xi\u2019an Jiaotong University, Xi\u2019an 710049, China", - "ror_ids": [ - "https://ror.org/017zhmm22" - ] - }, - { - "affiliation": "Electric Power Design Institute of Zhejiang Province", - "ror_ids": [] - }, - { - "affiliation": "17 June 1992, London; United Kingdom Serials Group", - "ror_ids": [] - }, - { - "affiliation": "Henry Ford Health System, Detroit, MI;", - "ror_ids": [ - "https://ror.org/02kwnkm68" - ] - }, - { - "affiliation": "Pacific Oceanological Institute; Russian Academy of Sciences; Vladivostok Russia", - "ror_ids": [ - "https://ror.org/05qrfxd25" - ] - }, - { - "affiliation": " Department of Earth Sciences, University of Pisa, Pisa, Italy", - "ror_ids": [ - "https://ror.org/03ad39j10" - ] - }, - { - "affiliation": "Union University, Jackson, TN, USA", - "ror_ids": [ - "https://ror.org/02c561939" - ] - }, - { - "affiliation": "Department of Biochemistry, University of Allahabad, Allahabad, India.", - "ror_ids": [ - "https://ror.org/03vrx7m55" - ] - }, - { - "affiliation": "Mass Spectrometry Department, Institute of Physics, Marie Curie-Sklodowska University, Pl. M. C.-Sklodowskiej 1, 20-031 Lublin, Poland", - "ror_ids": [ - "https://ror.org/015h0qg34" - ] - }, - { - "affiliation": "Institute\rof Polymer Engineering, University of Akron, Akron Ohio 44325-0301, United States", - "ror_ids": [ - "https://ror.org/02kyckx55" - ] - }, - { - "affiliation": " a Department of Finance and Investment , College of Economics and Administrative Sciences, Al Imam Mohammad Ibn Saud Islamic University (IMSIU) , P.O. Box 5701, Riyadh , Saudi Arabia", - "ror_ids": [ - "https://ror.org/05gxjyb39" - ] - }, - { - "affiliation": "Manhattan College", - "ror_ids": [ - "https://ror.org/02xhnzg94" - ] - }, - { - "affiliation": "Clinical Psychology Branch, Psychiatry and Neurology Consultants Division, Office of the Surgeon General, DA", - "ror_ids": [] - }, - { - "affiliation": " Stan Richards School of Advertising & Public Relations, The University of Texas at Austin, Austin, TX, USA", - "ror_ids": [ - "https://ror.org/00hj54h04" - ] - }, - { - "affiliation": "IDIBAPS; Barcelona Spain", - "ror_ids": [ - "https://ror.org/054vayn55" - ] - }, - { - "affiliation": "eNational Center for HIV/AIDS, Viral Hepatitis, STD, and TB Prevention, Centers for Disease Control and Prevention, Atlanta, USA.", - "ror_ids": [ - "https://ror.org/042twtr12" - ] - }, - { - "affiliation": "Hong Kong Polytechnic University", - "ror_ids": [ - "https://ror.org/0030zas98" - ] - }, - { - "affiliation": "Clinical Neurophysiology Department; UCLA; Los Angeles; California; U.S.A", - "ror_ids": [ - "https://ror.org/046rm7j60" - ] - }, - { - "affiliation": "School of Forest Resources, 5755 Nutting Hall, University of Maine, Orono, ME 04469-5755, USA.", - "ror_ids": [ - "https://ror.org/01adr0w49" - ] - }, - { - "affiliation": "University of Kashmir, Srinagar, India", - "ror_ids": [ - "https://ror.org/032xfst36" - ] - }, - { - "affiliation": "University of Michigan Comprehensive Cancer Center; Ann Arbor; MI; USA", - "ror_ids": [ - "https://ror.org/00jmfr291" - ] - }, - { - "affiliation": "Department of Restorative Dental Sciences, College of Dentistry, Taibah University, P.O. Box 2898, Madinah Al Munawwarah 43353, Saudi Arabia", - "ror_ids": [ - "https://ror.org/01xv1nn60" - ] - }, - { - "affiliation": "Clemson University, Greenville, SC", - "ror_ids": [ - "https://ror.org/037s24f05" - ] - }, - { - "affiliation": "Center for NBECS and School of Materials Science and Engineering, Gyeonsang National University, Gyeonnam, South Korea.", - "ror_ids": [ - "https://ror.org/00saywf64" - ] - }, - { - "affiliation": "Department of Mathematics, Shanghai Normal University and Scientific Computing Key Laboratory of Shanghai Universities, Shanghai 200234, China", - "ror_ids": [ - "https://ror.org/01cxqmw89" - ] - }, - { - "affiliation": "Kessler Institute for Rehabilitation, West Orange, NJ, USA", - "ror_ids": [ - "https://ror.org/05xysjr32" - ] - }, - { - "affiliation": "Department of Mathematics, University of Notre DameNotre Dame, IN 46556, USA", - "ror_ids": [ - "https://ror.org/00mkhxb43" - ] - }, - { - "affiliation": "Gastrointestinal and Liver Diseases Research Center (GLDRC), Guilan University of Medical Sciences, Rasht, Iran", - "ror_ids": [ - "https://ror.org/04ptbrd12" - ] - }, - { - "affiliation": "Reif Corporation", - "ror_ids": [] - }, - { - "affiliation": "From the Institute for Muscle Research, Marine Biological Laboratory, Woods Hole, Massachusetts", - "ror_ids": [ - "https://ror.org/046dg4z72" - ] - }, - { - "affiliation": "Medical University of Vienna, Vienna, Austria", - "ror_ids": [ - "https://ror.org/05n3x4p02" - ] - }, - { - "affiliation": "Section of Microbiology, Department of Biology, University of Copenhagen, Copenhagen 2100, Denmark", - "ror_ids": [ - "https://ror.org/035b05819" - ] - }, - { - "affiliation": "\n Division of Environmental Sciences, The Hebrew University of Jerusalem, Jerusalem 91904, Israel", - "ror_ids": [ - "https://ror.org/03qxff017" - ] - }, - { - "affiliation": "Division of Neurology, Harvard Medical School", - "ror_ids": [ - "https://ror.org/03wevmz92" - ] - }, - { - "affiliation": "Department of Chemistry and Biochemistry; University of Maryland; College Park MD USA", - "ror_ids": [ - "https://ror.org/047s2c258" - ] - }, - { - "affiliation": "Center for the Study of Cannabis and Social Policy, Seattle, Washington.", - "ror_ids": [] - }, - { - "affiliation": "School of Social work University of Pennsylvania Philadelphia, Pennsylvania", - "ror_ids": [ - "https://ror.org/00b30xv10" - ] - }, - { - "affiliation": "Beijing Hongtianji Neuroscience Academy, Beijing, P.R. China", - "ror_ids": [] - }, - { - "affiliation": " Institute for Pathology, Heidelberg University, Heidelberg, Germany", - "ror_ids": [ - "https://ror.org/038t36y30" - ] - }, - { - "affiliation": "Department\rof Materials Science and Engineering, University of Tennessee, Knoxville, Tennessee 37996, United States", - "ror_ids": [ - "https://ror.org/020f3ap87" - ] - }, - { - "affiliation": "Institute for Sorption and Problems of Endoecology National Academy of Sciences of Ukraine", - "ror_ids": [ - "https://ror.org/042dnf796" - ] - }, - { - "affiliation": "Lan Zhou Jiaotong University", - "ror_ids": [] - }, - { - "affiliation": "Key Laboratory of Zoonosis Research, Ministry of Education, Institute of Zoonosis, The Second Part of First Hospital, Jilin University, Changchun 130032, China", - "ror_ids": [ - "https://ror.org/00js3aw79" - ] - }, - { - "affiliation": "Van\r\u2019t Hoff Laboratory for Physical and Colloid Chemistry, Debye\rInstitute for Nanomaterials Science, Utrecht University, Padualaan\r8, 3584 CH Utrecht, The Netherlands", - "ror_ids": [ - "https://ror.org/04pp8hn57" - ] - }, - { - "affiliation": "Ciodonto-Universidade FACSETE, Rua It\u00e1lia Pontelo 50, 35700-170 Sete Lagoas, MG, Brazil", - "ror_ids": [] - }, - { - "affiliation": "Department\rof Chemistry, University of South Florida, 4202 East Fowler Avenue, CHE205, Tampa, Florida 33620-5250, United States", - "ror_ids": [ - "https://ror.org/032db5x82" - ] - }, - { - "affiliation": "Wake Forest Institute for Regenerative Medicine, Wake Forest School of Medicine, Winston-Salem, USA", - "ror_ids": [] - }, - { - "affiliation": "Institute of Materials and Environmental Chemistry; Hungarian Academy of Sciences and; Department of Physics; Budapest University of Technology and Economics; Budafoki ut 8 1111 Budapest Hungary", - "ror_ids": [ - "https://ror.org/00r71zw23", - "https://ror.org/02ks8qq67", - "https://ror.org/02w42ss30" - ] - }, - { - "affiliation": "Universiti Teknologi", - "ror_ids": [] - }, - { - "affiliation": " a Department of Life Science", - "ror_ids": [] - }, - { - "affiliation": "Robotics Institute, School of Mechanical Engineering, Shanghai Jiao Tong University, Shanghai, China", - "ror_ids": [ - "https://ror.org/0220qvk04" - ] - }, - { - "affiliation": "\n Hadley Wood, Middlesex", - "ror_ids": [] - }, - { - "affiliation": "Department of Microbiology, Usmanu Danfodiyo University, Sokoto 840001, Nigeria", - "ror_ids": [ - "https://ror.org/006er0w72" - ] - }, - { - "affiliation": "ZADCO, UAE", - "ror_ids": [] - }, - { - "affiliation": " Department of Geography, Gustavus Adolphus College, Saint Peter, USA", - "ror_ids": [ - "https://ror.org/007q4yk54" - ] - }, - { - "affiliation": " Woodbridge", - "ror_ids": [] - }, - { - "affiliation": "Universit\u00e0 degli Studi di Bari Aldo Moro, Italy", - "ror_ids": [ - "https://ror.org/027ynra39" - ] - }, - { - "affiliation": "Department of Dermatology; H\u00f4pital Ambroise Par\u00e9; Boulogne-Billancourt France", - "ror_ids": [ - "https://ror.org/03j6rvb05" - ] - }, - { - "affiliation": "Department of Pediatric Neurology, Bakirkoy Dr Mazhar Osman Psychiatric and Neurological Diseases Research and Education Hospital, Istanbul, Turkey", - "ror_ids": [ - "https://ror.org/007z4mw61" - ] - }, - { - "affiliation": "Department of Nephrology, Nagoya University Graduate School of Medicine, Nagoya, Japan", - "ror_ids": [ - "https://ror.org/04chrp450" - ] - }, - { - "affiliation": " a Institute of Precambrian Geology and Geochronology , USSR Academy of Sciences , ", - "ror_ids": [ - "https://ror.org/04kh9f807" - ] - }, - { - "affiliation": " d GecOz Pty Ltd , Cullen Bay, NT 0800, Australia", - "ror_ids": [] - }, - { - "affiliation": "Department of Physics, Kobe University", - "ror_ids": [ - "https://ror.org/03tgsfw79" - ] - }, - { - "affiliation": " College of Chemistry and Chemical Engineering, Southwest Petroleum University, Chengdu, SiChuan, China", - "ror_ids": [ - "https://ror.org/03h17x602" - ] - }, - { - "affiliation": "Utrecht University, Utrecht, Netherlands", - "ror_ids": [ - "https://ror.org/04pp8hn57" - ] - }, - { - "affiliation": "Tetra Tech, 14940 123 Avenue, Edmonton, AB T5V 1B4, Canada.", - "ror_ids": [ - "https://ror.org/05y6c0296" - ] - }, - { - "affiliation": "National Chiao Tung University, Hsinchu, Taiwan", - "ror_ids": [ - "https://ror.org/00se2k293" - ] - }, - { - "affiliation": "Department of Analytical Chemistry, ETSIA, C\u00f3rdoba 14004, Spain", - "ror_ids": [] - }, - { - "affiliation": "Nursing and Midwifery, Gastrointestinal and Liver Diseases Research Center (GLDRC), Guilan University of Medical Sciences, Rasht, Iran", - "ror_ids": [ - "https://ror.org/04ptbrd12" - ] - }, - { - "affiliation": "State Key Laboratory of Shale Oil and Gas Enrichment Mechanisms and Effective Development, Beijing 100083, China", - "ror_ids": [] - }, - { - "affiliation": "College of Education, University of Maryland College Park, College Park, MD, USA", - "ror_ids": [ - "https://ror.org/047s2c258" - ] - }, - { - "affiliation": "School of Planning, Oxford Polytechnic and Director of the Power Station Impacts (PSI) Project", - "ror_ids": [] - }, - { - "affiliation": "Hamm", - "ror_ids": [] - }, - { - "affiliation": "Complexo Hospitalar Heli\u00f3polis", - "ror_ids": [ - "https://ror.org/01bkdwe73" - ] - }, - { - "affiliation": "Instituto Oswaldo Cruz", - "ror_ids": [] - }, - { - "affiliation": "P\u00f3s-Gradua\u00e7\u00e3o em Engenharia El\u00e9trica e Computa\u00e7\u00e3o, Universidade Presbiteriana Mackenzie; Rua da Consola\u00e7\u00e3o 896 Consola\u00e7\u00e3o 01302-907 S\u00e3o Paulo Brazil", - "ror_ids": [ - "https://ror.org/006nc8n95" - ] - }, - { - "affiliation": "Department of Pediatrics; Bundang JeSaeng General Hospital", - "ror_ids": [ - "https://ror.org/03z0bdc81" - ] - }, - { - "affiliation": "Helmholtz-Zentrum fur Umweltforschung GmbH Fachbereich Sozialwissenschaften, Leipzig, Germany", - "ror_ids": [ - "https://ror.org/000h6jb29" - ] - }, - { - "affiliation": "Federal State Autonomous Institution of Science \u00abInstitute of Design and Technological Informatics\u00bb of the Russian Academy of Sciences", - "ror_ids": [ - "https://ror.org/05qrfxd25" - ] - }, - { - "affiliation": "Federal University of Rio Grande do Norte, Brazil", - "ror_ids": [ - "https://ror.org/04wn09761" - ] - }, - { - "affiliation": "Community and Environmental Affairs Department, Shizuoka Prefectural Government", - "ror_ids": [] - }, - { - "affiliation": "Department of Cardiology, Ba\u011fc\u0131lar Education and Research Hospital, Istanbul, Turkey", - "ror_ids": [] - }, - { - "affiliation": "AB SCIEX, Concord, Ontario, Canada L4K 4V8", - "ror_ids": [ - "https://ror.org/037mh3841" - ] - }, - { - "affiliation": "Center\rfor Advanced Materials and Nanotechnology, Lehigh University, Bethlehem, Pennsylvania 18015, United States", - "ror_ids": [ - "https://ror.org/012afjb06" - ] - }, - { - "affiliation": "Urban Chemical Laboratory for the Capital City of Warsaw, Warsaw, Poland", - "ror_ids": [] - }, - { - "affiliation": "Mayo Clinic; Rochester Minnesota", - "ror_ids": [ - "https://ror.org/03zzw1w08" - ] - }, - { - "affiliation": "Sharples Corporation; Philadelphia Pennsylvania", - "ror_ids": [] - }, - { - "affiliation": "Department of Biobehavioral Health, Pennsylvania State University, USA", - "ror_ids": [ - "https://ror.org/04p491231" - ] - }, - { - "affiliation": "Centre for Primary Care; Institute of Population Health; University of Manchester; Manchester UK", - "ror_ids": [ - "https://ror.org/027m9bs27" - ] - }, - { - "affiliation": "Division of Tumor Dynamics and Regulation, Cancer Research Institute, Kanazawa University, Kanazawa, Japan;", - "ror_ids": [ - "https://ror.org/02hwp6a56" - ] - }, - { - "affiliation": "Mechanical Engineering Department, Brunel University, Uxbridge, UK", - "ror_ids": [] - }, - { - "affiliation": "Platelet & Granulocyte ImmunologyNHSBT\u2014Bristol Centre, Southmead Road, Bristol BS10 5ND, UK", - "ror_ids": [ - "https://ror.org/0227qpa16" - ] - }, - { - "affiliation": " Pedagogy and Didactics Department, University of A Coru\u00f1a, A Coru\u00f1a, Spain", - "ror_ids": [ - "https://ror.org/01qckj285" - ] - }, - { - "affiliation": " The University of Akron", - "ror_ids": [ - "https://ror.org/02kyckx55" - ] - }, - { - "affiliation": "DPRI, Kyoto Univ.", - "ror_ids": [ - "https://ror.org/02kpeqv85" - ] - }, - { - "affiliation": " Agriculture and Environment Department, IFAPA Centro Las Torres-Tomejil, Sevilla, Spain", - "ror_ids": [ - "https://ror.org/02w21g732" - ] - }, - { - "affiliation": "Institute of Biological and Environmental Sciences, Zoology Building; University of Aberdeen; Aberdeen UK", - "ror_ids": [ - "https://ror.org/051wgfj58", - "https://ror.org/016476m91" - ] - }, - { - "affiliation": "Department of Anthropology; Hunter College; New York NY 10065", - "ror_ids": [ - "https://ror.org/00g2xk477" - ] - }, - { - "affiliation": "Department of Pharmacology, Baylor College of Medicine, Texas Medical Center, Houston 77030.", - "ror_ids": [ - "https://ror.org/02pttbw34", - "https://ror.org/00dqsbj20" - ] - }, - { - "affiliation": "Department of Mechanophysics Engineering, Osaka University", - "ror_ids": [ - "https://ror.org/035t8zc32" - ] - }, - { - "affiliation": "Fordham University, Bronx, New York, USA", - "ror_ids": [ - "https://ror.org/03qnxaf80" - ] - }, - { - "affiliation": "Department of Education Policy and Research on Education, Faculty of Education; University of Warsaw; Warsaw Poland", - "ror_ids": [ - "https://ror.org/039bjqg32" - ] - }, - { - "affiliation": "Department of Food Science and Nutrition; University of Minnesota; Saint Paul Minnesota", - "ror_ids": [ - "https://ror.org/017zqws13" - ] - }, - { - "affiliation": "Mental Health Research Unit, Psychiatric Centre, 2100 Copenhagen \u00d8, Denmark", - "ror_ids": [] - }, - { - "affiliation": "Editor Journal of Wound Care", - "ror_ids": [] - }, - { - "affiliation": "Dokuz Eyl\u00fcl University Department of Mechanical Engineering, Izmir, Turkey", - "ror_ids": [ - "https://ror.org/00dbd8b73" - ] - }, - { - "affiliation": "Medialab UGR & Departamento de Econom\u00eda Financiera y Contabilidad, Universidad de Granada, Spain", - "ror_ids": [ - "https://ror.org/04njjy449" - ] - }, - { - "affiliation": "Department of Mathematics and Statistics, University of Massachusetts, Amherst, Massachusetts, 01003-9305, USA", - "ror_ids": [ - "https://ror.org/0072zz521" - ] - }, - { - "affiliation": "From the Vascular Physiology and Thrombosis Research Laboratory of the Atherosclerosis Research Center, Cedars-Sinai Burns and Allen Research Institute; Division of Cardiology, Department of Medicine, Cedars-Sinai Medical Center; and University of California at Los Angeles School of Medicine, Los Angeles, Calif.", - "ror_ids": [ - "https://ror.org/02pammg90", - "https://ror.org/046rm7j60" - ] - }, - { - "affiliation": "Department of Cranio-Maxillofacial, Oncological and Reconstructive Surgery, Jagiellonian University, Medical College, 1 Zlotej Jesieni Street, 31-826 Krakow, Poland", - "ror_ids": [ - "https://ror.org/03bqmcz70" - ] - }, - { - "affiliation": "Institute for Palliative Medicine at San Diego Hospice, San Diego, California.", - "ror_ids": [ - "https://ror.org/01ccwxx16" - ] - }, - { - "affiliation": "Department of Mechanical, Aerospace, and Nuclear Engineering, Rotating Machinery and Control Laboratory, University of Virginia, Charlottesville, VA 22903-2442, USA", - "ror_ids": [ - "https://ror.org/0153tk833" - ] - }, - { - "affiliation": "National Institute of Dental and Craniofacial Research; Bethesda MD USA", - "ror_ids": [ - "https://ror.org/004a2wv92" - ] - }, - { - "affiliation": "Professor of Civil Engineering, Director, Centre for Geomechanics and Railway Engineering, Univ. of Wollongong, Wollongong, NSW 2522, AU (Corresponding author), e-mail: indra@uow.edu.au", - "ror_ids": [ - "https://ror.org/00jtmb277" - ] - }, - { - "affiliation": " Department of Obstetrics and Gynecology, and Sackler Faculty of Medicine, Rabin Medical Center, Beilinson Hospital, Petach Tikvah Israel, Tel Aviv University, Tel Aviv, Israel; ", - "ror_ids": [ - "https://ror.org/01vjtf564", - "https://ror.org/04mhzgx49" - ] - }, - { - "affiliation": "L-RAP - COPPE, Universidade Federal Do Rio De Janeiro; R. Muniz De Arag\u00e3o CT 2, Rio De Janeiro RJ CEP 21941-614 Brasil", - "ror_ids": [ - "https://ror.org/03490as77" - ] - }, - { - "affiliation": "Senior Occupational Therapist, Psychiatric Department of the West Middlesex Hospital", - "ror_ids": [ - "https://ror.org/00qexeh70" - ] - }, - { - "affiliation": "Keio university", - "ror_ids": [ - "https://ror.org/02kn6nx58" - ] - }, - { - "affiliation": "EUROCONTROL; Br\u00e9tigny-sur-Orge France", - "ror_ids": [ - "https://ror.org/0335j3x48" - ] - }, - { - "affiliation": "Horizon Campus, Zion-Benton Township High School, Zion, Ill", - "ror_ids": [] - }, - { - "affiliation": "Eastern Michigan University", - "ror_ids": [ - "https://ror.org/02ehshm78" - ] - }, - { - "affiliation": "Department of Surgery, Division of Head and Neck Surgery, School of Medicine, University of California, Los Angeles, California.", - "ror_ids": [ - "https://ror.org/046rm7j60" - ] - }, - { - "affiliation": "HanGil Eye Hospital, Incheon, Korea.", - "ror_ids": [] - }, - { - "affiliation": "School of Medicine; The Winship Cancer Institute of Emory University; Atlanta GA USA", - "ror_ids": [ - "https://ror.org/03czfpz43" - ] - }, - { - "affiliation": "Center for Regional Environmental Studies San Diego State University San Diego, California 92182", - "ror_ids": [ - "https://ror.org/0264fdx42" - ] - }, - { - "affiliation": "Department of Cardiac Surgery, University of British Columbia, Vancouver, British Columbia, V5Z 4E3 Canada", - "ror_ids": [ - "https://ror.org/03rmrcq20" - ] - }, - { - "affiliation": " U.O.C. Ematologia 1, IRCCS San Martino-IST, Genoa, Italy; ", - "ror_ids": [ - "https://ror.org/04tfzc498" - ] - }, - { - "affiliation": "Faculty of Life Science and Technology, Center for Molecular Medicine in Yunnan Province; Kunming University of Science and Technology; Kunming Yunnan China", - "ror_ids": [ - "https://ror.org/035rhx828" - ] - }, - { - "affiliation": "Department of Human Nutrition; Kansas State University; Manhattan; KS; USA", - "ror_ids": [ - "https://ror.org/05p1j8758" - ] - }, - { - "affiliation": "Hospital San Lucas da PUC, Porto Alegre, Brazil", - "ror_ids": [ - "https://ror.org/0353n6963" - ] - }, - { - "affiliation": "Binghamton University; USA", - "ror_ids": [ - "https://ror.org/008rmbt77" - ] - }, - { - "affiliation": "Department of Neurology, The Affiliated Brain Hospital of Guangzhou Medical University (Guangzhou Huiai Hospital), Guangzhou, Guangdong Province, China", - "ror_ids": [ - "https://ror.org/00zat6v61" - ] - }, - { - "affiliation": "Institute of Visual Computing 8 Human-Centered Technology, TU Wien, Austria", - "ror_ids": [ - "https://ror.org/04d836q62" - ] - }, - { - "affiliation": "National Center for Natural Products Research, School of Pharmacy, University of Mississippi, University, MS, USA", - "ror_ids": [ - "https://ror.org/02teq1165" - ] - }, - { - "affiliation": "Department of Environmental Sciences, COMSATS Institute of Information Technology, Abbottabad 22060, Pakistan", - "ror_ids": [ - "https://ror.org/00nqqvk19" - ] - }, - { - "affiliation": "School of Veterinary Medicine, University of Idaho, Moscow, Idaho 83843 and School of Veterinary Medicine, Oregon State University, Corvallis, Oregon 97331", - "ror_ids": [ - "https://ror.org/03hbp5t65", - "https://ror.org/00ysfqy60" - ] - }, - { - "affiliation": "Co-director of the California Statewide Systems Change project and a professor in Administration, Rehabilitation, and Postsecondary Education at San Diego State University.", - "ror_ids": [ - "https://ror.org/0264fdx42" - ] - }, - { - "affiliation": "Universityof Oxford, UK", - "ror_ids": [ - "https://ror.org/052gg0110" - ] - }, - { - "affiliation": "Division of Plastic and Reconstructive Surgery, Mayo Clinic, Rochester, Minnesota", - "ror_ids": [ - "https://ror.org/03jp40720" - ] - }, - { - "affiliation": "From the Department of Medicine, Division of Cardiology, Pulmonary Diseases and Angiology, and the Department of Pharmacology (D.J.H.), Heinrich-Heine-University Du\u0308sseldorf, Germany.", - "ror_ids": [ - "https://ror.org/024z2rq82" - ] - }, - { - "affiliation": "Center for Reproductive Medicine, Department of Obstetrics and Gynaecology, Academic Medical Center; University of Amsterdam; Amsterdam The Netherlands", - "ror_ids": [ - "https://ror.org/03t4gr691", - "https://ror.org/04dkp9463" - ] - }, - { - "affiliation": "Department of Mathematics, Kunsan National University, Kunsan 573-701, Republic of Korea", - "ror_ids": [ - "https://ror.org/02yj55q56" - ] - }, - { - "affiliation": "ERT, Inc. (United States)", - "ror_ids": [ - "https://ror.org/00fhn5p96" - ] - }, - { - "affiliation": "Department of Pediatrics, Division of Pediatric Endocrinology, Faculty of Medicine Selcuk University, Konya, Turkey", - "ror_ids": [ - "https://ror.org/045hgzm75" - ] - }, - { - "affiliation": "Third Department of Internal Medicine, Toho University School of Medicine, Ohashi Hospital, Tokyo, Japan", - "ror_ids": [ - "https://ror.org/02hcx7n63" - ] - }, - { - "affiliation": "Department of Radiology, Van Private Istanbul Hospital, 65000 Van, Turkey", - "ror_ids": [] - }, - { - "affiliation": "Space and Atmospheric Sciences Group; Los Alamos National Laboratory; Los Alamos New Mexico USA", - "ror_ids": [ - "https://ror.org/01e41cf67" - ] - }, - { - "affiliation": "Food Composition Laboratory, Beltsville Human Nutrition Research Center (BHNRC), United States Department of Agriculture-Agricultural Reasearch Service (USDA-ARS), Building 161, Beltsville, MD 20705. Names are necessary to report factually on available data; however, the USDA neither guarantees nor warrants the standard of the product, and the use of the name by the USDA implies no approval of the product to the exclusion of others that may also be suitable.", - "ror_ids": [ - "https://ror.org/02wzb5b52", - "https://ror.org/01na82s61" - ] - }, - { - "affiliation": "Clinical Development Gynecological Therapies, Division of Pharmaceuticals, Bayer AG, Berlin, Germany.", - "ror_ids": [] - }, - { - "affiliation": "Guangdong Lung Cancer Institute, Guangdong General Hospital (GGH) and Guangdong Academy of Medical Sciences, Guangzhou, China;", - "ror_ids": [ - "https://ror.org/03jpekd50", - "https://ror.org/0432p8t34" - ] - }, - { - "affiliation": "Department of Philosophy, School of History, Art History and Philosophy, University of Sussex, Brighton, UK", - "ror_ids": [ - "https://ror.org/00ayhx656" - ] - }, - { - "affiliation": " b School of Environmental Science and Engineering , Tongji University , Shanghai , PR China", - "ror_ids": [ - "https://ror.org/03rc6as71" - ] - }, - { - "affiliation": "Institut de Recherche en Sant\u00e9; de Surveillance Epidemiologique et de Formations; Dakar Senegal", - "ror_ids": [ - "https://ror.org/01psmkn05" - ] - }, - { - "affiliation": "Cornell University", - "ror_ids": [ - "https://ror.org/05bnh6r87" - ] - }, - { - "affiliation": "Institute for Land, Water and Society, Charles Sturt University; Albury New South Wales Australia", - "ror_ids": [ - "https://ror.org/00wfvh315" - ] - }, - { - "affiliation": "Division of Pediatric Hematology/Oncology and Stem Cell Transplantation; Steven and Alexandra Cohen Children's Medical Center of New York; New Hyde Park NY USA", - "ror_ids": [ - "https://ror.org/05p9y3e72" - ] - }, - { - "affiliation": "Jewish Hospital Berlin, Clinic for Psychiatry and Psychotherapy, Heinz-Galinski-Str. 1, 13347 Berlin, Germany", - "ror_ids": [] - }, - { - "affiliation": "UCB Pharma, Brussels, Belgium", - "ror_ids": [ - "https://ror.org/01n029866" - ] - }, - { - "affiliation": "CHU La Cavale Blanche; Brest France", - "ror_ids": [ - "https://ror.org/0250ngj72" - ] - }, - { - "affiliation": " Durham, North Carolina Public Schools", - "ror_ids": [ - "https://ror.org/010vqh084" - ] - }, - { - "affiliation": "\u00c9cole des Hautes \u00c9tudes en Sciences Sociales, Paris", - "ror_ids": [ - "https://ror.org/02d9dg697" - ] - }, - { - "affiliation": "The Royal Orthopaedic Hospital Oncology Service, Bristol Road South, Birmingham B31 2AP, UK", - "ror_ids": [] - }, - { - "affiliation": " Antarctic Research Centre, Victoria University of Wellington, Wellington, New Zealand", - "ror_ids": [ - "https://ror.org/0040r6f76" - ] - }, - { - "affiliation": " a University of Sheffield", - "ror_ids": [ - "https://ror.org/05krs5044" - ] - }, - { - "affiliation": "Department of Neurosurgery, Fukuoka Wajiro Hospital", - "ror_ids": [] - }, - { - "affiliation": "Division of Cardiovascular Medicine \rDepartment of Medicine \rJichi Medical University School of Medicine \rTochigi, Japan (Matsui,Ishikawa,Kario)", - "ror_ids": [ - "https://ror.org/010hz0g26" - ] - }, - { - "affiliation": "Pathology Department; AC Camargo Cancer Center; S\u00e3o Paulo Brazil", - "ror_ids": [ - "https://ror.org/03025ga79" - ] - }, - { - "affiliation": "Department of Public Administration, Hannam University", - "ror_ids": [ - "https://ror.org/01cwbae71" - ] - }, - { - "affiliation": "Faculty of\rEngineering, Shinshu University, 4-17-1 Wakasato, Nagano-shi 380-8553, Japan", - "ror_ids": [ - "https://ror.org/0244rem06" - ] - }, - { - "affiliation": "Graduate School of Engineering, Toin University of Yokohama", - "ror_ids": [ - "https://ror.org/020pjpv69" - ] - }, - { - "affiliation": "Department of Pathology, Asan Medical Center, University of Ulsan College of Medicine, Seoul, Korea.", - "ror_ids": [ - "https://ror.org/03s5q0090", - "https://ror.org/02c2f8975" - ] - }, - { - "affiliation": "Lovisenberg Diaconal University College; Oslo Norway", - "ror_ids": [] - }, - { - "affiliation": "Biotechnology\rResearch Institute for Drug Discovery, National Institute of Advanced Industrial Science and Technology (AIST), Tsukuba Center fifth, 1-1-1 Higashi, Tsukuba, Ibaraki 305-8565, Japan", - "ror_ids": [ - "https://ror.org/01703db54" - ] - }, - { - "affiliation": "State Key Laboratory of Loess and Quaternary Geology, Institute of Earth Environment, Chinese Academy of Sciences, Xi'an 710075, China, , Key Laboratory of Lake Sedimentation and Environment, Nanjing Institute of Geography & Limnology, Chinese Academy of Sciences, Nanjing 210008, China", - "ror_ids": [ - "https://ror.org/034t30j35", - "https://ror.org/03k6r8t20" - ] - }, - { - "affiliation": "Department of Pathology; Obihiro Kosei General Hospital; Obihiro Japan", - "ror_ids": [ - "https://ror.org/027fjzp74" - ] - }, - { - "affiliation": "Departamento Urologia, Brasil", - "ror_ids": [] - }, - { - "affiliation": "Griffith University", - "ror_ids": [ - "https://ror.org/02sc3r913" - ] - }, - { - "affiliation": "University of Seville", - "ror_ids": [ - "https://ror.org/03yxnpp24" - ] - }, - { - "affiliation": "AgResearch Invermay Agricultural Centre, Private Bag 50034, Mosgiel 9053, New Zealand", - "ror_ids": [] - }, - { - "affiliation": " UCLA", - "ror_ids": [ - "https://ror.org/046rm7j60" - ] - }, - { - "affiliation": "Penn State Hershey Pediatric Cardiovascular Research Center, Department of Pediatrics, Penn State College of Medicine, Penn State Children's Hospital, Hershey, Pennsylvania, USA, Department of Surgery, Penn State Milton S. Hershey Medical Center, Penn State Hershey College of Medicine, Penn State Children's Hospital, Hershey, Pennsylvania, USA, Department of Bioengineering, Penn State Milton S. Hershey Medical Center, Penn State Hershey College of Medicine, Penn State Children's Hospital, Hershey,...", - "ror_ids": [ - "https://ror.org/01h22ap11" - ] - }, - { - "affiliation": "Trade and Industry and Planning in the People's Republic of Grenada", - "ror_ids": [] - }, - { - "affiliation": "Department of Biotechnology, University of Tehran, Tehran, Iran", - "ror_ids": [ - "https://ror.org/05vf56z40" - ] - }, - { - "affiliation": "The University of Hong Kong", - "ror_ids": [ - "https://ror.org/02zhqgq86" - ] - }, - { - "affiliation": "Hephata Klinik, Schwalmstadt, Germany", - "ror_ids": [] - }, - { - "affiliation": "Universiti Teknologi Malaysia", - "ror_ids": [ - "https://ror.org/026w31v75" - ] - }, - { - "affiliation": " Gettysburg College", - "ror_ids": [ - "https://ror.org/045e26x92" - ] - }, - { - "affiliation": "the Department of Ophthalmology, University of Bonn, Bonn, Germany;", - "ror_ids": [ - "https://ror.org/041nas322" - ] - }, - { - "affiliation": "Principal Clinical Psychologist, Midlands Hospital Complex, Pietermaritzburg", - "ror_ids": [] - }, - { - "affiliation": "Universit\u00e9 du Qu\u00e9bec \u00e0 Montr\u00e9al; Montreal Qu\u00e9bec Canada", - "ror_ids": [ - "https://ror.org/002rjbv21" - ] - }, - { - "affiliation": "Institute of Information and System Science, Beifang University of Nationalities, Yinchuan 750021, P. R. China", - "ror_ids": [ - "https://ror.org/05xjevr11" - ] - }, - { - "affiliation": "Nagasaki Univ.", - "ror_ids": [ - "https://ror.org/058h74p94" - ] - }, - { - "affiliation": "Division of Science and Environmental Policy; California State University Monterey Bay; Seaside California USA", - "ror_ids": [ - "https://ror.org/00mjdtw98" - ] - }, - { - "affiliation": "Department of Pediatric Surgery, Tongji Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, Hubei, China.", - "ror_ids": [ - "https://ror.org/04xy45965", - "https://ror.org/00p991c53" - ] - }, - { - "affiliation": " Razi Drug Research Center, Iran University of Medical Sciences, Tehran, Iran; ", - "ror_ids": [ - "https://ror.org/03w04rv71" - ] - }, - { - "affiliation": "School of Information Science and Technology, Fudan University, Shanghai, 200433, China.", - "ror_ids": [ - "https://ror.org/013q1eq08" - ] - }, - { - "affiliation": "Center for Renewable Carbon", - "ror_ids": [] - }, - { - "affiliation": "Tokyo Institute of Technology Dept. of Organic and Polymeric Materials", - "ror_ids": [] - }, - { - "affiliation": "Institute for Geoinformatics, University of M\u00fcnster, M\u00fcnster, Germany", - "ror_ids": [ - "https://ror.org/00pd74e08" - ] - }, - { - "affiliation": "Department of Anesthesiology and Pain Medicine; Yeungnam University College of Medicine; Daegu Korea", - "ror_ids": [ - "https://ror.org/05yc6p159" - ] - }, - { - "affiliation": "Department of Psychological and Brain Sciences; Indiana University Bloomington", - "ror_ids": [ - "https://ror.org/02k40bc56" - ] - }, - { - "affiliation": "Neurology Unit, Medicine Department, HFR Cantonal Hospital and Faculty of Sciences, University of Fribourg, Fribourg, Switzerland", - "ror_ids": [ - "https://ror.org/022fs9h90" - ] - }, - { - "affiliation": "Durham, North Carolina", - "ror_ids": [] - }, - { - "affiliation": "Karolinska Institute, Department of Medical Epidemiology and Biostatistics, Stockholm, Sweden", - "ror_ids": [ - "https://ror.org/056d84691" - ] - }, - { - "affiliation": "Penrhyndeudraeth", - "ror_ids": [] - }, - { - "affiliation": " NSW Poisons Information Centre, Sydney, Australien und Department of Clinical Toxicology, Royal Prince Alfred Hospital, Sydney", - "ror_ids": [ - "https://ror.org/05gpvde20" - ] - }, - { - "affiliation": "University of Adelaide \rNorth Terrace\rAdelaide SA 5000", - "ror_ids": [ - "https://ror.org/00892tw58" - ] - }, - { - "affiliation": "D\u00e9partement de Physique, Universit\u00e9 de Champagne-Ardenne, UFR SEN, BP 1039, F-51687 Reims Cedex 2, France.", - "ror_ids": [] - }, - { - "affiliation": "Division of Chemistry and Biological\rChemistry, Nanyang Technological University, Singapore 637371, Singapore", - "ror_ids": [ - "https://ror.org/02e7b5302" - ] - }, - { - "affiliation": "Seikei University", - "ror_ids": [ - "https://ror.org/03ptaj492" - ] - }, - { - "affiliation": "Marine Scotland Science Freshwater Fisheries Laboratory; Pitlochry; UK", - "ror_ids": [] - }, - { - "affiliation": "From the Department of Orthopaedics and Traumatology, Regional Hospital of Bolzano, Bolzano, Italy", - "ror_ids": [] - }, - { - "affiliation": "Department of Civil and Industrial Engineering,\nUniversity of Pisa,\nLargo Lucio Lazzarino 2,\nPisa 56126, Italy;", - "ror_ids": [ - "https://ror.org/03ad39j10" - ] - }, - { - "affiliation": " Microbial Genomics and Bioprocessing Research Unit, National Center for Agricultural Utilization Research, Agricultural Research Service, U.S. Department of Agriculture, 1815 North University Street, Peoria, Illinois 61604", - "ror_ids": [ - "https://ror.org/02d2m2044", - "https://ror.org/02gbdhj19", - "https://ror.org/01na82s61" - ] - }, - { - "affiliation": "Department of Neurology; Institute of Neurosciences; Hospital Cl\u00ednico San Carlos; Universidad Complutense de Madrid; Madrid Spain", - "ror_ids": [ - "https://ror.org/04d0ybj29", - "https://ror.org/02p0gd045" - ] - }, - { - "affiliation": "USDA-ARS, Grain Marketing and Production Research Center, Manhattan, KS 66502. Names are necessary to report factually on available data; however, the USDA neither guarantees nor warrants the standard of the product, and the use of the name by the USDA implies no approval of the product to the exclusion of others that may also be suitable.", - "ror_ids": [ - "https://ror.org/01na82s61" - ] - }, - { - "affiliation": "Laboratory of Virology, National Institute of Allergy and Infectious Diseases, National Institutes of Health, Rocky Mountain Laboratories, Hamilton, Montana", - "ror_ids": [ - "https://ror.org/043z4tv69", - "https://ror.org/01cwqze88" - ] - }, - { - "affiliation": "Tallinn University", - "ror_ids": [ - "https://ror.org/05mey9k78" - ] - }, - { - "affiliation": "University Medicine of Greifswald, Interfaculty Institute for Genetics and Functional Genomics, Greifswald, Germany", - "ror_ids": [ - "https://ror.org/00r1edq15" - ] - }, - { - "affiliation": "Department of Physical Therapy, University of Utah, 520 Wakara Way, Salt Lake City, UT 84108.", - "ror_ids": [ - "https://ror.org/03r0ha626" - ] - }, - { - "affiliation": "The Liquid-solid Evolution and Processing of Materials of the Ministry of Education Key Laboratory of Shandong University", - "ror_ids": [ - "https://ror.org/0207yh398" - ] - }, - { - "affiliation": "Department\rof Cell and Molecular Biology, Uppsala University, Uppsala 751 05, Sweden", - "ror_ids": [ - "https://ror.org/048a87296" - ] - }, - { - "affiliation": "School of Energy Science and Engineering, University of Electronic Science and Technology of China, Chengdu, Sichuan 610054, China", - "ror_ids": [ - "https://ror.org/04qr3zq92" - ] - }, - { - "affiliation": "Division\rof Neurosurgery, Buddhist Tzu Chi General Hospital, Taichung Branch, Taichung 427, Taiwan", - "ror_ids": [ - "https://ror.org/037r57b62" - ] - }, - { - "affiliation": "Nursing Social Education Research Unit; University Hospital of Psychiatry; Bern Switzerland", - "ror_ids": [] - }, - { - "affiliation": "College of ChemistryChemical Engineering and Materials ScienceShandong Normal University Jinan 250014 Shandong China", - "ror_ids": [ - "https://ror.org/01wy3h363" - ] - }, - { - "affiliation": "Fukushima Biomedical Institute of Environmental and Neoplastic Diseases", - "ror_ids": [] - }, - { - "affiliation": "Department of Pathology; Johns Hopkins Medical Institutions; Baltimore Maryland USA", - "ror_ids": [] - }, - { - "affiliation": "Applied\rNano and Thermal Science (ANTS) Lab, Department of Mechanical Engineering, Seoul National University, 1 Gwanak-ro, Gwanak-gu,\rSeoul 08826, Korea", - "ror_ids": [ - "https://ror.org/04h9pn542" - ] - }, - { - "affiliation": "INEGI, Rua do Barroco 174/214, 4465 S. Mamede de Infesta, Portugal", - "ror_ids": [ - "https://ror.org/02pk7c879" - ] - }, - { - "affiliation": "Department of Aeronautics and Astronautics, Stanford University, Stanford, California 94305, United States", - "ror_ids": [ - "https://ror.org/00f54p054" - ] - }, - { - "affiliation": "School of Chemistry and Chemical Engineering, Key laboratory\rof Material Chemistry for Energy Conversion and Storage, Ministry\rof Education, Hubei Key Laboratory of Material Chemistry and Service\rFailure, Huazhong University of Science and Technology, Wuhan 430074, P. R. China", - "ror_ids": [ - "https://ror.org/00p991c53" - ] - }, - { - "affiliation": "AstraZeneca NordicBaltic; S\u00f6dert\u00e4lje Sweden", - "ror_ids": [] - }, - { - "affiliation": "Department of Environmental Studies; University of New England; 11 Hills Beach Road Biddeford ME 04005 USA", - "ror_ids": [ - "https://ror.org/02n2ava60" - ] - }, - { - "affiliation": "Marutomi Seiko Co., Ltd.", - "ror_ids": [] - }, - { - "affiliation": "ORIENTAL STUDIES UNIVERSITY, NAPLES/HUMBOLDT UNIVERSITY, BERLIN, ", - "ror_ids": [] - }, - { - "affiliation": "DATA61, CSIRO", - "ror_ids": [ - "https://ror.org/03q397159" - ] - }, - { - "affiliation": "University of California San Francisco Helen Diller Comprehensive Cancer Center; San Francisco CA USA", - "ror_ids": [ - "https://ror.org/043mz5j54" - ] - }, - { - "affiliation": "Department\rof Physics & Centre for Advanced Two-dimensional Materials, National University of Singapore, Singapore, 117542, Singapore", - "ror_ids": [ - "https://ror.org/01tgyzw49" - ] - }, - { - "affiliation": "Moss Landing Marine Laboratories; Moss Landing California USA", - "ror_ids": [ - "https://ror.org/01c8f2y33" - ] - }, - { - "affiliation": "Department of Psychiatry; Massachusetts General Hospital; Harvard Medical School; Boston MA USA", - "ror_ids": [ - "https://ror.org/002pd6e78", - "https://ror.org/03wevmz92" - ] - }, - { - "affiliation": "Griffith University of Australia; Department. Civil Engineering; Australia", - "ror_ids": [ - "https://ror.org/02sc3r913" - ] - }, - { - "affiliation": "Universidade Estadual Paulista Julio de Mesquita Filho", - "ror_ids": [ - "https://ror.org/00987cb86" - ] - }, - { - "affiliation": "MOE Key Laboratory of Macromolecular Synthesis and Functionalization, Department of Polymer Science and Engineering, Zhejiang University, Hangzhou 310027, China", - "ror_ids": [ - "https://ror.org/00a2xv884" - ] - }, - { - "affiliation": "\n Finchampsted Place, Berks", - "ror_ids": [] - }, - { - "affiliation": "Research Center; Faculty of Medicine Ramathibodi Hospital, Mahidol University; Bangkok Thailand", - "ror_ids": [ - "https://ror.org/04884sy85", - "https://ror.org/01znkr924" - ] - }, - { - "affiliation": "American National Red Cross", - "ror_ids": [ - "https://ror.org/0284e2q78" - ] - }, - { - "affiliation": "MANNA (Metropolitan Area Neighborhood Nutrition Alliance), Philadelphia, PA, USA", - "ror_ids": [] - }, - { - "affiliation": "CHU La Mil\u00e9trie; Poitiers France", - "ror_ids": [ - "https://ror.org/029s6hd13" - ] - }, - { - "affiliation": "Nurosurgical Department, Funabashi Municipa Medical Center", - "ror_ids": [ - "https://ror.org/02nycs597" - ] - }, - { - "affiliation": "ASCO President/Dana-Farber Cancer Institute, Harvard Medical School, USA", - "ror_ids": [ - "https://ror.org/02jzgtq86", - "https://ror.org/03wevmz92" - ] - }, - { - "affiliation": " University of Wollongong Australia", - "ror_ids": [ - "https://ror.org/00jtmb277" - ] - }, - { - "affiliation": "The Carnegie Foundation for the, Advancement of Teaching, CA", - "ror_ids": [ - "https://ror.org/01yyvd121" - ] - }, - { - "affiliation": "Department of Pediatrics and Neonatology, Suez Canal University, Ismailia 41522, Egypt", - "ror_ids": [ - "https://ror.org/02m82p074" - ] - }, - { - "affiliation": "\n USDA/ARS Children\u2019s Nutrition Research Center, Baylor College of Medicine, Houston, TX 77030.", - "ror_ids": [ - "https://ror.org/02pttbw34" - ] - }, - { - "affiliation": "Department of Biology, Agriculture and Food Sciences; The National Research Council of Italy (CNR); 00185 Rome Italy", - "ror_ids": [ - "https://ror.org/04zaypm56" - ] - }, - { - "affiliation": "Department of Education, American University of Beirut, Beirut, Lebanon.", - "ror_ids": [ - "https://ror.org/04pznsd21" - ] - }, - { - "affiliation": "Brigham and Women's Hospital; Boston Massachusetts USA", - "ror_ids": [ - "https://ror.org/04b6nzv94" - ] - }, - { - "affiliation": "Department of Experimental Surgery and Molecular Oncology of Solid Tumors, Mannheim Medical Faculty; Heidelberg University, and DKFZ (German Cancer Research Center); Mannheim Heidelberg Germany", - "ror_ids": [ - "https://ror.org/038t36y30", - "https://ror.org/04cdgtt98" - ] - }, - { - "affiliation": " a State University , Pyotr Veliki 2, SU-270 000 Odessa, USSR", - "ror_ids": [] - }, - { - "affiliation": "Department of Radiology, Van Training and Research Hospital, 65000 Van, Turkey", - "ror_ids": [] - }, - { - "affiliation": "School of Applied & Engineering Physics, Cornell University, Ithaca, New York 14850, USA", - "ror_ids": [ - "https://ror.org/05bnh6r87" - ] - }, - { - "affiliation": "Ishikawajima Inspection & Instrumentation Co.,Ltd", - "ror_ids": [] - }, - { - "affiliation": "ENSEIRB, Universit\u00e9 Bordeaux 1, France", - "ror_ids": [ - "https://ror.org/057qpr032" - ] - }, - { - "affiliation": "New York, N. Y.", - "ror_ids": [] - }, - { - "affiliation": "Azusa Pacific University", - "ror_ids": [ - "https://ror.org/02bmftj86" - ] - }, - { - "affiliation": "Plant Polymer Research, USDA, ARS, National Center for Agricultural Utilization Research, 1815 North University Street, Peoria, IL 61604, United States", - "ror_ids": [ - "https://ror.org/02gbdhj19" - ] - }, - { - "affiliation": "Duke University", - "ror_ids": [ - "https://ror.org/00py81415" - ] - }, - { - "affiliation": "Section of Cardiovascular Medicine, Department of Internal Medicine, University of Oklahoma Health Sciences Center, Oklahoma City, OK, U.S.A", - "ror_ids": [ - "https://ror.org/0457zbj98" - ] - }, - { - "affiliation": " School of Computing Science, University of Glasgow, Glasgow, UK", - "ror_ids": [ - "https://ror.org/00vtgdb53" - ] - }, - { - "affiliation": "University of Colorado-Boulder", - "ror_ids": [ - "https://ror.org/02ttsq026" - ] - }, - { - "affiliation": "Earth and Environmental Sciences Division; Los Alamos National Lab; Los Alamos NM 87545 USA", - "ror_ids": [ - "https://ror.org/01e41cf67" - ] - }, - { - "affiliation": "Department of Biology; Drexel University; Philadelphia Pennsylvania", - "ror_ids": [ - "https://ror.org/04bdffz58" - ] - }, - { - "affiliation": "Department of Life Science\rInformatics, B-IT, LIMES Program Unit Chemical Biology and Medicinal\rChemistry, Rheinische Friedrich-Wilhelms-Universit\u00e4t, Dahlmannstrasse 2, D-53113 Bonn, Germany", - "ror_ids": [ - "https://ror.org/041nas322" - ] - }, - { - "affiliation": "College of Resources and Environment, Shandong Provincial Key Laboratory of Water and Soil Conservation and Environmental Protection; Linyi University; Linyi China", - "ror_ids": [ - "https://ror.org/01knv0402" - ] - }, - { - "affiliation": "Senior lecturer in biochemistry, Liverpool John Moores University, Liverpool", - "ror_ids": [ - "https://ror.org/04zfme737" - ] - }, - { - "affiliation": "KIRCHHOFF Polska Sp. z o.o.", - "ror_ids": [] - }, - { - "affiliation": "Department of Biometry and Environmental System Analysis; University of Freiburg; Tennenbacherstr. 4 79106 Freiburg Germany", - "ror_ids": [ - "https://ror.org/0245cg223" - ] - }, - { - "affiliation": "Miami Project Cure Paralysis; University of Miami Miller School of Medicine; Miami Florida", - "ror_ids": [ - "https://ror.org/02dgjyy92" - ] - }, - { - "affiliation": "Chemical Engineering Dept. & Polymer Materials and Interfaces Lab., Virginia Polytechnic Institute and State University", - "ror_ids": [ - "https://ror.org/02smfhw86" - ] - }, - { - "affiliation": "Department of Chemistry, Stanford University, Stanford, California 94305, United States", - "ror_ids": [ - "https://ror.org/00f54p054" - ] - }, - { - "affiliation": "Vector-Borne Disease Laboratory, Maine Medical Center Research Institute, South Portland, Maine.", - "ror_ids": [ - "https://ror.org/03d1wq758" - ] - }, - { - "affiliation": "Department of Geography; The Hebrew University of Jerusalem; Israel", - "ror_ids": [ - "https://ror.org/03qxff017" - ] - }, - { - "affiliation": "From the Departments of Pathology (Dr Dintzis) and Surgery (Ms Hales and Drs Calhoun, Javid, and Byrd), University of Washington Medical Center, Seattle; Breast Surgery Clinic (Dr Harrington), Department of Pathology (Dr Tan), and Clinical Trials (Mses Fortney and Porenta), Overlake Hospital Medical Center, Bellevue, Washington; Development (Dr Miller), Clinical Operations (Mses Ishak and Gombotz), Research (Ms Hansen and Dr Parrish-Novak), and Device Development (Dr Kittle and Mr Perry), Blaze...", - "ror_ids": [ - "https://ror.org/00wbzw723", - "https://ror.org/004hxna20", - "https://ror.org/01ky34z31" - ] - }, - { - "affiliation": "College of Human Environmental Sciences University of\rKentucky", - "ror_ids": [ - "https://ror.org/02k3smh20" - ] - }, - { - "affiliation": "Laiko General Hospital, Athens, Greece", - "ror_ids": [ - "https://ror.org/02dvs1389" - ] - }, - { - "affiliation": "Fukushima University", - "ror_ids": [ - "https://ror.org/03zjb7z20" - ] - }, - { - "affiliation": "From the F. I. Proctor Foundation, the Departments of 3Epidemiology and Biostatistics and", - "ror_ids": [] - }, - { - "affiliation": "Instituto Federal de Educa\u00e7\u00e3o/Ci\u00eancia e Tecnologia Baiano, Brazil", - "ror_ids": [ - "https://ror.org/01dv63r93" - ] - }, - { - "affiliation": " a Peterson Institute for International Economics", - "ror_ids": [ - "https://ror.org/015121715" - ] - }, - { - "affiliation": "Department of Pharmacotherapy, Graduate School of Biomedical Sciences, Hiroshima University", - "ror_ids": [ - "https://ror.org/03t78wx29" - ] - }, - { - "affiliation": "Sheth M. N. Science College, Patan-384 265, Gujarat, India", - "ror_ids": [] - }, - { - "affiliation": "Osaka Prefecture University", - "ror_ids": [ - "https://ror.org/02cf1je33" - ] - }, - { - "affiliation": "Department of Molecular, Cellular, and Developmental Biology, University of Colorado, Boulder 80309-0347, USA.", - "ror_ids": [ - "https://ror.org/02ttsq026" - ] - }, - { - "affiliation": "RIKEN", - "ror_ids": [ - "https://ror.org/01sjwvz98" - ] - }, - { - "affiliation": "Graduate School, Tohoku University", - "ror_ids": [ - "https://ror.org/01dq60k83" - ] - }, - { - "affiliation": " b Department of Geography , University of Florida , Gainesville, FL 32611, USA E-mail: ", - "ror_ids": [ - "https://ror.org/02y3ad647" - ] - }, - { - "affiliation": "Taikisha Ltd.", - "ror_ids": [] - }, - { - "affiliation": "Istituto Nazionale Tumori, Milano, Italy", - "ror_ids": [ - "https://ror.org/05dwj7825" - ] - }, - { - "affiliation": " University of New Mexico, Albuquerque, NM, USA", - "ror_ids": [ - "https://ror.org/05fs6jp91" - ] - }, - { - "affiliation": "Journal of Pharmacy Practice and Research; PO Box 1774 Collingwood Vic. 3066", - "ror_ids": [] - }, - { - "affiliation": "Dermatology Research Centre; University of Queensland, School of Medicine; Brisbane; Queensland; Australia", - "ror_ids": [ - "https://ror.org/00rqy9422" - ] - }, - { - "affiliation": "Clayton\rFoundation Laboratories for Peptide Biology, Salk Institute for Biological Studies, La Jolla, California 92037, United States", - "ror_ids": [ - "https://ror.org/03xez1567" - ] - }, - { - "affiliation": "Department of Clinical Oncology and Outpatient Treatment Center, Aichi Cancer Center Hospital, Chikusa-Ku, Nagoya, Japan", - "ror_ids": [ - "https://ror.org/03kfmm080" - ] - }, - { - "affiliation": "Department of Oral Biology, Dental School, Leeds University, Leeds LS2 9NZ, England, Department of Preventive Dentistry, Medical Academy, Erfurt, G. D. R.", - "ror_ids": [ - "https://ror.org/024mrxd33" - ] - }, - { - "affiliation": "Department of Cardiac and Thoracic Surgery, The Chaim Sheba Medical Center, Tel Hashomer Israel", - "ror_ids": [ - "https://ror.org/020rzx487" - ] - }, - { - "affiliation": "University of Freiburg; Tennenbacherstrasse 4 Freiburg 79106 Germany", - "ror_ids": [ - "https://ror.org/0245cg223" - ] - }, - { - "affiliation": "Department of Basic Courses, Second Military Medical University, Shanghai, China.", - "ror_ids": [ - "https://ror.org/04tavpn47" - ] - }, - { - "affiliation": "Nanoscale and Microscale Research Centre (nmRC), The University of Nottingham, University Park, Nottingham, NG7 2RD, United Kingdom", - "ror_ids": [ - "https://ror.org/01ee9ar58" - ] - }, - { - "affiliation": "Department of Endocrinology; Cantonal Hospital Fribourg; Fribourg Switzerland", - "ror_ids": [] - }, - { - "affiliation": "Department\rof Physics, Tamkang University, New Taipei City 25137, Taiwan, The Republic of China", - "ror_ids": [ - "https://ror.org/04tft4718" - ] - }, - { - "affiliation": " b Nordland Research Institute , Bod\u00f8 , Norway", - "ror_ids": [ - "https://ror.org/02wvb2a30" - ] - }, - { - "affiliation": "SKF \u00d6sterreich AG, Industrial Electrical Segment, Steyr, Austria", - "ror_ids": [] - }, - { - "affiliation": "Department of Gastroenterology and Hepatology; Leiden University Medical Center; Leiden University; Leiden The Netherlands", - "ror_ids": [ - "https://ror.org/05xvt9f17", - "https://ror.org/027bh9e22" - ] - }, - { - "affiliation": "Department of Chemistry; Hong Kong Baptist University; Kowloon Hong Kong SAR China", - "ror_ids": [ - "https://ror.org/0145fw131" - ] - }, - { - "affiliation": "Macquarie University (Australia)", - "ror_ids": [ - "https://ror.org/01sf06y89" - ] - }, - { - "affiliation": "Wichita State University", - "ror_ids": [ - "https://ror.org/00c4e7y75" - ] - }, - { - "affiliation": "SRI International, Menlo Park, CA", - "ror_ids": [ - "https://ror.org/05s570m15" - ] - }, - { - "affiliation": "New York, N.Y.", - "ror_ids": [] - }, - { - "affiliation": "Instituto Tecnol\u00f3gico de Aeron\u00e1utica", - "ror_ids": [ - "https://ror.org/05vh67662" - ] - }, - { - "affiliation": "Secretaria Estadual da Sa\u00fade, Brasil; Universidade de S\u00e3o Paulo, Brasil", - "ror_ids": [ - "https://ror.org/036rp1748" - ] - }, - { - "affiliation": "Breast Center, Sagara Hospital, Kagoshima, Japan;", - "ror_ids": [] - }, - { - "affiliation": "Embajada de Francia, Bolivia", - "ror_ids": [] - }, - { - "affiliation": "Department of Pediatrics, Children's Hospital of Michigan, Wayne State University, Detroit, Michigan", - "ror_ids": [ - "https://ror.org/0429x9p85", - "https://ror.org/01070mq45" - ] - }, - { - "affiliation": "early years consultant and inspector", - "ror_ids": [] - }, - { - "affiliation": "State Key Laboratory of Marine Environmental Science; Xiamen University; Xiamen China", - "ror_ids": [ - "https://ror.org/00mcjh785" - ] - }, - { - "affiliation": "The Scientific and Technological Research Council of Turkey, Gebze, Kocaeli, Turkey", - "ror_ids": [ - "https://ror.org/04w9kkr77" - ] - }, - { - "affiliation": "\n Graduate School of Science and Engineering Yamaguchi University, 2-16-1 Tokiwadai, Ube, Yamaguchi 755-8611, Japan", - "ror_ids": [ - "https://ror.org/03cxys317" - ] - }, - { - "affiliation": "Department of Allergy, Clinical Research Center for Allergology and Rheumatology, Sagamihara National Hospital", - "ror_ids": [ - "https://ror.org/01gvfxs59" - ] - }, - { - "affiliation": "Tongji University", - "ror_ids": [ - "https://ror.org/03rc6as71" - ] - }, - { - "affiliation": "Laboratory for Characterization and Processing of Polymers, Faculty of Mechanical Engineering; University of Maribor; Smetanova 17 2000 Maribor Slovenia", - "ror_ids": [ - "https://ror.org/01d5jce07" - ] - }, - { - "affiliation": "Chemical\rProcess Department, School of Industrial Engineering of Barcelona\r(ETSEIB), Polytechnic University of Catalonia, 08028 Barcelona, Spain", - "ror_ids": [ - "https://ror.org/03mb6wj31" - ] - }, - { - "affiliation": "National Key Laboratory for Crop Genetics and Germplasm Enhancement; Jiangsu Plant Gene Engineering Research Center; Nanjing Agricultural University; Nanjing China", - "ror_ids": [ - "https://ror.org/05td3s095" - ] - }, - { - "affiliation": "Symmetron Ltd; Kinetic Centre; Theobald St, Borehamwood; WD6 4PJ; U.K", - "ror_ids": [] - }, - { - "affiliation": " Technical University of Denmark, Department of Photonics Engineering, 4000 Roskilde, Denmark", - "ror_ids": [ - "https://ror.org/04qtj9h94" - ] - }, - { - "affiliation": "U. of Rochester", - "ror_ids": [ - "https://ror.org/022kthw22" - ] - }, - { - "affiliation": "University of Michigan, Ann Arbor", - "ror_ids": [ - "https://ror.org/00jmfr291" - ] - }, - { - "affiliation": "Plymouth Hospitals NHS Trust and Plymouth University Peninsula Schools of Medicine and Dentistry; Plymouth UK", - "ror_ids": [ - "https://ror.org/05x3jck08" - ] - }, - { - "affiliation": "Department of Chemical Engineering, National Taiwan University, Taipei 106-07, Taiwan", - "ror_ids": [ - "https://ror.org/05bqach95" - ] - }, - { - "affiliation": "Department of Preventive Medicine, University Clinic of Navarra, Pamplona - Spain", - "ror_ids": [ - "https://ror.org/03phm3r45" - ] - }, - { - "affiliation": "Division of Medicine and Molecular Genetics; St John's Institute of Dermatology; Guy's Hospital; London; SE1 9RT; U.K", - "ror_ids": [ - "https://ror.org/04r33pf22" - ] - }, - { - "affiliation": " Department of Health Services Administration, China Medical University, Taichung, Taiwan; ", - "ror_ids": [ - "https://ror.org/00v408z34" - ] - }, - { - "affiliation": "National Cancer Center Hospital East, Kashiwa, Japan;", - "ror_ids": [ - "https://ror.org/03rm3gk43" - ] - }, - { - "affiliation": "\n Laboratory of Nutrition and Cancer, Centre de recherche\u0301 du Centre hospitalier de l'Universite\u0301 de Montre\u0301al-Ho\u0302tel-Dieu; Department of Medicine, Universite\u0301 de Montre\u0301al, Montreal, H2W 1T7, Canada", - "ror_ids": [ - "https://ror.org/0410a8y51", - "https://ror.org/0161xgx34" - ] - }, - { - "affiliation": "Center for Health, Services Research, Medical School", - "ror_ids": [] - }, - { - "affiliation": "Institute of Developmental Sciences, Faculty of Medicine; University of Southampton; Tremona Road Southampton SO16 6YD UK", - "ror_ids": [ - "https://ror.org/01ryk1543" - ] - }, - { - "affiliation": "Faculty of Sciences, University of C\u00f3rdoba, C\u00f3rdoba 14004, Spain", - "ror_ids": [ - "https://ror.org/05yc77b46" - ] - }, - { - "affiliation": " Department of Kinesiology and Health Georgia State University", - "ror_ids": [ - "https://ror.org/03qt6ba18" - ] - }, - { - "affiliation": "University College London Counselling Service", - "ror_ids": [ - "https://ror.org/02jx3x895" - ] - }, - { - "affiliation": "Department of Chemistry, Chemical\rTheory Center, and Supercomputing Institute, University of Minnesota, 207 Pleasant St. SE, Minneapolis, Minnesota 55455-0431, United States", - "ror_ids": [ - "https://ror.org/017zqws13" - ] - }, - { - "affiliation": "Institute for Cancer Research and Treatment, University of Torino School of Medicine, 10060 Torino, Italy", - "ror_ids": [ - "https://ror.org/048tbm396" - ] - }, - { - "affiliation": "From the Departments of Clinical Neurosciences, Radiology, and Community Health Sciences, Cumming School of Medicine, University of Calgary, Canada (B.K.M.)", - "ror_ids": [ - "https://ror.org/03yjb2x39" - ] - }, - { - "affiliation": "Institut Curie, France", - "ror_ids": [ - "https://ror.org/04t0gwh46" - ] - }, - { - "affiliation": "School of Materials Science and Engineering, UNSW Australia, NSW 2052, Australia, Meta-Logical Solutions, Armadale, Victoria 3143, Australia", - "ror_ids": [ - "https://ror.org/03r8z3t63" - ] - }, - { - "affiliation": "Politecnico di Milano", - "ror_ids": [ - "https://ror.org/01nffqt88" - ] - }, - { - "affiliation": "Citrus Research International, P.O. Box 28, Nelspruit, 1200 South Africa", - "ror_ids": [ - "https://ror.org/04c525d12" - ] - }, - { - "affiliation": "Department of Psychology, Florida Southern College", - "ror_ids": [ - "https://ror.org/026hjc247" - ] - }, - { - "affiliation": " Institute of Urban Water Management and Landscape Water Engineering, Graz University of Technology, Graz, Austria", - "ror_ids": [ - "https://ror.org/00d7xrm67" - ] - }, - { - "affiliation": "Department of Physics; Hong Kong Baptist University; Kowloon Hong Kong SAR China", - "ror_ids": [ - "https://ror.org/0145fw131" - ] - }, - { - "affiliation": "Faculty of Human-Environment Studies, Kyushu Univ.", - "ror_ids": [ - "https://ror.org/00p4k0j84" - ] - }, - { - "affiliation": "Trinity College, Dublin", - "ror_ids": [ - "https://ror.org/02tyrky19" - ] - }, - { - "affiliation": "Lancaster University; Medical School; Lancaster UK", - "ror_ids": [ - "https://ror.org/04f2nsd36" - ] - }, - { - "affiliation": "Department of Cardiovascular Medicine, Catholic University of the Sacred Heart", - "ror_ids": [ - "https://ror.org/03h7r5v07" - ] - }, - { - "affiliation": "Johannesburg Zoo; Parkview Johannesburg South Africa", - "ror_ids": [] - }, - { - "affiliation": "Ruprecht-Karls-University of Heidelberg, Germany", - "ror_ids": [ - "https://ror.org/038t36y30" - ] - }, - { - "affiliation": "Key Laboratory of Polymer Ecomaterials, Chinese Academy of Sciences", - "ror_ids": [ - "https://ror.org/034t30j35" - ] - }, - { - "affiliation": "Department of Chemical\rand Biological Engineering, Princeton University, Princeton, New Jersey 08544,\rUnited States", - "ror_ids": [ - "https://ror.org/00hx57361" - ] - }, - { - "affiliation": "Ludwig-Maximilians-University Munich", - "ror_ids": [ - "https://ror.org/05591te55" - ] - }, - { - "affiliation": "Department of Materials Process Engineering, Kyushu University", - "ror_ids": [ - "https://ror.org/00p4k0j84" - ] - }, - { - "affiliation": "Center for Migrant Health Policy, Sun Yat-sen University, China", - "ror_ids": [ - "https://ror.org/0064kty71" - ] - }, - { - "affiliation": "Department of Physics; Santa Catarina Federal University; Blumenau Santa Catarina Brazil", - "ror_ids": [ - "https://ror.org/041akq887" - ] - }, - { - "affiliation": "Medical Imaging Technologies, Siemens Medical Solutions USA; Inc", - "ror_ids": [] - }, - { - "affiliation": "Sacred Heart College", - "ror_ids": [ - "https://ror.org/02pttbd79" - ] - }, - { - "affiliation": "Department of Emergency, The First Affiliated Hospital of Soochow University, Suzhou, China", - "ror_ids": [ - "https://ror.org/051jg5p78" - ] - }, - { - "affiliation": "Department of Mechanical and Aerospace Engineering, Islamic Azad University, Science and Research Branch, Tehran, Iran", - "ror_ids": [ - "https://ror.org/007zpd132" - ] - }, - { - "affiliation": "From the Department of Surgery, Federal\rUniversity of Mato Grosso, Cuiaba, Brazil; and the\rVeterans Administration Surgical Services,\rWilliam S. Middleton Memorial Veterans Hospital Madison and the Department of\rSurgery, The University of Wisconsin\u2013Madison, Madison, Wisconsin", - "ror_ids": [ - "https://ror.org/01mqvjv41", - "https://ror.org/037xafn82", - "https://ror.org/01y2jtd41" - ] - }, - { - "affiliation": "Centre for Clean Environment and Energy; Griffith University; Gold Coast Campus; QLD; 4222; Australia", - "ror_ids": [ - "https://ror.org/02sc3r913" - ] - }, - { - "affiliation": "University of Hong Kong", - "ror_ids": [ - "https://ror.org/02zhqgq86" - ] - }, - { - "affiliation": "Duke University Center for the Study of Aging and Human Development, Durham, N.C. 27710.", - "ror_ids": [ - "https://ror.org/00py81415" - ] - }, - { - "affiliation": "Southern Medical University; Department of Biostatistics; 1838# North Guangzhou Avenue Guangzhou Guangdong China 510515", - "ror_ids": [ - "https://ror.org/01vjw4z39" - ] - }, - { - "affiliation": "University of California, Irvine, CA, USA", - "ror_ids": [ - "https://ror.org/04gyf1771" - ] - }, - { - "affiliation": "UTFPR", - "ror_ids": [ - "https://ror.org/002v2kq79" - ] - }, - { - "affiliation": "San Diego State University, San Diego, CA, USA", - "ror_ids": [ - "https://ror.org/0264fdx42" - ] - }, - { - "affiliation": "INSEAD", - "ror_ids": [ - "https://ror.org/00ghzk478" - ] - }, - { - "affiliation": "Teachers College, Columbia University, New York", - "ror_ids": [ - "https://ror.org/00hj8s172" - ] - }, - { - "affiliation": "Harbin Institute of Technology; Harbin; PR China", - "ror_ids": [ - "https://ror.org/01yqg2h08" - ] - }, - { - "affiliation": "Technical University of Cluj-Napoca", - "ror_ids": [ - "https://ror.org/03r8nwp71" - ] - }, - { - "affiliation": "Clinical Metabolomics Core Facility; Clinical Biochemistry, Rigshospitalet; University of Copenhagen; Copenhagen Denmark", - "ror_ids": [ - "https://ror.org/03mchdq19", - "https://ror.org/035b05819" - ] - }, - { - "affiliation": "University of Missouri-Rolla; 1870 Miner Circle Rolla Missouri 65409", - "ror_ids": [ - "https://ror.org/00scwqd12" - ] - }, - { - "affiliation": "Pharmaceutical Science Section, College of Pharmacy, Qatar University, 2713 Doha, Qatar", - "ror_ids": [ - "https://ror.org/00yhnba62" - ] - }, - { - "affiliation": "Department of Biomedical Sciences, College of Health Sciences, Qatar University, 2713 Doha, Qatar", - "ror_ids": [ - "https://ror.org/00yhnba62" - ] - }, - { - "affiliation": "Brain and Spinal cord Injury, Research Center, Neuroscience Institute, Tehran University of Medical Science, Tehran, Iran", - "ror_ids": [ - "https://ror.org/01c4pz451" - ] - }, - { - "affiliation": "Department of Electrical Engineering and Computer Sciences, Graduate School of Engineering, University of Hyogo, 2167 Shosha, Himeji, Hyogo 671-2280, Japan", - "ror_ids": [ - "https://ror.org/0151bmh98" - ] - }, - { - "affiliation": "FGBOU VO \u00abSamarskaya gosudarstvennaya sel'skohozyaystvennaya akademiya\u00bb", - "ror_ids": [] - }, - { - "affiliation": "Plasma Laboratory; Jozef Stefan Institute; Jamova Cesta 39 1000 Ljubljana Slovenia", - "ror_ids": [ - "https://ror.org/05060sz93" - ] - }, - { - "affiliation": "National Park Service; Organ Pipe Cactus National Monument; 10 Organ Pipe Drive; Ajo; AZ; 85321; USA", - "ror_ids": [ - "https://ror.org/044zqqy65" - ] - }, - { - "affiliation": "Department of Pharmacological and Physiological Science, Saint Louis University School of Medicine, St. Louis, Missouri", - "ror_ids": [ - "https://ror.org/01p7jjy08" - ] - }, - { - "affiliation": "LPTHIRM, D\u00e9partement de Physique, Facult\u00e9 des Sciences, Universit\u00e9 Sa\u00e2d DAHLAB-Blida 1, B.P. 270 Route de Soum\u00e2a, 09000 Blida, Algeria", - "ror_ids": [ - "https://ror.org/03g41pw14" - ] - }, - { - "affiliation": "Department of Medicine, Division of Cardiovascular Medicine; University of California; San Diego California", - "ror_ids": [ - "https://ror.org/00vvhe852" - ] - }, - { - "affiliation": "Department of Cardiology, Laiko Hospital, Athens, Greece", - "ror_ids": [ - "https://ror.org/02dvs1389" - ] - }, - { - "affiliation": "Department Naval Architecture and Ocean Engineering, Inha University, Incheon 22212, Korea", - "ror_ids": [ - "https://ror.org/01easw929" - ] - }, - { - "affiliation": "Department of Neurology, The Fourth Affiliated Hospital of Tongji University, Shanghai 200081, China", - "ror_ids": [ - "https://ror.org/03rc6as71" - ] - }, - { - "affiliation": "Graduate School, Shibaura Institute of Technology", - "ror_ids": [ - "https://ror.org/020wjcq07" - ] - }, - { - "affiliation": "Department of Neurology, Children\u2019s Hospital Boston and Harvard Medical School, Boston, MA", - "ror_ids": [ - "https://ror.org/00dvg7y05", - "https://ror.org/03wevmz92" - ] - }, - { - "affiliation": "727 NW 7th Drive, Boca Raton, FL, US.", - "ror_ids": [] - }, - { - "affiliation": "University of Hertfordshire", - "ror_ids": [ - "https://ror.org/0267vjk41" - ] - }, - { - "affiliation": "Laboratory of Ultrasound Molecular Imaging, Department of Ultrasound Medicine, The Third Affiliated Hospital of Guangzhou Medical University, Guangzhou, PR China", - "ror_ids": [ - "https://ror.org/00fb35g87" - ] - }, - { - "affiliation": "dall'Istituto Nazionale per lo Studio e la Cura dei Tumori di Milano, diretto dal prof. P. Bucalossi, dalla Clinica Otorinolaringoiatrica dell'Universit\u00e0 di Pavia, diretta dal prof. F. Carnevale Ricci, e dall'Ospedale S. Gerardo dei Tintori di Monza, Divisione O.R.L., diretta dal prof. E. Bozzi", - "ror_ids": [ - "https://ror.org/00s6t1f81" - ] - }, - { - "affiliation": "Department of Histology and Embryology, Pozna\u0144 University of Medical Sciences, 61-781 Pozna\u0144, Poland", - "ror_ids": [ - "https://ror.org/02zbb2597" - ] - }, - { - "affiliation": "Muroran Plant, The Japan Steel Works, Ltd.", - "ror_ids": [ - "https://ror.org/00146wx41" - ] - }, - { - "affiliation": " Department of Chemistry, The University of Kansas , Lawrence, KS, USA", - "ror_ids": [ - "https://ror.org/001tmjg57" - ] - }, - { - "affiliation": "Pfizer Inc.; Groton CT USA", - "ror_ids": [] - }, - { - "affiliation": "Institute for Materials Research, Tohoku University, Sendai 980-8577, Japan", - "ror_ids": [ - "https://ror.org/01dq60k83" - ] - }, - { - "affiliation": "Department of Obstetrics and Gynaecology; Royal Shrewsbury Hospital; Shropshire UK", - "ror_ids": [ - "https://ror.org/05nnz2423" - ] - }, - { - "affiliation": "State Key Laboratory of Rice Biology; China National Rice Research Institute; Hangzhou 310006 China", - "ror_ids": [ - "https://ror.org/05szcn205" - ] - }, - { - "affiliation": "Research Unit Peace and Conflict Studies, Free University Berlin, Germany", - "ror_ids": [ - "https://ror.org/046ak2485" - ] - }, - { - "affiliation": "Chaim Sheba Medical Center", - "ror_ids": [ - "https://ror.org/020rzx487" - ] - }, - { - "affiliation": "G\u00e9osciences; Universit\u00e9 de Montpellier 2, CNRS; Montpellier France", - "ror_ids": [ - "https://ror.org/051escj72" - ] - }, - { - "affiliation": "Nagoya Inst. of Tech.", - "ror_ids": [ - "https://ror.org/055yf1005" - ] - }, - { - "affiliation": "Laboratorio\rde S\u00edntesis Org\u00e1nica, Facultad de Qu\u00edmica, Universidad de la Habana, 10400 La Habana, Cuba", - "ror_ids": [ - "https://ror.org/04204gr61" - ] - }, - { - "affiliation": "Faculty of Life Sciences, The University of Manchester", - "ror_ids": [ - "https://ror.org/027m9bs27" - ] - }, - { - "affiliation": "Lincoln Gerontology Centre La Trobe University", - "ror_ids": [ - "https://ror.org/01rxfrp27" - ] - }, - { - "affiliation": "Microsoft Corporation, Redmond, Washington", - "ror_ids": [ - "https://ror.org/00d0nc645" - ] - }, - { - "affiliation": "Geological Isolation Research and Development Directorate; JAEA; Hokkaido Japan", - "ror_ids": [ - "https://ror.org/05nf86y53" - ] - }, - { - "affiliation": " a The Propaganda Department of the Central Committee of the CPSU", - "ror_ids": [] - }, - { - "affiliation": "Functional Materials Research Laboratory", - "ror_ids": [] - }, - { - "affiliation": "Department of Education, Utrecht University, The Netherlands", - "ror_ids": [ - "https://ror.org/04pp8hn57" - ] - }, - { - "affiliation": "Department of Epidemiology; Center for AIDS Research and Center for Public Health and Human Rights; John Hopkins Bloomberg School of Public Health; Baltimore MD USA", - "ror_ids": [] - }, - { - "affiliation": "Department of Environmental Engineering, Hungkuang University, Sha-Lu 433, Taichung Taiwan, ", - "ror_ids": [ - "https://ror.org/02f2vsx71" - ] - }, - { - "affiliation": "Department of Biological Sciences, University of New Hampshire, Durham, NH 03824, USA.", - "ror_ids": [ - "https://ror.org/01rmh9n78" - ] - }, - { - "affiliation": "Department of Psychology; Wayne State University; Detroit Michigan U.S.A.", - "ror_ids": [ - "https://ror.org/01070mq45" - ] - }, - { - "affiliation": "Professor of Endodontology, Consultant in Restorative Dentistry, University of Dundee School of Dentistry, Park Place, Dundee DD1 4HN, UK", - "ror_ids": [ - "https://ror.org/03h2bxq36" - ] - }, - { - "affiliation": " Department of Obstetrics and Gynecology, Charles University in Prague, Faculty of Medicine Hradec Kralove, University Hospital Hradec Kralove, Hradec Kralove, Czech Republic, ", - "ror_ids": [ - "https://ror.org/024d6js02", - "https://ror.org/04wckhb82" - ] - }, - { - "affiliation": "Laboratory of Immunology, Faculty of Public Health, Lebanese University, Fanar, Lebanon;", - "ror_ids": [ - "https://ror.org/05x6qnc69" - ] - }, - { - "affiliation": "T. A. Blakelock High School M. J. Harrison Oakville, Ontario", - "ror_ids": [] - }, - { - "affiliation": "School of Oceanography; University of Washington; Seattle Washington USA", - "ror_ids": [ - "https://ror.org/00cvxb145" - ] - }, - { - "affiliation": " a Psikhologiia zrelosti i starosti [Psychology of Maturity and Old Age]", - "ror_ids": [] - }, - { - "affiliation": "Pembroke College; Cambridge", - "ror_ids": [] - }, - { - "affiliation": "Clinic for Obstetrics, Gynecology and Andrology of Large and Small Animals, Faculty of Veterinary Medicine; Justus Liebig University Giessen; Giessen Germany", - "ror_ids": [ - "https://ror.org/033eqas34" - ] - }, - { - "affiliation": "Division of Functional Food Research, Korea Food Research Institute, Jeonju 55365, Korea.", - "ror_ids": [ - "https://ror.org/028jp5z02" - ] - }, - { - "affiliation": "Departments of Pathology of Lenox Hill Hospital Francis Delafield Hospital", - "ror_ids": [ - "https://ror.org/0231d2y50" - ] - }, - { - "affiliation": "National Human Genome Research Institute, National Institutes of Health, Bethesda, MD", - "ror_ids": [ - "https://ror.org/00baak391", - "https://ror.org/01cwqze88" - ] - }, - { - "affiliation": "RIKEN Institute of Physical and Chemical Research", - "ror_ids": [ - "https://ror.org/01sjwvz98" - ] - }, - { - "affiliation": "Gastro-Intestinal Unit, University Department of Therapeutics, at the Royal Infirmary, Edinburgh, and the University Department of Pathology", - "ror_ids": [ - "https://ror.org/009bsy196" - ] - }, - { - "affiliation": "Department of Psychosocial Oncology, Princess Margaret Hospital, Toronto, Ontario, Canada; Faculty of Medicine, University of Toronto, Toronto, Ontario, Canada", - "ror_ids": [ - "https://ror.org/03zayce58", - "https://ror.org/03dbr7087" - ] - }, - { - "affiliation": "Key Laboratory for Advanced Materials; School of Chemistry & Molecular Engineering; East China University of Science and Technology; 130 Meilong Road Shanghai 200237 P. R. China", - "ror_ids": [ - "https://ror.org/01vyrm377" - ] - }, - { - "affiliation": "United Kingdom Civil Aviation Authority Medical Department, Gatwick Airport South, UK.", - "ror_ids": [] - }, - { - "affiliation": "Department of Pediatric Orthopedics, Bani Suef University, Beni Suef Egypt", - "ror_ids": [ - "https://ror.org/05pn4yv70" - ] - }, - { - "affiliation": "Statistical Engineering Division; National Institute of Standards and Technology; Gaithersbug; MD; 20899; USA", - "ror_ids": [ - "https://ror.org/05xpvk416" - ] - }, - { - "affiliation": "Research Institute of Water and Environmental Engineering (IIAMA); Universitat Polit\u00e8cnica de Val\u00e8ncia; Valencia Spain", - "ror_ids": [ - "https://ror.org/01460j859" - ] - }, - { - "affiliation": " CNRS, Universit\u00e9 de Montpellier, Montpellier, Languedoc-Roussillon, France", - "ror_ids": [ - "https://ror.org/051escj72" - ] - }, - { - "affiliation": "Tohoku UniversityJapan", - "ror_ids": [ - "https://ror.org/01dq60k83" - ] - }, - { - "affiliation": "From the Department of Physiology, Faculty of Medicine, Universite\u0301 de Montre\u0301al and Institut de Cardiologie de Montre\u0301al (Que\u0301bec), Canada.", - "ror_ids": [ - "https://ror.org/0161xgx34", - "https://ror.org/03vs03g62" - ] - }, - { - "affiliation": "Funda\u00e7\u00e3o Pr\u00f3-Sangue Hemocentro de S\u00e3o Paulo; S\u00e3o Paulo SP Brazil", - "ror_ids": [ - "https://ror.org/05cjk9k86" - ] - }, - { - "affiliation": "School of Medicine, Department of Cardiology, Mu\u011fla S\u0131tk\u0131 Kocman University, Mu\u011fla, Turkey", - "ror_ids": [ - "https://ror.org/05n2cz176" - ] - }, - { - "affiliation": "Northwestern University, Department of Physics & Astronomy, 2145 Sheridan Road, Evanston IL 60208, USA", - "ror_ids": [ - "https://ror.org/000e0be47" - ] - }, - { - "affiliation": "Muroran Research Laboratory, The Japan Steel Works, Ltd.", - "ror_ids": [ - "https://ror.org/00146wx41" - ] - }, - { - "affiliation": "Laboratoire J.A. Dieudonn\u00e9, Universit\u00e9 de Nice Sophia-Antipolis, UMR CNRS 7351, Parc Valrose, F-06108 Nice Cedex 02, France", - "ror_ids": [ - "https://ror.org/0274zdr66", - "https://ror.org/02k9vew78" - ] - }, - { - "affiliation": " Department of Psychology, Sapienza University of Rome, Italy", - "ror_ids": [ - "https://ror.org/02be6w209" - ] - }, - { - "affiliation": "Universidade Federal de S\u00e3o Jo\u00e3o del-Rei, Brasil", - "ror_ids": [ - "https://ror.org/03vrj4p82" - ] - }, - { - "affiliation": "School of Chemical Engineering, Sungkyunkwan University, 16419 Suwon, Korea", - "ror_ids": [ - "https://ror.org/04q78tk20" - ] - }, - { - "affiliation": " a Security Policy Studies , The Elliott School of International Affairs, George Washington University , 1957 E Street, NW, Washington , DC , 20052 , USA", - "ror_ids": [ - "https://ror.org/00y4zzh67" - ] - }, - { - "affiliation": "Telethon Kids Institute; The University of Western Australia; Australia", - "ror_ids": [ - "https://ror.org/01dbmzx78", - "https://ror.org/047272k79" - ] - }, - { - "affiliation": "University of East London, UK", - "ror_ids": [ - "https://ror.org/057jrqr44" - ] - }, - { - "affiliation": "Cawthron Institute", - "ror_ids": [ - "https://ror.org/03sffqe64" - ] - }, - { - "affiliation": "School of Physics and Astronomy; University of Minnesota, Twin Cities; Minneapolis Minnesota USA", - "ror_ids": [ - "https://ror.org/017zqws13" - ] - }, - { - "affiliation": "Institute for Electric Light Sources, Fudan University, Shanghai 200433, China", - "ror_ids": [ - "https://ror.org/013q1eq08" - ] - }, - { - "affiliation": "Department of Psychological Sciences, Birkbeck, University of London", - "ror_ids": [ - "https://ror.org/04cw6st05" - ] - }, - { - "affiliation": "Institute of Organic Chemistry and Biochemistry; Czech Academy of Sciences; Flemingovo n\u00e1m. 2 166\u200910 Prague 6 Czech Republic", - "ror_ids": [ - "https://ror.org/04nfjn472", - "https://ror.org/053avzc18" - ] - }, - { - "affiliation": " Department of General Surgery, Erasmus Medical Centre, Rotterdam, The Netherlands", - "ror_ids": [] - }, - { - "affiliation": "The University of Akron", - "ror_ids": [ - "https://ror.org/02kyckx55" - ] - }, - { - "affiliation": "Director of BMABDORT, Orthopedic Surgeon, private practice in S\u00e3o Paulo", - "ror_ids": [] - }, - { - "affiliation": "Department of Cardiology, University Hospital Eppendorf, Hamburg, FRG.", - "ror_ids": [] - }, - { - "affiliation": "Division of Hematology; Cincinnati Children's Hospital Medical Center; Cincinnati OH USA", - "ror_ids": [ - "https://ror.org/01hcyya48" - ] - }, - { - "affiliation": "Klinik f\u00fcr Innere Medizin, Bethesda Krankenhaus Bergedorf, Hamburg", - "ror_ids": [] - }, - { - "affiliation": "Universidad de Guadalajara, Centro Universitario de los Lagos, Av. Enrique D\u00edaz de Le\u00f3n 1144, Col. Paseos de la monta\u00f1a, Lagos de Moreno 47460, Jalisco, Mexico", - "ror_ids": [ - "https://ror.org/043xj7k26" - ] - }, - { - "affiliation": "Department of Internal Medicine, School of Medicine, Keio University, Tokyo, Japan.", - "ror_ids": [ - "https://ror.org/02kn6nx58" - ] - }, - { - "affiliation": "Technical University of Sofia, Bulgaria", - "ror_ids": [ - "https://ror.org/052prhs50" - ] - }, - { - "affiliation": "Department of Ophthalmology, Copenhagen University Hospital Rigshospitalet, Glostrup, Denmark", - "ror_ids": [ - "https://ror.org/03mchdq19" - ] - }, - { - "affiliation": "Department of Internal Medicine, Istanbul University Cerrahpa\u015fa Medical Faculty Hospital, Istanbul, Turkey", - "ror_ids": [ - "https://ror.org/01dzn5f42" - ] - }, - { - "affiliation": "Department of Psychology, University of North Texas, Denton, Texas, Senior Psychologist and Coordinator of Research, METFORS/Clarke Institute of Psychiatry, University of Toronto, Toronto, Ontario.", - "ror_ids": [ - "https://ror.org/00v97ad02" - ] - }, - { - "affiliation": "From the Department of Pathology, University of California at San Diego, La Jolla, California.", - "ror_ids": [ - "https://ror.org/0168r3w48" - ] - }, - { - "affiliation": "Faculty of School of Science and Technology, Gunma University", - "ror_ids": [ - "https://ror.org/046fm7598" - ] - }, - { - "affiliation": "Department of Zoology; Bio21 Institute; The University of Melbourne; Parkville; Vic.; 3010; Australia", - "ror_ids": [ - "https://ror.org/01ej9dk98" - ] - }, - { - "affiliation": "Visiting Professor of Economics, Princeton University", - "ror_ids": [ - "https://ror.org/00hx57361" - ] - }, - { - "affiliation": "Fertivitro Centro de Reprodu\u00e7\u00e3o Humana; Human Reproduction Center; Av. Indianopolis 843 B. Moema S\u00e3o Paulo Brazil", - "ror_ids": [] - }, - { - "affiliation": "Dept. of Const. Eng., National Taiwan Univ. of Sci. and Tech.", - "ror_ids": [ - "https://ror.org/00q09pe49" - ] - }, - { - "affiliation": "Centro de Ecolog\u00eda\rQu\u00edmica\rAgr\u00edcola, Instituto Agroforestal del Mediterr\u00e1neo, Universidad Polit\u00e9cnica de Valencia, Camino\rde Vera s/n, 46022 Valencia, Spain", - "ror_ids": [ - "https://ror.org/01460j859" - ] - }, - { - "affiliation": "University of New South Wales (Australia)", - "ror_ids": [ - "https://ror.org/03r8z3t63" - ] - }, - { - "affiliation": "Department of Ophthalmology of Shanghai Changzheng Hospital, Second Military Medical University, Shanghai, China.", - "ror_ids": [ - "https://ror.org/0103dxn66", - "https://ror.org/04tavpn47" - ] - }, - { - "affiliation": " a Department of Chemistry , Eastern Kentucky University , Richmond , KY , 40475", - "ror_ids": [ - "https://ror.org/012xks909" - ] - }, - { - "affiliation": "\n Lancaster", - "ror_ids": [] - }, - { - "affiliation": "State Key Laboratory of Bioreactor Engineering, Shanghai Key Laboratory of New Drug Design, School of Pharmacy, East China University of Science & Technology, Shanghai 200237, China", - "ror_ids": [ - "https://ror.org/01vyrm377" - ] - }, - { - "affiliation": "Tokyo Women's Medical University; Tokyo Japan", - "ror_ids": [ - "https://ror.org/03kjjhe36" - ] - }, - { - "affiliation": "Jiangsu Key Laboratory of\rDrug Discovery for Metabolic Diseases and State Key Laboratory of\rNatural Medicines, China Pharmaceutical University, 24 Tongjia\rXiang, Nanjing 210009, China", - "ror_ids": [ - "https://ror.org/01sfm2718" - ] - }, - { - "affiliation": "UNESP, Brasil", - "ror_ids": [ - "https://ror.org/00987cb86" - ] - }, - { - "affiliation": "Neuroscience Research Australia, The University of New South Wales, Sydney, Australia", - "ror_ids": [ - "https://ror.org/01g7s6g79", - "https://ror.org/03r8z3t63" - ] - }, - { - "affiliation": "Department of Gastroenterology and Hepatology; VU University Medical Centre; Amsterdam The Netherlands", - "ror_ids": [ - "https://ror.org/00q6h8f30" - ] - }, - { - "affiliation": "Zentrum f\u00fcr Sonnenenergie- und Wasserstoff-Forschung Baden-W\u00fcrttemberg (ZSW); Industriestra\u00dfe 6 70565 Stuttgart Germany", - "ror_ids": [ - "https://ror.org/014x8q810" - ] - }, - { - "affiliation": "Biological Control Laboratory; UTFPR - Federal University of Technology - Parana; CEP 85660-000 Dois Vizinhos Parana Brazil", - "ror_ids": [ - "https://ror.org/002v2kq79" - ] - }, - { - "affiliation": "FMRIB Centre for Functional MRI of the Brain; John Radcliffe Hospital, University of Oxford; Oxford United Kingdom", - "ror_ids": [ - "https://ror.org/0172mzb45", - "https://ror.org/0080acb59", - "https://ror.org/052gg0110" - ] - }, - { - "affiliation": " Washington, D.C.", - "ror_ids": [] - }, - { - "affiliation": "Center for Crystal Research and Development", - "ror_ids": [] - }, - { - "affiliation": "Academic Model Providing Access to Healthcare (AMPATH), Primary Healthcare, Eldoret, Kenya", - "ror_ids": [] - }, - { - "affiliation": "University of Dayton, Ohio", - "ror_ids": [ - "https://ror.org/021v3qy27" - ] - }, - { - "affiliation": "Department of Pediatrics; Wonkwang University; Sanbon Medical Center; Sanbon Korea", - "ror_ids": [ - "https://ror.org/006776986" - ] - }, - { - "affiliation": "Department of Allergology, S. Pertini Hospital, Rome, Italy", - "ror_ids": [] - }, - { - "affiliation": " Agnes Scott College", - "ror_ids": [ - "https://ror.org/05pgk5e03" - ] - }, - { - "affiliation": "Tishlub House, Bedford, NY 10506-0507, USA", - "ror_ids": [] - }, - { - "affiliation": "EBARA Corporation", - "ror_ids": [] - }, - { - "affiliation": "Central Research Laboratory, Hitachi, Ltd.", - "ror_ids": [] - }, - { - "affiliation": "GP Registrar Training Scheme, Nottingham", - "ror_ids": [] - }, - { - "affiliation": " Department of Statistics, Ewha Womans University, Seoul, Republic of Korea; ", - "ror_ids": [ - "https://ror.org/053fp5c05" - ] - }, - { - "affiliation": "Head of School, School of Health Studies, Gibraltar Health Authority, Gibraltar", - "ror_ids": [ - "https://ror.org/02srfgm34" - ] - }, - { - "affiliation": "School of Chemistry and Chemical Engineering; Huazhong University of Science and Technology; 430074 Wuhan China", - "ror_ids": [ - "https://ror.org/00p991c53" - ] - }, - { - "affiliation": "Dignity Health, Santa Maria, CA 93458, USA", - "ror_ids": [ - "https://ror.org/05c9r4685" - ] - }, - { - "affiliation": "Brown University", - "ror_ids": [ - "https://ror.org/05gq02987" - ] - }, - { - "affiliation": "Department of Civil and Environmental Engineering; University of Maryland; College Park MD USA", - "ror_ids": [ - "https://ror.org/047s2c258" - ] - }, - { - "affiliation": "College of Chemistry and Molecular Engineering, Peking University, Beijing 100871, China, Institute of Geophysical and Geochemical Exploration, Chinese Academy of Geological Sciences, Langfang 065000, China", - "ror_ids": [ - "https://ror.org/02v51f717", - "https://ror.org/02gp4e279" - ] - }, - { - "affiliation": "Dana-Farber Cancer Institute, Boston, MA, USA", - "ror_ids": [ - "https://ror.org/02jzgtq86" - ] - }, - { - "affiliation": "Instituto de Microbiolog\u00eda Bioqu\u00edmica, CSIC/Universidad de Salamanca and Departamento de Microbiolog\u00eda y Gen\u00e9tica, Universidad de Salamanca, Campus Miguel de Unamuno, 37007 Salamanca, Spain", - "ror_ids": [ - "https://ror.org/02f40zc51" - ] - }, - { - "affiliation": "University of Toledo, USA", - "ror_ids": [ - "https://ror.org/01pbdzh19" - ] - }, - { - "affiliation": "Departamento de Qu\u00edmica Fundamental, Universidade Federal de Pernambuco, 50670-901 Recife, Pernambuco, Brazil", - "ror_ids": [ - "https://ror.org/047908t24" - ] - }, - { - "affiliation": "Divisione di Urologia.", - "ror_ids": [] - }, - { - "affiliation": "Institute for Biotechnology and Bioengineering, Centre for Biological Engineering; Universidade do Minho; Campus de Gualtar 4710-057 Braga Portugal", - "ror_ids": [ - "https://ror.org/05ws8g470", - "https://ror.org/037wpkx04" - ] - }, - { - "affiliation": "Department of Plant Protection, Faculty of Agriculture, University of Kurdistan, P.O. Box 416, Sanandaj, Iran", - "ror_ids": [ - "https://ror.org/04k89yk85" - ] - }, - { - "affiliation": "Karolinska Institute, Department of Clinical Science and Education, S\u00f6dersjukhuset, Stockholm, Sweden", - "ror_ids": [ - "https://ror.org/056d84691", - "https://ror.org/00ncfk576" - ] - }, - { - "affiliation": "Department of Internal Medicine and Radboud Center for Infectious diseases (RCI); Radboud University Nijmegen Medical Centre; Nijmegen The Netherlands", - "ror_ids": [ - "https://ror.org/05wg1m734" - ] - }, - { - "affiliation": "The Kimmel Cancer Center; Thomas Jefferson University; Philadelphia PA USA", - "ror_ids": [ - "https://ror.org/010h6g454", - "https://ror.org/00ysqcn41" - ] - }, - { - "affiliation": "Department of Obstetrics and Gynecology, East-West Neo Medical Center, Kyung Hee University, Seoul, Korea.", - "ror_ids": [ - "https://ror.org/053d97e59", - "https://ror.org/01zqcg218" - ] - }, - { - "affiliation": "HNO-Klinik, Evangelisches Krankenhaus D\u00fcsseldorf, D\u00fcsseldorf", - "ror_ids": [ - "https://ror.org/036j3hh72" - ] - }, - { - "affiliation": "Handan Polytechnic College", - "ror_ids": [ - "https://ror.org/00vna7491" - ] - }, - { - "affiliation": "Community Oncology and Prevention Trials Research Group, National Cancer Institute, National Institutes of Health, Bethesda, Maryland.", - "ror_ids": [ - "https://ror.org/040gcmg81", - "https://ror.org/01cwqze88" - ] - }, - { - "affiliation": "Zhuangjiang Hospital, Southern Medical University; Department of Gastroenterology and Hepatology; NO. 253 Middle Industry Avenue Guangzhou Guangdong China 510280", - "ror_ids": [ - "https://ror.org/01vjw4z39" - ] - }, - { - "affiliation": "Department of Biological Sciences; Al al-Bayt University; Al-Mafraq Jordan", - "ror_ids": [ - "https://ror.org/028jh2126" - ] - }, - { - "affiliation": "Service de P\u00e9diatrie G\u00e9n\u00e9rale; H\u00f4pital Robert Debr\u00e9; Assistance Publique-H\u00f4pitaux de Paris; Paris France", - "ror_ids": [ - "https://ror.org/02dcqy320", - "https://ror.org/00pg5jh14" - ] - }, - { - "affiliation": "Ghent U.", - "ror_ids": [ - "https://ror.org/00cv9y106" - ] - }, - { - "affiliation": " Department of Chemical Engineering, Sahand University of Technology, Tabriz, Iran", - "ror_ids": [ - "https://ror.org/03wdrmh81" - ] - }, - { - "affiliation": "Department of Biosciences and Nutrition; Karolinska Institutet; Huddinge SE-141 83 Sweden", - "ror_ids": [ - "https://ror.org/056d84691" - ] - }, - { - "affiliation": "EPAMIG", - "ror_ids": [ - "https://ror.org/034bdyc78" - ] - }, - { - "affiliation": "Universidade do Rio de Janeiro", - "ror_ids": [ - "https://ror.org/03490as77" - ] - }, - { - "affiliation": "Dept of Forest Ecosystems and Society; Oregon State University; Corvallis, OR USA", - "ror_ids": [ - "https://ror.org/00ysfqy60" - ] - }, - { - "affiliation": "Department of Clinical Pharmacology; Sahlgrenska University Hospital; Gothenburg Sweden", - "ror_ids": [ - "https://ror.org/04vgqjj36" - ] - }, - { - "affiliation": "University of Bern, Sidlerstrasse 5, 3012 Bern, Switzerland", - "ror_ids": [ - "https://ror.org/02k7v4d05" - ] - }, - { - "affiliation": "University of Chinese Academy of Sciences, Beijing 100049, People\u2019s Republic of China", - "ror_ids": [ - "https://ror.org/05qbk4x57" - ] - }, - { - "affiliation": "Department of Environmental Science and Analytical Chemistry; Stockholm University; Stockholm Sweden", - "ror_ids": [ - "https://ror.org/05f0yaq80" - ] - }, - { - "affiliation": "Wonkwang Research Institute for Food Industry, Iksan 570-749, Republic of Korea", - "ror_ids": [] - }, - { - "affiliation": "University of Erlangen-N\u00fcrnberg, Germany", - "ror_ids": [ - "https://ror.org/00f7hpc57" - ] - }, - { - "affiliation": "Unit of Pharmacology, Department of Basic Medical Sciences, Faculty of Medicine and Health Sciences, NFOC Group, Universitat Rovira i Virgili, Reus, Spain", - "ror_ids": [ - "https://ror.org/00g5sqv46" - ] - }, - { - "affiliation": "Transplantation and Liver Surgery Clinic; Helsinki University Hospital, Helsinki University; Helsinki Finland", - "ror_ids": [ - "https://ror.org/040af2s02", - "https://ror.org/02e8hzf44" - ] - }, - { - "affiliation": "Port Said University", - "ror_ids": [ - "https://ror.org/01vx5yq44" - ] - }, - { - "affiliation": "Private Practice, Athens, Georgia", - "ror_ids": [] - }, - { - "affiliation": "Department of Metallurgy, Faculty of Engineering, Osaka University", - "ror_ids": [ - "https://ror.org/035t8zc32" - ] - }, - { - "affiliation": "Graduate School of Science and Engineering Ibaraki University", - "ror_ids": [ - "https://ror.org/00sjd5653" - ] - }, - { - "affiliation": "Department of Vertebrate Zoology, National Museum of Natural History, Smithsonian Institution, Washington, DC 20560-0162, USA", - "ror_ids": [ - "https://ror.org/00cz47042", - "https://ror.org/01pp8nd67" - ] - }, - { - "affiliation": " a Grange", - "ror_ids": [] - }, - { - "affiliation": "University of South Florida Sarasota-Manatee; USA", - "ror_ids": [ - "https://ror.org/0062skg93" - ] - }, - { - "affiliation": "Department of Neurology, The First Affiliated Hospital of Soochow University, Suzhou, China", - "ror_ids": [ - "https://ror.org/051jg5p78" - ] - }, - { - "affiliation": "Departamento de Biotecnolog\u00eda e Ingenier\u00eda de Alimentos, Centro de Biotecnolog\u00eda. Tecnol\u00f3gico de Monterrey, Av. Eugenio Garza Sada 2501 Sur, CP 64849, Monterrey, N.L. M\u00e9xico.", - "ror_ids": [] - }, - { - "affiliation": "GlaxoSmithKline Pharmaceuticals, Stevenage, UK", - "ror_ids": [] - }, - { - "affiliation": "Faculty of Medicine; Menoufia University Hospitals; Shebin El-Kom Egypt", - "ror_ids": [ - "https://ror.org/03sq8r703" - ] - }, - { - "affiliation": "Department of Pharmacological and Pharmaceutical Sciences; College of Pharmacy; University of Houston; Houston TX USA", - "ror_ids": [ - "https://ror.org/048sx0r50" - ] - }, - { - "affiliation": "From the Departments of Pediatrics and Surgery of the New York Hospital-Cornell University Medical Center, and from the Rockefeller University, New York, New York.", - "ror_ids": [ - "https://ror.org/05bnh6r87", - "https://ror.org/0420db125" - ] - }, - { - "affiliation": "University of Zurich, Zurich, Switzerland", - "ror_ids": [ - "https://ror.org/02crff812" - ] - }, - { - "affiliation": "Population Program, Institute of Behavioral Science; University of Colorado; Boulder United States of America", - "ror_ids": [ - "https://ror.org/02ttsq026" - ] - }, - { - "affiliation": "The Dental Clinic, Hospital of Yawata Seitetsusho", - "ror_ids": [] - }, - { - "affiliation": "Institute of Functional Nano & Soft Materials (FUNSOM)", - "ror_ids": [] - }, - { - "affiliation": " Centre for Innovation, Bergen University College, Bergen, Norway", - "ror_ids": [ - "https://ror.org/03zga2b32" - ] - }, - { - "affiliation": "School of Biological Sciences; University of Wales; Deiniol Road Bangor Gwynedd LL57 2UW UK", - "ror_ids": [ - "https://ror.org/01se4f844" - ] - }, - { - "affiliation": "Department of Obstetrics and Gynecology, University of Washington, Seattle, WA", - "ror_ids": [ - "https://ror.org/00cvxb145" - ] - }, - { - "affiliation": "Department of Radiology, Wonkwang University School of Medicine, Iksan 570-711, Korea.", - "ror_ids": [ - "https://ror.org/006776986" - ] - }, - { - "affiliation": "Department\rof Materials Science and Engineering, National Chiao Tung University, Hsinchu 300, Taiwan", - "ror_ids": [ - "https://ror.org/00se2k293" - ] - }, - { - "affiliation": "Department of Medicine, University of California, San Diego, La Jolla 92093\u20130623.", - "ror_ids": [ - "https://ror.org/0168r3w48" - ] - }, - { - "affiliation": "Department of Statistics, Oklahoma State University, Stillwater, Oklahoma", - "ror_ids": [ - "https://ror.org/01g9vbr38" - ] - }, - { - "affiliation": "US Environmental Protection Agency, Office of Research and Development, Ecological Exposure Research Division; Cincinnati; Ohio; USA", - "ror_ids": [ - "https://ror.org/03tns0030" - ] - }, - { - "affiliation": "Lever Brothers Company Research Center; Edgewater New Jersey", - "ror_ids": [] - }, - { - "affiliation": "College of Resources and Environmental Sciences", - "ror_ids": [] - }, - { - "affiliation": "National Wildlife Health Center, Madison, Wisconsin, USA", - "ror_ids": [ - "https://ror.org/038d10y34" - ] - }, - { - "affiliation": "General Clinical Research Unit, Mater Misericordiae University Hospital, School of Medicine and Medical Sciences, University College Dublin, Dublin 7, Ireland.", - "ror_ids": [ - "https://ror.org/040hqpc16", - "https://ror.org/05m7pjf47" - ] - }, - { - "affiliation": "School of Dentistry, University of California, Los Angeles, California.", - "ror_ids": [ - "https://ror.org/046rm7j60" - ] - }, - { - "affiliation": "Ohio University", - "ror_ids": [ - "https://ror.org/01jr3y717" - ] - }, - { - "affiliation": "Antiviral Gene Therapy Research Unit; School of Pathology; Health Sciences Faculty; University of the Witwatersrand; Johannesburg; South Africa", - "ror_ids": [ - "https://ror.org/03rp50x72" - ] - }, - { - "affiliation": "Departments of Clinical Pharmacology and Discovery Medicine, GlaxoSmithKline, Collegeville, Pennsylvania.", - "ror_ids": [] - }, - { - "affiliation": "The International Centre for Ecohydraulics Research, Faculty of Engineering and the Environment; University of Southampton; Southampton UK", - "ror_ids": [ - "https://ror.org/01ryk1543" - ] - }, - { - "affiliation": "Privatklinik Meiringen AG, Meiringen und Zentrum f\u00fcr Translationale Forschung, Universit\u00e4tsklinik f\u00fcr Psychiatrie und Psychotherapie, Universit\u00e4t Bern", - "ror_ids": [ - "https://ror.org/00tbqf005", - "https://ror.org/02k7v4d05" - ] - }, - { - "affiliation": "Notre Dame University", - "ror_ids": [ - "https://ror.org/04mwhg379" - ] - }, - { - "affiliation": " c Institute of Electromagnetic Theory and Microwave Technology Southwest Jiaotong University P.O. Box 63, Chengdu 610031, P.R. China", - "ror_ids": [ - "https://ror.org/00hn7w693" - ] - }, - { - "affiliation": "Massachusetts Institute of Technology, Cambridge, MA, USA", - "ror_ids": [ - "https://ror.org/042nb2s44" - ] - }, - { - "affiliation": "Center for Nanoscale Science and Engineering, North Dakota State University, Fargo, ND 58102, USA", - "ror_ids": [ - "https://ror.org/05h1bnb22" - ] - }, - { - "affiliation": "Department of Chemistry, Missouri University of S & T, Rolla, MO 65409, USA;", - "ror_ids": [ - "https://ror.org/00scwqd12" - ] - }, - { - "affiliation": "Dresden University of Technology", - "ror_ids": [ - "https://ror.org/042aqky30" - ] - }, - { - "affiliation": "The New School for Social Research", - "ror_ids": [ - "https://ror.org/02tvcev59" - ] - }, - { - "affiliation": "PRIO", - "ror_ids": [ - "https://ror.org/04dx54y73" - ] - }, - { - "affiliation": " b The department of pedagogy and methodology of primary education", - "ror_ids": [] - }, - { - "affiliation": "Medicine, University of Michigan Medical Center, Ann Arbor, Michigan 48109", - "ror_ids": [ - "https://ror.org/00jmfr291" - ] - }, - { - "affiliation": "National Institute of Arthritis and Musculoskeletal and Skin Diseases, NIH; Bethesda Maryland", - "ror_ids": [ - "https://ror.org/006zn3t30" - ] - }, - { - "affiliation": "Department of Histology and Embryology, School of Medicine with the Division of Dentistry, Medical University of Silesia, 41-800 Zabrze, Poland", - "ror_ids": [ - "https://ror.org/005k7hp45" - ] - }, - { - "affiliation": "Blood Bank of Suwon, Korea.", - "ror_ids": [] - }, - { - "affiliation": "Centers for Disease Control and Prevention, Atlanta, GA, USA", - "ror_ids": [ - "https://ror.org/042twtr12" - ] - }, - { - "affiliation": " a Lehrstuhl f\u00fcr Operations Management , Friedrich-Schiller-Universit\u00e4t Jena , Carl-Zei\u00df-Stra\u00dfe 3, D-07743 Jena, Germany", - "ror_ids": [ - "https://ror.org/05qpz1x62" - ] - }, - { - "affiliation": "Department of Electrical Engineering; Nagaoka University of Technology; Nagaoka; Niigata; Japan", - "ror_ids": [ - "https://ror.org/00ys1hz88" - ] - }, - { - "affiliation": " Division of Marine Mammal Research and Conservation, Harbor Branch Oceanographical Institution, 5600 US 1 North, Ft. Pierce, Florida 34946, USA", - "ror_ids": [ - "https://ror.org/05gzqyx59" - ] - }, - { - "affiliation": "Faculty of Science; Kunming University of Science and Technology; Jingming South Road 727 650500 Kunming China", - "ror_ids": [ - "https://ror.org/035rhx828" - ] - }, - { - "affiliation": "Oslo University Hospital, Center for Clinical Heart Research, Ulleval, Oslo, Norway", - "ror_ids": [ - "https://ror.org/00j9c2840" - ] - }, - { - "affiliation": " Dipartimento di Scienze di Sanit\u00e0 Pubblica, Universit\u00e0 \u201cLa Sapienza,\u201d CIRMS, 00185, Roma, Italy", - "ror_ids": [] - }, - { - "affiliation": "Zhejiang Shengda Steel Tower Co., Ltd.", - "ror_ids": [] - }, - { - "affiliation": "Medical Oncology and Immunotherapy, University Hospital of Siena, Siena, Italy;", - "ror_ids": [] - }, - { - "affiliation": "Department of Radiology, Soonchunhyang University Bucheon Hospital, Soonchunhyang University College of Medicine, Bucheon, Republic of Korea", - "ror_ids": [ - "https://ror.org/03qjsrb10" - ] - }, - { - "affiliation": "University of Tehran, Iran", - "ror_ids": [ - "https://ror.org/05vf56z40" - ] - }, - { - "affiliation": "Department of Pediatric Orthopedics, Cairo University, Cairo Egypt", - "ror_ids": [ - "https://ror.org/03q21mh05" - ] - }, - { - "affiliation": "Institute for Chemical, Enviromental and Biological Engineering, Technical University Vienna, Vienna, Austria", - "ror_ids": [] - }, - { - "affiliation": "Japanese Red Cross Medcl Ctr, Tokyo, Japan; National Kyushu Cancer Ctr, Fukuoka, Japan; Fukuoka Univ Hosp, Fukuoka, Japan; National Kumamoto Medcl Ctr, Kumamoto, Japan; Yokkaichi Municipal Hosp, Yokkaichi, Japan; National Kyushu Medcl Ctr, Fukuoka, Japan; Chiba Cancer Ctr, Chiba, Japan; Tokyo Metropolitan Geriatric Medcl Ctr, Tokyo, Japan", - "ror_ids": [ - "https://ror.org/01gezbc84", - "https://ror.org/00d3mr981", - "https://ror.org/05sy5w128", - "https://ror.org/03k36hk88" - ] - }, - { - "affiliation": "Department of Psychiatry, Yale University School of Medicine, New Haven, CT, USA", - "ror_ids": [ - "https://ror.org/03v76x132" - ] - }, - { - "affiliation": "Institut Pprime, UPR 3346 CNRS, ENSMA and University of Poitiers, 86961 Futuroscope, France", - "ror_ids": [ - "https://ror.org/05vjdsn22", - "https://ror.org/04xhy8q59" - ] - }, - { - "affiliation": "University of Pennsylvania", - "ror_ids": [ - "https://ror.org/00b30xv10" - ] - }, - { - "affiliation": "Department of Biology, Faculty of Science, Kyushu University; Fukuoka 812-81 Japan", - "ror_ids": [ - "https://ror.org/00p4k0j84" - ] - }, - { - "affiliation": "Department of Orthopedic Surgery, Seoul Sacred Heart General Hospital, Wangsan-Ro 259, Dongdaemun-gu, Seoul 02488, Republic of Korea", - "ror_ids": [] - }, - { - "affiliation": "UESB", - "ror_ids": [ - "https://ror.org/02rg6ka44" - ] - }, - { - "affiliation": "Cambridge Health Alliance, Cambridge, Massachusetts, U.S.A.", - "ror_ids": [ - "https://ror.org/059c3mv67" - ] - }, - { - "affiliation": "Japan Synchrotron Radiation Research Institute, Hyogo 679-5198", - "ror_ids": [ - "https://ror.org/01xjv7358" - ] - }, - { - "affiliation": "2nd Department of Internal Medicine, School of Medicine, Kyorin University, Tokyo, Japan", - "ror_ids": [ - "https://ror.org/0188yz413" - ] - }, - { - "affiliation": "University of Kansas", - "ror_ids": [ - "https://ror.org/001tmjg57" - ] - }, - { - "affiliation": "Bryant University, USA", - "ror_ids": [ - "https://ror.org/01gk44f56" - ] - }, - { - "affiliation": "Centre Hospitalier Universitaire Limoges, Limoges, France", - "ror_ids": [ - "https://ror.org/01tc2d264" - ] - }, - { - "affiliation": "Department of Histopathology, Manor Hospital NHS Trust, Walsall WS2 9PS, UK", - "ror_ids": [ - "https://ror.org/05sq6ae13" - ] - }, - { - "affiliation": " Division of State Affairs Monitoring, Office of the President, Seoul, Republic of Korea", - "ror_ids": [] - }, - { - "affiliation": "Institute for Microstructural Sciences; National Research Council Canada; Building M50, 1200 Montreal Road; Ottawa; Ontario; Canada; K1A 0R6", - "ror_ids": [ - "https://ror.org/03v7h1165", - "https://ror.org/04mte1k06" - ] - }, - { - "affiliation": "Beijing Municipal Institute of Labour Protection, Beijing 100054, China", - "ror_ids": [ - "https://ror.org/050ct8k07" - ] - }, - { - "affiliation": "University of Victoria, Canada", - "ror_ids": [ - "https://ror.org/04s5mat29" - ] - }, - { - "affiliation": "Tokkyokiki Corp.", - "ror_ids": [] - }, - { - "affiliation": "Professor, Department of Agricultural Economics, Ghent University, Coupure Links 653, 9000 Gent, Belgium", - "ror_ids": [ - "https://ror.org/00cv9y106" - ] - }, - { - "affiliation": "Center for Cancer Research, National Cancer Institute, National Institutes of Health, Bethesda, Maryland.", - "ror_ids": [ - "https://ror.org/05bjen692", - "https://ror.org/040gcmg81", - "https://ror.org/01cwqze88" - ] - }, - { - "affiliation": "Hospital for Special Surgery, Department of Orthopaedic Surgery, New York, New York", - "ror_ids": [ - "https://ror.org/03zjqec80" - ] - }, - { - "affiliation": "Huazhong University of Science and Technology", - "ror_ids": [ - "https://ror.org/00p991c53" - ] - }, - { - "affiliation": "Department of Statistics; Texas A&M University; College Station TX USA", - "ror_ids": [ - "https://ror.org/01f5ytq51" - ] - }, - { - "affiliation": "Department of Mechanical Engineering, University of Kurdistan, Sanandaj, Iran", - "ror_ids": [ - "https://ror.org/04k89yk85" - ] - }, - { - "affiliation": "University of Leuven, Belgium", - "ror_ids": [ - "https://ror.org/05f950310" - ] - }, - { - "affiliation": " Department of Genetic Toxicology and Cancer Biology, National Institute of Biology, Ljubljana, Slovenia", - "ror_ids": [ - "https://ror.org/03s5t0r17" - ] - }, - { - "affiliation": "Department of Surgery; Division of Neurosurgery; University of Toronto; Toronto Western Hospital; Toronto; Ontario; Canada", - "ror_ids": [ - "https://ror.org/03dbr7087", - "https://ror.org/03qv8yq19" - ] - }, - { - "affiliation": "University of California, Berkeley, Berkeley, CA, USA", - "ror_ids": [ - "https://ror.org/01an7q238" - ] - }, - { - "affiliation": " Molecular Medicine Program; Department of Experimental Oncology; European Institute of Oncology; Milano, Italy", - "ror_ids": [ - "https://ror.org/02vr0ne26" - ] - }, - { - "affiliation": "From the Division of Neuropsychology and Behavioral Neurology (M.T.W., A.D.E., T.K., M.H.) and Department of Neurology (M.G., S.J.), Otto-von-Guericke University, Magdeburg, Germany.", - "ror_ids": [ - "https://ror.org/00ggpsq73" - ] - }, - { - "affiliation": "Institut f\u00fcr Werkstoffkunde; Leibniz Universit\u00e4t Hannover, An der Universit\u00e4t 2; D-30823; Garbsen; Germany", - "ror_ids": [ - "https://ror.org/0304hq317" - ] - }, - { - "affiliation": " Department of Earth and Environmental Sciences, University of Pavia, Pavia, Italy", - "ror_ids": [ - "https://ror.org/00s6t1f81" - ] - }, - { - "affiliation": "J. Heyrovsk\u00fd Institute of Physical Chemistry of AS CR; v.v.i. Department of Biomimetic Electrochemistry; Dolejskova 3 Prague Czech Republic", - "ror_ids": [ - "https://ror.org/02sat5y74" - ] - }, - { - "affiliation": "Epidemiology and Biostatistics Unit, Institute of Hygiene, Catholic University of the Sacred Heart, Rome, Italy.", - "ror_ids": [ - "https://ror.org/03h7r5v07" - ] - }, - { - "affiliation": "aNational Center for Injury Prevention and Control, Centers for Disease Control and Prevention, 4770 Buford Highway, NE, MS-F64, Atlanta, GA, 30341, United States of America (USA).", - "ror_ids": [ - "https://ror.org/0015x1k58", - "https://ror.org/042twtr12" - ] - }, - { - "affiliation": "Hospital Universit\u00e1rio Onofre Lopes, Brasil", - "ror_ids": [ - "https://ror.org/00mmnz357" - ] - }, - { - "affiliation": "Ryukoku University", - "ror_ids": [ - "https://ror.org/012tqgb57" - ] - }, - { - "affiliation": "Graduate School of Engineering, Kyushu University", - "ror_ids": [ - "https://ror.org/00p4k0j84" - ] - }, - { - "affiliation": "Quzhou People\u2019s Hospital, Zhejiang, China", - "ror_ids": [ - "https://ror.org/004qehs09" - ] - }, - { - "affiliation": "Departamento de Patologia, Universidade Federal Fluminense, 24033-900 Niter\u00f3i, RJ, Brazil", - "ror_ids": [ - "https://ror.org/02rjhbb08" - ] - }, - { - "affiliation": " a Department of Industrial Engineering & Logistics Management , The Hong Kong University of Science and Technology , Clear Water Bay, Hong Kong , China", - "ror_ids": [ - "https://ror.org/00q4vv597" - ] - }, - { - "affiliation": "Department of Mathematics, The University of Suwon, Gyeonggi-do 445-743, South Korea", - "ror_ids": [ - "https://ror.org/03ysk5e42" - ] - }, - { - "affiliation": "Seagrass Ecology and Physiology Research Group; Department of Ecology, Environment and Plant Sciences; Stockholm University; Stockholm Sweden", - "ror_ids": [ - "https://ror.org/05f0yaq80" - ] - }, - { - "affiliation": "Otsu, Japan", - "ror_ids": [] - }, - { - "affiliation": "University of La Coru\u00f1a, Spain", - "ror_ids": [ - "https://ror.org/01qckj285" - ] - }, - { - "affiliation": "Janet L. Poole, PhD, OTR/L, FAOTA, is Professor and Program Director, Occupational Therapy Graduate Program, University of New Mexico, Albuquerque; jpoole@salud.unm.edu", - "ror_ids": [ - "https://ror.org/05fs6jp91" - ] - }, - { - "affiliation": "\n University of Washington, Seattle, Washington", - "ror_ids": [ - "https://ror.org/00cvxb145" - ] - }, - { - "affiliation": "National Physical Laboratory; Teddington UK", - "ror_ids": [ - "https://ror.org/015w2mp89" - ] - }, - { - "affiliation": "Northwestern Polytechnical University", - "ror_ids": [ - "https://ror.org/01y0j0j86" - ] - }, - { - "affiliation": "Universidade Estadual Paulista, Brasil", - "ror_ids": [ - "https://ror.org/00987cb86" - ] - }, - { - "affiliation": "Faculty of Agriculture, Kyushu University", - "ror_ids": [ - "https://ror.org/00p4k0j84" - ] - }, - { - "affiliation": "Biochemistry Department; Manipal Hospital; 98, HAL Airport Road; Bangalore; 560017; India", - "ror_ids": [ - "https://ror.org/05mryn396" - ] - }, - { - "affiliation": "INSA de LyonIMP@INSA; UMR CNRS 5223; 20 Avenue Albert Einstein, Bat J. Verne Villeurbanne 69621 France", - "ror_ids": [ - "https://ror.org/050jn9y42" - ] - }, - { - "affiliation": "Department of Anatomy, Medical School, University of P\u00e9cs, Hungary", - "ror_ids": [ - "https://ror.org/037b5pv06" - ] - }, - { - "affiliation": "Netherlands Cancer Institute, Department of Pathology, Amsterdam, Netherlands;", - "ror_ids": [ - "https://ror.org/03xqtf034" - ] - }, - { - "affiliation": "Department of Pathogen Biology; Tongji Medical School; Huazhong University of Science and Technology; Wuhan China", - "ror_ids": [ - "https://ror.org/00p991c53" - ] - }, - { - "affiliation": "Department of Chemistry; Columbia University; New York NY 10027 USA", - "ror_ids": [ - "https://ror.org/00hj8s172" - ] - }, - { - "affiliation": " Department of Neurology, Zhejiang Provincial Key Laboratory of Aging and Neurological Disorder Research, First Affiliated Hospital, Wenzhou Medical University, Wenzhou, China", - "ror_ids": [ - "https://ror.org/03cyvdv85" - ] - }, - { - "affiliation": "Universidade Estadual do Cear\u00e1, Brasil", - "ror_ids": [ - "https://ror.org/00sec1m50" - ] - }, - { - "affiliation": "Polymer Chemistry Department, National Center for Radiation Research and Technology, 3 Ahmed El-Zohor St., El-Zohor Distr., Nasr City, P.O. box 29, Cairo, Egypt", - "ror_ids": [] - }, - { - "affiliation": "Former editorial assistant for the Music Educators Journal, is currently traveling in Europe and the Middle East.", - "ror_ids": [] - }, - { - "affiliation": "Ris\u00f8 National Laboratory for Sustainable Energy, Technical University of Denmark4000 Roskilde, Denmark", - "ror_ids": [ - "https://ror.org/04qtj9h94" - ] - }, - { - "affiliation": "Spin Optics Laboratory; St. Petersburg State University; 1, Ulianovskaya str., Petrodvorets, St.\u00a0Petersburg 198504 Russia", - "ror_ids": [ - "https://ror.org/023znxa73" - ] - }, - { - "affiliation": " Department of Cardiology, David Geffen School of Medicine, UCLA, Los Angeles, CA, USA", - "ror_ids": [ - "https://ror.org/00mjfew53" - ] - }, - { - "affiliation": "CSIRO Manufacturing and Materials Technology", - "ror_ids": [ - "https://ror.org/04sx9wp33" - ] - }, - { - "affiliation": "University of Auckland, Auckland, New Zealand", - "ror_ids": [ - "https://ror.org/03b94tp07" - ] - }, - { - "affiliation": "Clinical Science Division, Department of Surgery/Physiology, and Institute of Medical Science, University of Toronto, Toronto M5S 1A8; and Division of Cardiovascular Surgery, The Hospital for Sick Children, Toronto M5G 1X8, Ontario, Canada", - "ror_ids": [ - "https://ror.org/03dbr7087", - "https://ror.org/057q4rt57" - ] - }, - { - "affiliation": "University of Southern California", - "ror_ids": [ - "https://ror.org/03taz7m60" - ] - }, - { - "affiliation": "Australian National University Medical School; Canberra; Australian Capital Territory; Australia", - "ror_ids": [ - "https://ror.org/019wvm592" - ] - }, - { - "affiliation": "Department of Ecology, Lund University223 62 Lund, Sweden", - "ror_ids": [ - "https://ror.org/012a77v79" - ] - }, - { - "affiliation": "Department of Dermatology; H\u00f4pital Claude Huriez; Lille France", - "ror_ids": [ - "https://ror.org/05cpv3t46" - ] - }, - { - "affiliation": "Bren\rSchool of Environmental Science & Management, University of California, Santa Barbara, California 93106, United States", - "ror_ids": [ - "https://ror.org/02t274463" - ] - }, - { - "affiliation": "Laboratory of Epidemiology, Demography, and Biometry, National Institute on Aging, National Institutes of Health, Baltimore, Maryland.", - "ror_ids": [ - "https://ror.org/049v75w11", - "https://ror.org/01cwqze88" - ] - }, - { - "affiliation": "Henan Normal University", - "ror_ids": [ - "https://ror.org/00s13br28" - ] - }, - { - "affiliation": "Institute of Phytochemistry, University Witten-Herdecke", - "ror_ids": [ - "https://ror.org/00yq55g44" - ] - }, - { - "affiliation": "Liver Cancer Institute Zhongshan Hospital; Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Fudan University; Shanghai China", - "ror_ids": [ - "https://ror.org/032x22645", - "https://ror.org/013q1eq08" - ] - }, - { - "affiliation": "Dept.of Radiology Shiohama Hospital Faculty of Medicine Mie University", - "ror_ids": [ - "https://ror.org/01529vy56" - ] - }, - { - "affiliation": "Area Occupational Therapist, Fife Health Board, Priory House, Dunfermline and West Fife Hospital, Dunfermline", - "ror_ids": [] - }, - { - "affiliation": "King Richard Infant School, Leicester", - "ror_ids": [] - }, - { - "affiliation": "CHU La Timone; Marseille France", - "ror_ids": [] - }, - { - "affiliation": "Google & University of Wisconsin-Madison, Madison, WI, USA", - "ror_ids": [ - "https://ror.org/00njsd438", - "https://ror.org/01y2jtd41" - ] - }, - { - "affiliation": "Atat\u00fcrk University, Turkey", - "ror_ids": [ - "https://ror.org/03je5c526" - ] - }, - { - "affiliation": "Department of Biology, Miami University; Oxford Ohio USA", - "ror_ids": [ - "https://ror.org/05nbqxr67" - ] - }, - { - "affiliation": "College of Veterinary Medicine, Northwest A&F University, Key Laboratory of Animal Reproductive Physiology & Embryo Technology, Ministry of Agriculture, Yangling, Shaanxi, People's Republic of China.", - "ror_ids": [ - "https://ror.org/0051rme32" - ] - }, - { - "affiliation": "Institute Biomedical Technology, Gent University, Ghent - Belgium", - "ror_ids": [ - "https://ror.org/00cv9y106" - ] - }, - { - "affiliation": "Johnson Research, Sydney, Australia.", - "ror_ids": [] - }, - { - "affiliation": "Rosemead Graduate School of Psychology, California.", - "ror_ids": [] - }, - { - "affiliation": "Department of Chemistry, Seoul National University, Seoul 08826, South Korea", - "ror_ids": [ - "https://ror.org/04h9pn542" - ] - }, - { - "affiliation": "Dept of Biology and Environment; Univ. of Haifa - Oranim; Tivon Israel", - "ror_ids": [ - "https://ror.org/02f009v59" - ] - }, - { - "affiliation": "Department of Geography; McGill University; Montreal Canada", - "ror_ids": [ - "https://ror.org/01pxwe438" - ] - }, - { - "affiliation": "National Marine Hazard Mitigation Service, 6 Qiwangfenbeilu Road, Haidian District, Beijing 100194, China", - "ror_ids": [] - }, - { - "affiliation": "Department of Chemistry, Hemchandracharya North Gujarat University, Patan-384265, Gujarat, India", - "ror_ids": [ - "https://ror.org/049sxg896" - ] - }, - { - "affiliation": "Department of Internal Medicine, Frankfurt University, Hospital Medical Centre, 60590 Frankfurt, Germany", - "ror_ids": [ - "https://ror.org/02msan859" - ] - }, - { - "affiliation": "Pontif\u00edcia Universidade Cat\u00f3lica do Rio Grande do Sul, Brasil", - "ror_ids": [ - "https://ror.org/025vmq686" - ] - }, - { - "affiliation": "Lapland Hospital District, Rovaniemi, Finland (TSK)", - "ror_ids": [] - }, - { - "affiliation": " University of Pennsylvania ", - "ror_ids": [ - "https://ror.org/00b30xv10" - ] - }, - { - "affiliation": "Department of Child Neurology, Nishi-Niigata Chuo National Hospital, 1-14-1 Masago, Nishi-ku, Niigata, Niigata 950-2085, Japan", - "ror_ids": [ - "https://ror.org/059wef195" - ] - }, - { - "affiliation": "Faculty of Natural Sciences and Mathematics, Sts. Cyril and Methodius University, P.O. Box 162, 1000 Skopje, Macedonia", - "ror_ids": [ - "https://ror.org/02wk2vx54" - ] - }, - { - "affiliation": "Embrapa Monitoramento por Sat\u00e9lite, Brasil", - "ror_ids": [] - }, - { - "affiliation": "Institute of International and Area Studies; Sogang University; Seoul Korea", - "ror_ids": [ - "https://ror.org/056tn4839" - ] - }, - { - "affiliation": "Dana-Farber Cancer Institute, Boston, MA", - "ror_ids": [ - "https://ror.org/02jzgtq86" - ] - }, - { - "affiliation": "University of Virginia Health Sciences Center; Charlottesville Virginia USA", - "ror_ids": [ - "https://ror.org/0153tk833" - ] - }, - { - "affiliation": "Portsmouth, UK", - "ror_ids": [] - }, - { - "affiliation": "Department of Physiology and Biophysics, University of Kentucky, Lexington 40536.", - "ror_ids": [ - "https://ror.org/02k3smh20" - ] - }, - { - "affiliation": "VTT Technical Research Centre of Finland\rLtd., P.O. Box 1000, FI-02044 VTT, Finland", - "ror_ids": [ - "https://ror.org/04b181w54" - ] - }, - { - "affiliation": "School of Biomedical Engineering; Dalhousie University; Halifax Nova Scotia Canada", - "ror_ids": [ - "https://ror.org/01e6qks80" - ] - }, - { - "affiliation": "Universidade Federal de Lavras, Brazil", - "ror_ids": [ - "https://ror.org/0122bmm03" - ] - }, - { - "affiliation": "Dipartimento di Fisica, Universit\u00e0 degli Studi, via Celoria 16, 20133 Milano, Italia", - "ror_ids": [] - }, - { - "affiliation": "Ohio State University Medical Center; Columbus Ohio USA", - "ror_ids": [ - "https://ror.org/00c01js51" - ] - }, - { - "affiliation": "Department of Statistics and Actuarial Science, University of Hong Kong, China", - "ror_ids": [ - "https://ror.org/02zhqgq86" - ] - }, - { - "affiliation": "Harbin institute of Technology", - "ror_ids": [ - "https://ror.org/01yqg2h08" - ] - }, - { - "affiliation": "Department of Geosciences; Princeton University; Princeton NJ 08544 USA", - "ror_ids": [ - "https://ror.org/00hx57361" - ] - }, - { - "affiliation": "Institute of Particle Technology (LFG); University of Erlangen-N\u00fcrnberg; Erlangen Allemagne", - "ror_ids": [ - "https://ror.org/00f7hpc57" - ] - }, - { - "affiliation": "Hebei University of Engineering", - "ror_ids": [ - "https://ror.org/036h65h05" - ] - }, - { - "affiliation": "Department of Psychiatry; Vanderbilt University; Nashville Tennessee USA", - "ror_ids": [ - "https://ror.org/02vm5rt34" - ] - }, - { - "affiliation": " a University of Florida , USA", - "ror_ids": [ - "https://ror.org/02y3ad647" - ] - } -] diff --git a/rorapi/tests/tests_functional/data/dataset_affiliations_crossref_2024_02_19.json b/rorapi/tests/tests_functional/data/dataset_affiliations_crossref_2024_02_19.json new file mode 100644 index 00000000..3bda061c --- /dev/null +++ b/rorapi/tests/tests_functional/data/dataset_affiliations_crossref_2024_02_19.json @@ -0,0 +1,17314 @@ +[ + { + "affiliation": "North China University of Water Resources and Electric Power", + "ror_ids": [ + "https://ror.org/03acrzv41" + ] + }, + { + "affiliation": "Biological Research Laboratories, Nissan Chemical Industries, Ltd., 1470 Shiraoka, Shiraoka, Saitama 349-0294, Japan", + "ror_ids": [ + "https://ror.org/01skwyh03" + ] + }, + { + "affiliation": "Toyohashi Univ. of Tech.", + "ror_ids": [ + "https://ror.org/04ezg6d83" + ] + }, + { + "affiliation": "Aerospace Science & Industry Shenzhen (Group) Co., Ltd,Shenzhen,China", + "ror_ids": [] + }, + { + "affiliation": "Department of Plant Physiology and Crop Production, Federal University of Agriculture, Abeokuta, Nigeria", + "ror_ids": [ + "https://ror.org/050s1zm26" + ] + }, + { + "affiliation": "Ophthalmology; and", + "ror_ids": [] + }, + { + "affiliation": "Complejo Asistencial Universitario de León, Gastroenterology Department, León, Spain", + "ror_ids": [] + }, + { + "affiliation": "Specialist Trainee,Department of Neurology,Royal Hallamshire Hospital,Sheffield S10 2JF, UK.", + "ror_ids": [ + "https://ror.org/00514rc81" + ] + }, + { + "affiliation": "Republican Specialized Scientific and Practical Medical Center for Cardiology", + "ror_ids": [] + }, + { + "affiliation": "Antai College of Economics & Management, Shanghai Jiao Tong University, Shanghai, People's Republic of China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Complex and Distributed IT Systems Technische Universität Berlin Berlin Germany", + "ror_ids": [ + "https://ror.org/03v4gjf40" + ] + }, + { + "affiliation": "Washington Univ in St. Louis, St. Louis, MO", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Department of Automation, China University of Petroleum, Beijing 102200, China", + "ror_ids": [ + "https://ror.org/041qf4r12" + ] + }, + { + "affiliation": "Translational Cardiology, Center for Molecular Medicine, Karolinska Institutet, Stockholm 14186, Sweden", + "ror_ids": [ + "https://ror.org/056d84691" + ] + }, + { + "affiliation": "Univ Paris-Sud, Centre de Neurosciences Paris-Sud, UMR8195, Orsay, F-91405, France", + "ror_ids": [ + "https://ror.org/03xjwb503" + ] + }, + { + "affiliation": "Institute of Biomedical and Genetic Engineering (IBGE) , Islamabad , Pakistan", + "ror_ids": [ + "https://ror.org/05h6f5h95" + ] + }, + { + "affiliation": "Department of Mathematics, Sarvajanik College of Engineering & Technology, Surat 395001, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Pharmacology All India Institute of Medical Sciences Jodhpur India", + "ror_ids": [ + "https://ror.org/05e15a779" + ] + }, + { + "affiliation": "The Jefferiss Wing, Imperial College Healthcare NHS Trust, St Mary's Hospital, London, UK", + "ror_ids": [ + "https://ror.org/056ffv270", + "https://ror.org/01aysdw42" + ] + }, + { + "affiliation": "1Kyungpook National University", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "Department of Molecular Medicine, Sapporo Medical University, Sapporo 060-8556, Japan", + "ror_ids": [ + "https://ror.org/01h7cca57" + ] + }, + { + "affiliation": "IBM Research Division (United States)", + "ror_ids": [ + "https://ror.org/05hh8d621" + ] + }, + { + "affiliation": "School of Education, University of Missouri–Kansas City, Kansas City, MO, USA", + "ror_ids": [ + "https://ror.org/01w0d5g70" + ] + }, + { + "affiliation": "Center for Animal Disease Models, Research Institute for Biomedical Sciences, Tokyo University of Science, Noda-shi, Chiba, Japan", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Dermatology Research Centre, The University of Queensland, School of Medicine, Australia", + "ror_ids": [ + "https://ror.org/00rqy9422" + ] + }, + { + "affiliation": "The summary was prepared by Derek W. Johnson, CFA, Comerica Bank.", + "ror_ids": [ + "https://ror.org/008khdx92" + ] + }, + { + "affiliation": "Theoretical Physics Group, Indian Statistical Institute, Calcutta-700 035, India", + "ror_ids": [ + "https://ror.org/00q2w1j53" + ] + }, + { + "affiliation": "Department of Chemistry and Center for Analytical Instrumentation Development, Purdue University, West Lafayette, IN 47907;", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "MRC Molecular Pathogenesis Group, Department of Medical Microbiology, St Bartholomew’s and The Royal London School of Medicine & Dentistry, Queen Mary and Westfield College, 32 Newark Street, London E1 2AA, UK1", + "ror_ids": [ + "https://ror.org/026zzn846" + ] + }, + { + "affiliation": "BMW AG", + "ror_ids": [ + "https://ror.org/05vs9tj88" + ] + }, + { + "affiliation": "Department of Pure Mathematics, University of Calcutta, 35 Ballygunge Circular Road, Kol-700019, West Bengal, India", + "ror_ids": [ + "https://ror.org/01e7v7w47" + ] + }, + { + "affiliation": "Loyola University Chicago, Chicago, IL.", + "ror_ids": [ + "https://ror.org/04b6x2g63" + ] + }, + { + "affiliation": "University of North Carolina Greensboro Greensboro, North Carolina", + "ror_ids": [ + "https://ror.org/04fnxsj42" + ] + }, + { + "affiliation": "Universidade Estadual Paulista", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "University of Göttingen", + "ror_ids": [ + "https://ror.org/01y9bpm73" + ] + }, + { + "affiliation": "Department of Oncology, Cixi People’s Hospital, Cixi, China", + "ror_ids": [] + }, + { + "affiliation": "From the Institute for Genetics and the Department of Internal Medicine I, University of Cologne, Germany; Department of Pathology, University of Frankfurt, Frankfurt/Main, Germany; and the Institute of Cancer Genetics, Columbia University, New York, NY.", + "ror_ids": [ + "https://ror.org/00rcxh774", + "https://ror.org/00hj8s172", + "https://ror.org/02msan859" + ] + }, + { + "affiliation": "Reproductive Endocrinology Research Center Research Institute for Endocrine Sciences Shahid Beheshti University of Medical Sciences Tehran Iran", + "ror_ids": [ + "https://ror.org/034m2b326", + "https://ror.org/01kpm1136" + ] + }, + { + "affiliation": "School of Science and Engineering, The Chinese University of Hong Kong (Shenzhen) , Shenzhen, 518172 , China", + "ror_ids": [ + "https://ror.org/02d5ks197" + ] + }, + { + "affiliation": "University of Göttingen, Germany", + "ror_ids": [ + "https://ror.org/01y9bpm73" + ] + }, + { + "affiliation": "Neurobiology Research Unit, Copenhagen University Hospital, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/05bpbnx46" + ] + }, + { + "affiliation": "Iowa State College", + "ror_ids": [] + }, + { + "affiliation": "Section of Thoracic and Cardiovascular Surgery, Department of Surgery and Department of Pediatrics, University of Missouri, Columbia, Missouri", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "Hydraulic Engr. U.S. Geological Survey, Washington, D.C.", + "ror_ids": [ + "https://ror.org/035a68863" + ] + }, + { + "affiliation": "Okayama Univ. Graduate School of Natural Science and Technology", + "ror_ids": [ + "https://ror.org/02pc6pc55" + ] + }, + { + "affiliation": "CUKUROVA UNIVERSITY", + "ror_ids": [ + "https://ror.org/05wxkj555" + ] + }, + { + "affiliation": "Xianyang Vocational Technical College, Xianyang, Shaanxi, China", + "ror_ids": [] + }, + { + "affiliation": "Department of Anesthesiology and Pain Medicine, Kangbuk Samsung Hospital, Sungkyunkwan University School of Medicine, Korea.", + "ror_ids": [ + "https://ror.org/013e76m06", + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Kliniken Schmieder Konstanz", + "ror_ids": [ + "https://ror.org/04bkje958" + ] + }, + { + "affiliation": "Soilmoisture Equipment Corp., Goleta, CA 93117, US.", + "ror_ids": [] + }, + { + "affiliation": "Institute of Epidemiology & Preventive Medicine College of Public Health National Taiwan University Taipei Taiwan", + "ror_ids": [ + "https://ror.org/05bqach95" + ] + }, + { + "affiliation": "Georgia State University", + "ror_ids": [ + "https://ror.org/03qt6ba18" + ] + }, + { + "affiliation": "University of Bern/AstraZeneca", + "ror_ids": [ + "https://ror.org/02k7v4d05", + "https://ror.org/04r9x1a08" + ] + }, + { + "affiliation": "Bluepearl Veterinary Partners, Tampa, Florida, United States", + "ror_ids": [] + }, + { + "affiliation": "Agricultural Research Center “Donskoy”", + "ror_ids": [ + "https://ror.org/00hcsjz98" + ] + }, + { + "affiliation": "Mayo Clinic, Rochester, Minnesota 55905", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Departemen Perencanaan Wilayah dan Kota, , Indonesia", + "ror_ids": [] + }, + { + "affiliation": "Tsinghua-Peking Center for Life Sciences, Tsinghua University, Beijing, China 4", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Institute for Fiscal Studies", + "ror_ids": [ + "https://ror.org/04r1cjx59" + ] + }, + { + "affiliation": "Division of Fluid Mechanics, Department of Energy Sciences, Lund University, Lund, Sweden", + "ror_ids": [ + "https://ror.org/012a77v79" + ] + }, + { + "affiliation": "Yantai Yuhuangding Hospital", + "ror_ids": [ + "https://ror.org/05vawe413" + ] + }, + { + "affiliation": "Laboratory of Metabolism, National Cancer Institute, National Institutes of Health, Bethesda, Maryland 208923", + "ror_ids": [ + "https://ror.org/01cwqze88", + "https://ror.org/040gcmg81" + ] + }, + { + "affiliation": "Istituto Geofisico E Geodetico Universita Degli Studi Via Osservatorio 4 98100 Messina, Italy", + "ror_ids": [] + }, + { + "affiliation": "State Key Lab of Fire Science University of Science and Technology of China Hefei, Anhui 230026, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04c4dkn09", + "https://ror.org/01vq13895" + ] + }, + { + "affiliation": "Editor", + "ror_ids": [] + }, + { + "affiliation": "Moscow University after S. Y. Witte", + "ror_ids": [ + "https://ror.org/0119zea93" + ] + }, + { + "affiliation": "Department of Aerospace Engineering Science; University of Colorado at Boulder; Boulder; Colorado; USA", + "ror_ids": [ + "https://ror.org/02ttsq026" + ] + }, + { + "affiliation": "Unidade de Vigilância Sanitária de Ribeirão Pires, Brasil", + "ror_ids": [] + }, + { + "affiliation": "Customer Performance Group", + "ror_ids": [] + }, + { + "affiliation": "Biomedical Sciences Division, University of California, Riverside, CA 92521, USA.", + "ror_ids": [ + "https://ror.org/03nawhv43" + ] + }, + { + "affiliation": "Kyiv National University of Culture and Arts, Ukraine", + "ror_ids": [ + "https://ror.org/012b9mf52" + ] + }, + { + "affiliation": "Ecoforêt (CH) *", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Engineering, Gunma University", + "ror_ids": [ + "https://ror.org/046fm7598" + ] + }, + { + "affiliation": "School of Mechanical Engineering, The Georgia Institute of Technology, Atlanta, GA 30332-0405", + "ror_ids": [ + "https://ror.org/01zkghx44" + ] + }, + { + "affiliation": "Radiology Techniques Department, Dijlah University College, Al-Masafi Street, Baghdad 00964, Iraq", + "ror_ids": [ + "https://ror.org/03vndx142" + ] + }, + { + "affiliation": "Department of Medicine, Division of Infectious Diseases, The University of Alabama at Birmingham, Birmingham, Alabama, USA", + "ror_ids": [ + "https://ror.org/008s83205" + ] + }, + { + "affiliation": "Department of Marketing, Raj Soin College of Business, Wright State University, Dayton, Ohio, USA", + "ror_ids": [ + "https://ror.org/04qk6pt94" + ] + }, + { + "affiliation": "University of Maryland, College Park.", + "ror_ids": [ + "https://ror.org/047s2c258" + ] + }, + { + "affiliation": "Department of Condensed Matter Physics, Royal Institute of Technology, S-100 44 Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Cardiovascular Division, Department of Medicine, Beth Israel Deaconess Medical Center, Harvard Medical School, Boston, MA (M.K., Y.D., S.K., G.C., A.K., M.K.A., H.K., S.D., F.A.).", + "ror_ids": [ + "https://ror.org/04drvxt59", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Department of Chemistry, College of Basic Science, Yadegar-e-Imam Khomeini (RAH) Shahre Rey Branch; Islamic Azad University; Tehran Iran", + "ror_ids": [ + "https://ror.org/01kzn7k21" + ] + }, + { + "affiliation": "Forest Research Institute Jersey City New Jersey United States", + "ror_ids": [] + }, + { + "affiliation": "Department of Obstetrics and gynecology Heze Municipal Hospital of Shandong Province Heze China", + "ror_ids": [ + "https://ror.org/03cy8qt72" + ] + }, + { + "affiliation": "Department of Social Sciences, Heinrich Heine University, Düsseldorf, Germany", + "ror_ids": [ + "https://ror.org/024z2rq82" + ] + }, + { + "affiliation": "Department of General Surgery Peking Union Medical College Hospital Chinese Academy of Medical Sciences and Peking Union Medical College Beijing China", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "School of Intelligent Construction, Liuzhou Vocational and Technical College, Liuzhou, Sichuan, China", + "ror_ids": [] + }, + { + "affiliation": "Department of Pharmacology & Toxicology, Faculty of Medicine, Kuwait University, P.O. Box 24923, 13110 Safat, Kuwait", + "ror_ids": [ + "https://ror.org/021e5j056" + ] + }, + { + "affiliation": "Nanjing University of Chinese Medicine", + "ror_ids": [ + "https://ror.org/04523zj19" + ] + }, + { + "affiliation": "Davidson School of Chemical Engineering, Purdue University, West Lafayette, Indiana 47907, United States", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Institut für Metallforschung Saarbrücken", + "ror_ids": [] + }, + { + "affiliation": "Unesp", + "ror_ids": [] + }, + { + "affiliation": "University of Pittsburgh, USA", + "ror_ids": [ + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Los Alamos National Laboratory 1 Center for Integrated Nanotechnologies, , MS K771 Los Alamos, New Mexico 87544, USA", + "ror_ids": [ + "https://ror.org/031yh0y38", + "https://ror.org/01e41cf67" + ] + }, + { + "affiliation": "Department of Applied Chemistry and Chemical Engineering, Faculty of Engineering, Kagoshima University1-21-40 Korimoto, Kagoshima", + "ror_ids": [ + "https://ror.org/03ss88z23" + ] + }, + { + "affiliation": "Stockholm Resilience Centre Stockholm University Kräftriket 2B 114 19 Stockholm Sweden", + "ror_ids": [ + "https://ror.org/05f0yaq80", + "https://ror.org/0145rpw38" + ] + }, + { + "affiliation": "College of Chemistry and Chemical Engineering", + "ror_ids": [] + }, + { + "affiliation": "Dept. of Communicative Disord. and Waisman Ctr., Univ. of Wisconsin-Madison, 1500 Highland Ave., Madison, WI 53705", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Chia Nan University of Pharmacy and Science", + "ror_ids": [ + "https://ror.org/02834m470" + ] + }, + { + "affiliation": "Assistant Professor, Department of International Relations, Lahore College for Women University, Lahore, Punjab, Pakistan.", + "ror_ids": [ + "https://ror.org/02bf6br77" + ] + }, + { + "affiliation": "From the Department of Physiology and Pharmacology, Michigan State College, East Lansing, Michigan and the Department of Physiology, Faculty of Veterinary Medicine, Cairo University, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/03q21mh05" + ] + }, + { + "affiliation": "Department of Pathology, Shengjing Hospital, China Medical University, Shenyang, Liaoning Province - China", + "ror_ids": [ + "https://ror.org/032d4f246" + ] + }, + { + "affiliation": "Jihua Laboratory,Foshan,China,528000", + "ror_ids": [ + "https://ror.org/006aydy55" + ] + }, + { + "affiliation": "Klein College of Media and Communication, Temple University, Philadelphia, USA", + "ror_ids": [ + "https://ror.org/00kx1jb78" + ] + }, + { + "affiliation": "Research Associate, Dept. of Civil and Environmental Engineering, Pennsylvania State Univ., University Park, PA 16802.", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "a Chester College ,", + "ror_ids": [] + }, + { + "affiliation": "Civil Engineering, University of Massachusetts, Amherst, Mass. 01003", + "ror_ids": [ + "https://ror.org/0072zz521" + ] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biophysics Columbia University New York NY USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "From the Cardiovascular Center and Departments of Internal Medicine and Pharmacology, University of Iowa Carver College of Medicine and VA Medical Center, Iowa City, Iowa.", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "Nagoya Institute of Technology", + "ror_ids": [ + "https://ror.org/055yf1005" + ] + }, + { + "affiliation": "General Nursing, University of Central England, Birmingham and Dudley Group of Hospitals NHS Trust", + "ror_ids": [ + "https://ror.org/00t67pt25" + ] + }, + { + "affiliation": "Division of High-Consequence Pathogens and Pathology, Centers for Disease Control and Prevention, USA", + "ror_ids": [ + "https://ror.org/042twtr12" + ] + }, + { + "affiliation": "Cátedra de Ginecología, Hospital Universitario de Maternidad y Neonatología, Facultad de Ciencias Medicas, Universidad Nacional de Córdoba, Argentina", + "ror_ids": [ + "https://ror.org/056tb7j80" + ] + }, + { + "affiliation": "University of East Anglia", + "ror_ids": [ + "https://ror.org/026k5mg93" + ] + }, + { + "affiliation": "19 Memorial Drive West Lehigh University", + "ror_ids": [ + "https://ror.org/012afjb06" + ] + }, + { + "affiliation": "Pharmacology Department, National Research Center, Dokki, Giza, Egypt", + "ror_ids": [ + "https://ror.org/02n85j827" + ] + }, + { + "affiliation": "Laboratory of Thermodynamics in Emerging Technologies 1 , Department of Mechanical and Process Engineering, ETH Zurich, 8092 Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Department of Mathematics, University of Oslo, Norway, Norwegian\n Computing Center, Oslo, Norway,", + "ror_ids": [ + "https://ror.org/02gm7te43", + "https://ror.org/01xtthb56" + ] + }, + { + "affiliation": "Institute of Machine Design and Construction, Rheinisch Westfa¨lische Technische Hochschule Aachen, West Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "FSBSI Agricultural Research Center “Donskoy”", + "ror_ids": [ + "https://ror.org/00hcsjz98" + ] + }, + { + "affiliation": "Kunming Engineering Corporation Limited, PowerChina, Kunming 650051, China", + "ror_ids": [ + "https://ror.org/01varr368" + ] + }, + { + "affiliation": "State Key Laboratory for Manufacturing Systems Engineering Xi'an Jiaotong University Xi'an 710049 China", + "ror_ids": [ + "https://ror.org/017zhmm22" + ] + }, + { + "affiliation": "Alsip, Hazelgreen, and Oaklawn (Ill.) schools, and teaches at St. Xavier College, Chicago, Ill.", + "ror_ids": [] + }, + { + "affiliation": "Department of Cardiovascular and Thoracic Surgery Sanjay Gandhi Postgraduate Institute of Medical Sciences Lucknow, Uttar Pradesh, India", + "ror_ids": [ + "https://ror.org/01rsgrz10" + ] + }, + { + "affiliation": "Chapman University , US", + "ror_ids": [ + "https://ror.org/0452jzg20" + ] + }, + { + "affiliation": "1Borough of Manhattan Community College City University of New York, Email: cpost@bmcc.cuny.edu", + "ror_ids": [ + "https://ror.org/00453a208", + "https://ror.org/040hwr020" + ] + }, + { + "affiliation": "Program in Physics, Faculty of Science, Udon Thani Rajabhat University, Udon Thani, Thailand", + "ror_ids": [ + "https://ror.org/05h6yt550" + ] + }, + { + "affiliation": "Institutes of Molecular and Cellular Virology, Friedrich-Loeffler-Institutes, Federal Research Centre for Virus Diseases of Animals, Insel Riems, Germany.", + "ror_ids": [ + "https://ror.org/025fw7a54" + ] + }, + { + "affiliation": "Department of International Relations at the London School of Economics", + "ror_ids": [ + "https://ror.org/0090zs177" + ] + }, + { + "affiliation": "Financial University under Government of Russian Federation", + "ror_ids": [ + "https://ror.org/02hchde94", + "https://ror.org/01hnrbb29" + ] + }, + { + "affiliation": "Australian Cancer Research Foundation Department of Cancer Biology and Therapeutics, The John Curtin School of Medical Research, The Australian National University, Canberra, Australia 1", + "ror_ids": [ + "https://ror.org/0459phn12", + "https://ror.org/019wvm592" + ] + }, + { + "affiliation": "University of Miyazaki", + "ror_ids": [ + "https://ror.org/0447kww10" + ] + }, + { + "affiliation": "Department of Chemical Engineering, University of South Carolina, Columbia, South Carolina 29208", + "ror_ids": [ + "https://ror.org/02b6qw903" + ] + }, + { + "affiliation": "Department of Genetics Stanford University Stanford California USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Dept of Physiology, Tulane Univ Health Sciences Cntr and Sch of Medicine, New Orleans, LA", + "ror_ids": [ + "https://ror.org/04vmvtb21" + ] + }, + { + "affiliation": "School of Information Engineering, Nanchang Hangkong University, Nanchang 330063, China", + "ror_ids": [ + "https://ror.org/0369pvp92" + ] + }, + { + "affiliation": "Information Systems, Curtin University, Perth, Australia", + "ror_ids": [ + "https://ror.org/02n415q13" + ] + }, + { + "affiliation": "Farm Street Church, London", + "ror_ids": [] + }, + { + "affiliation": "São Paulo State University", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Institute for High Energy Physics, Protvino, Moscow Region, 142281, Russia", + "ror_ids": [ + "https://ror.org/03kn4xv14" + ] + }, + { + "affiliation": "Graduate Program in Biomedical Sciences, University of California San Francisco, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "National Laboratory of Solid State Microstructures, College of Engineering and Applied Sciences and Collaborative Innovation Centre of Advanced Microstructures, Nanjing University c , Nanjing 210093, China", + "ror_ids": [ + "https://ror.org/04ttadj76", + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "Laboratory of Natural Substances, Pharmacology, Environment, Modeling, Health and Quality of Life (SNAMOPEQ), Faculty of Sciences Dhar El-Mehraz, Sidi Mohamed Ben Abdellah University, Fez 30000, Morocco", + "ror_ids": [ + "https://ror.org/04efg9a07" + ] + }, + { + "affiliation": "University Technology Malaysia", + "ror_ids": [ + "https://ror.org/026w31v75" + ] + }, + { + "affiliation": "INFN and University of Bologna, Italy", + "ror_ids": [ + "https://ror.org/01111rn36", + "https://ror.org/04j0x0h93" + ] + }, + { + "affiliation": "HSE University", + "ror_ids": [ + "https://ror.org/055f7t516" + ] + }, + { + "affiliation": "University of PennsylvaniaPhiladelphiaPA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Laboratory of Robotic SystemsÉcole Polytechnique Fédérale de LausanneLausanne1015Switzerland", + "ror_ids": [ + "https://ror.org/02s376052" + ] + }, + { + "affiliation": "Department of Computer Science, Missouri University of Science and Technology, Rolla, MO, USA", + "ror_ids": [ + "https://ror.org/00scwqd12" + ] + }, + { + "affiliation": "Institute of Landscape Architecture, Urban Planning and Garden Art , Hungarian University of Agriculture and Life Sciences , Budapest , Hungary", + "ror_ids": [ + "https://ror.org/01394d192" + ] + }, + { + "affiliation": "Department of Chemistry, Indian Institute of Technology Hyderabad, Sangareddy 502285, Telangana, India", + "ror_ids": [ + "https://ror.org/01j4v3x97" + ] + }, + { + "affiliation": "Department of Physics, Alzahra University, Tehran 19938-93973, Iran.", + "ror_ids": [ + "https://ror.org/013cdqc34" + ] + }, + { + "affiliation": "Department of Pharmacology, Stanford University School of Medicine, Stanford, CA 94305-5332", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Huazhong University of Science and Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Technical University of Denmark, Kongens Lyngby, Denmark", + "ror_ids": [ + "https://ror.org/04qtj9h94" + ] + }, + { + "affiliation": "Faculty of Medicine, University in Oslo, Oslo, Norway;", + "ror_ids": [ + "https://ror.org/01xtthb56" + ] + }, + { + "affiliation": "Department of Laboratory Medicine,\n Washington University School of Medicine, St. Louis - USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Information Sciences Institute, University of Southern California, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "FIRAT ÜNİVERSİTESİ İLETİŞİM FAKÜLTESİ HALKLA İLİŞKİLER VE TANITIM BÖLÜMÜ", + "ror_ids": [ + "https://ror.org/05teb7b63" + ] + }, + { + "affiliation": "Professor of Political Science, University of Wisconsin", + "ror_ids": [ + "https://ror.org/03ydkyb10" + ] + }, + { + "affiliation": "From the Johns Hopkins Medical Institutions, Baltimore, MD; The University of Texas M. D. Anderson Cancer Center, Houston, TX; University of Alabama at Birmingham, Birmingham, AL; Sydney Melanoma Unit, University of Sydney, Sydney, NSW, Australia; University of Washington, Seattle, WA; Istituto Nazionale Tumori, Milan, Italy; David Geffen School of Medicine, University of California, Los Angeles, Los Angeles; University of California, San Francisco School of Medicine, San Francisco; John Wayne Cancer...", + "ror_ids": [ + "https://ror.org/00cvxb145", + "https://ror.org/01gek1696", + "https://ror.org/008s83205", + "https://ror.org/046rm7j60", + "https://ror.org/04twxam07", + "https://ror.org/05dwj7825", + "https://ror.org/043mz5j54", + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Nihon University Graduate School", + "ror_ids": [ + "https://ror.org/05jk51a88" + ] + }, + { + "affiliation": "Department of Physics, Central Michigan University 2 , Mount Pleasant, Michigan 48859, USA", + "ror_ids": [ + "https://ror.org/02xawj266" + ] + }, + { + "affiliation": "University of Bath", + "ror_ids": [ + "https://ror.org/002h8g185" + ] + }, + { + "affiliation": "Peoples Friendship University of Russia (RUDN University)", + "ror_ids": [ + "https://ror.org/02dn9h927" + ] + }, + { + "affiliation": "Jaya Engineering College,Department of MCA,Chennai,India,602024", + "ror_ids": [] + }, + { + "affiliation": "University of Guam Marine Laboratory UOG Station Mangilao GU USA", + "ror_ids": [ + "https://ror.org/00376bg92" + ] + }, + { + "affiliation": "Kathyn Cassidy is Associate Professor in the Department of Geography and Environmental Sciences, Northumbria University, UK (email: ).", + "ror_ids": [ + "https://ror.org/049e6bc10" + ] + }, + { + "affiliation": "From the Department of Veterinary Clinical Sciences, College of Veterinary Medicine, The Ohio State University, Columbus, OH 43210-1089.", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Integrative Biology and Pharmacology UTHSC at Houston Houston TX", + "ror_ids": [ + "https://ror.org/03gds6c39" + ] + }, + { + "affiliation": "Hiroshima University", + "ror_ids": [ + "https://ror.org/03t78wx29" + ] + }, + { + "affiliation": "A.N. Bakoulev National Medical Research Center for Cardiovascular Surgery; N.A. Semashko National Research Institute of Public Health", + "ror_ids": [ + "https://ror.org/05pc7fv53" + ] + }, + { + "affiliation": "Okamura Laboratory Inc.", + "ror_ids": [] + }, + { + "affiliation": "Rutgers University", + "ror_ids": [ + "https://ror.org/05vt9qd57" + ] + }, + { + "affiliation": "Virginia Commonwealth University Children's Medical Center, USA", + "ror_ids": [ + "https://ror.org/02nkdxk79" + ] + }, + { + "affiliation": "Jet Propulsion Laboratory, California Institute of Technology, Pasadena, California 91109", + "ror_ids": [ + "https://ror.org/027k65916", + "https://ror.org/05dxps055" + ] + }, + { + "affiliation": "Xavier University", + "ror_ids": [ + "https://ror.org/00f266q65" + ] + }, + { + "affiliation": "School of Psychology and Speech Pathology, Curtin University, Perth, Western Australia, Australia,", + "ror_ids": [ + "https://ror.org/02n415q13" + ] + }, + { + "affiliation": "Mt. Vernon, N. Y.", + "ror_ids": [] + }, + { + "affiliation": "Kyoto Institute of Technology", + "ror_ids": [ + "https://ror.org/00965ax52" + ] + }, + { + "affiliation": "State Key Laboratory of Oral Diseases National Clinical Research Center for Oral Diseases Department of Pediatric Dentistry West China Hospital of Stomatology Sichuan University Chengdu China", + "ror_ids": [ + "https://ror.org/00pvqk557", + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "Faculty of Agricultural Sciences, Universidad Central del Ecuador, Ecuador", + "ror_ids": [ + "https://ror.org/010n0x685" + ] + }, + { + "affiliation": "Bar Harbor, Maine", + "ror_ids": [] + }, + { + "affiliation": "Transportadora de Gas del Norte S.A.", + "ror_ids": [] + }, + { + "affiliation": "Department of Pathology, University of Pittsburgh School of Medicine and University of Pittsburgh Medical Center, Pittsburgh, PA, USA", + "ror_ids": [ + "https://ror.org/04ehecz88", + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Universidade Federal do Paraná, Brasil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "IBM, Deutschland, German Manufacturing Technology Center, 7032 Sendelfingen, Germany", + "ror_ids": [ + "https://ror.org/00pm7rm97" + ] + }, + { + "affiliation": "Yuri Gastyev, a mathematician involved with A Chronicle of Current Events and other human rights activities, emigrated from the USSR earlier this year and now lives in Vienna.", + "ror_ids": [] + }, + { + "affiliation": "Hematology Department, Hospital Universitario La Paz, Madrid, Spain", + "ror_ids": [ + "https://ror.org/01s1q0w69" + ] + }, + { + "affiliation": "Department of Electronics and Communication Engineering National Engineering College Kovilpatti Tamil Nadu India", + "ror_ids": [] + }, + { + "affiliation": "Centre for Population Health Research, School of Health and Social Development Deakin University Burwood Victoria Australia", + "ror_ids": [ + "https://ror.org/02czsnj07" + ] + }, + { + "affiliation": "Kenyan with a veterinary background, he has been working with a number of international organizations in the Horn of Africa on livestock-related matters; He is currently engaged with the ICRC in region five of Ethiopia.", + "ror_ids": [] + }, + { + "affiliation": "School of Mathematical Sciences and Shanghai Key Laboratory of Contemporary Applied Mathematics, Fudan University, Shanghai, P. R. China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "The Goverment Industrial Research Institute", + "ror_ids": [] + }, + { + "affiliation": "Tang Du Hospital", + "ror_ids": [ + "https://ror.org/04yvdan45" + ] + }, + { + "affiliation": "Department of Mathematics , Periyar University , Salem , 636 011 , India", + "ror_ids": [ + "https://ror.org/05crs8s98" + ] + }, + { + "affiliation": "Florida State University, Tallahassee, USA", + "ror_ids": [ + "https://ror.org/05g3dte14" + ] + }, + { + "affiliation": "Austin Speech Labs, Austin, TX", + "ror_ids": [ + "https://ror.org/01jj3v002" + ] + }, + { + "affiliation": "Key Laboratory of Pesticide Toxicology and Application Technique, College of Plant Protection, Shandong Agricultural University", + "ror_ids": [ + "https://ror.org/02ke8fw32" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Wayne State University, 5050 Anthony Wayne Drive, Detroit, Michigan 48202-3902", + "ror_ids": [ + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "School of Resource and Environmental Management, Simon Fraser University, 8888 University Drive, Burnaby, British Columbia, Canada V5A 1S6, Canada", + "ror_ids": [ + "https://ror.org/0213rcc28" + ] + }, + { + "affiliation": "Old Testament, Columbia Theological Seminary", + "ror_ids": [ + "https://ror.org/00g5hfp88" + ] + }, + { + "affiliation": "Department of Animal and Plant Sciences, University of Sheffield, Sheffield, UK", + "ror_ids": [ + "https://ror.org/05krs5044" + ] + }, + { + "affiliation": "Department of Supply Chain, Management at the Marondera University of Agricultural Sciences and Technology (MUAST), Zimbabwe", + "ror_ids": [] + }, + { + "affiliation": "Federal State Budgetary Scientific Institution «Scientific Research Institute – Federal Research Centre for Projects Evaluation and Consulting Services» (SRI FRCEC)", + "ror_ids": [] + }, + { + "affiliation": "School of Pharmacy and Pharmaceutical Sciences, Isfahan University of Medical Sciences, Isfahan, Iran", + "ror_ids": [ + "https://ror.org/04waqzz56" + ] + }, + { + "affiliation": "Max-Planck-Institut für Extraterrestrische Physik Centre for Interdisciplinary Plasma Science, , D-85741 Garching, Germany", + "ror_ids": [ + "https://ror.org/00e4bwe12" + ] + }, + { + "affiliation": "Roanwell Corporation, New York, New York 1OO14", + "ror_ids": [] + }, + { + "affiliation": "Chemistry Section, Scientific Police Research Institute", + "ror_ids": [] + }, + { + "affiliation": "Department of Mechanics, Tianjin University, Tianjin 300350, P. R. China", + "ror_ids": [ + "https://ror.org/012tb2g32" + ] + }, + { + "affiliation": "Service d’Ingénierie Moléculaire des Protéines, Laboratoire de Toxinologie Moléculaire et Biotechnologies, Commissariat à l'Energie Atomique, F-91191 Gif-sur-Yvette, France", + "ror_ids": [] + }, + { + "affiliation": "CSIR-Centre for Cellular and Molecular Biology, Hyderabad, India 500007", + "ror_ids": [ + "https://ror.org/05shq4n12" + ] + }, + { + "affiliation": "Department of Chemistry, University of Southern California, Los Angeles, California 90089, Institut Laue-Langevin, Grenoble, France F-38042, and Department of Chemistry, University of British Columbia, Vancouver, British Columbia, Canada V6T 1Z1", + "ror_ids": [ + "https://ror.org/03rmrcq20", + "https://ror.org/01xtjs520", + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "School of Computing, Dublin City University,Dublin,Ireland", + "ror_ids": [ + "https://ror.org/04a1a1e81" + ] + }, + { + "affiliation": "Functional Nanomaterials Research lab, Department of Physics and Centre for Nanotechnology, Indian Institute of Technology Roorkee 1 , Roorkee-247667, Uttarakhand, India", + "ror_ids": [ + "https://ror.org/00582g326" + ] + }, + { + "affiliation": "Department of Anesthesiology, MD Anderson Cancer Center The University of Texas Houston Texas USA", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Iowa State University", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "The Cardiac Surgery Program, Royal Columbian Hospital, Fraser Health Authority, New Westminster, British Columbia, and the School of Nursing, University of British Columbia, Vancouver, British Columbia.", + "ror_ids": [ + "https://ror.org/03rmrcq20", + "https://ror.org/05ymyxj51" + ] + }, + { + "affiliation": "Dhupuma Foundational Education Centre, East Arnhem Region East Arnhem NT Australia", + "ror_ids": [] + }, + { + "affiliation": "SAKARYA ÜNİVERSİTESİ, EĞİTİM BİLİMLERİ ENSTİTÜSÜ, İNGİLİZ DİLİ EĞİTİMİ (YL) (TEZLİ)", + "ror_ids": [ + "https://ror.org/04ttnw109" + ] + }, + { + "affiliation": "University of Michigan, Ann Arbor, MI", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Giresun Univ. Healthy Science Fac. Nursing Dep.", + "ror_ids": [ + "https://ror.org/05szaq822" + ] + }, + { + "affiliation": "Kennedy Space Center , Florida , United States of America", + "ror_ids": [ + "https://ror.org/03kjpzv42" + ] + }, + { + "affiliation": "American Museum of Natural History, New York, NY 10024, USA.", + "ror_ids": [ + "https://ror.org/03thb3e06" + ] + }, + { + "affiliation": "Universidad Nacional de Colombia, Bogotá, Colombia", + "ror_ids": [ + "https://ror.org/059yx9a68" + ] + }, + { + "affiliation": "Orbital and Oculofacial Plastic Surgery, Department of Ophthalmology, Medical College of Wisconsin, Milwaukee, Wisconsin, USA", + "ror_ids": [ + "https://ror.org/00qqv6244" + ] + }, + { + "affiliation": "Gulf Research & Development Company, Pittsburgh, Pa.", + "ror_ids": [] + }, + { + "affiliation": "Synopsys, Inc.,Mountain View,CA", + "ror_ids": [ + "https://ror.org/013by2m91" + ] + }, + { + "affiliation": "Beijing 100871", + "ror_ids": [] + }, + { + "affiliation": "Cambridge University Hospitals NHS Foundation Trust, Department of Respiratory Medicine, Cambridge, UK", + "ror_ids": [ + "https://ror.org/04v54gj93" + ] + }, + { + "affiliation": "Kyushu Institute of Technology", + "ror_ids": [ + "https://ror.org/02278tr80" + ] + }, + { + "affiliation": "Centre de Biologie du Developpement, CNRS / University Paul Sabatier, France", + "ror_ids": [ + "https://ror.org/02v6kpv12", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Food Colloids Group, School\nof Food Science and Nutrition, University of Leeds, Leeds LS2 9JT, U.K.", + "ror_ids": [ + "https://ror.org/024mrxd33" + ] + }, + { + "affiliation": "School of Psychology, University of St Andrews, St Andrews, UK", + "ror_ids": [ + "https://ror.org/02wn5qz54" + ] + }, + { + "affiliation": "Reference and Research Services, University of New Mexico, Las Cruces, New Mexico, USA", + "ror_ids": [ + "https://ror.org/05fs6jp91" + ] + }, + { + "affiliation": "Exercise Physiology Lab, Institute of Human Movement Sciences and Sport, ETH Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "The Second Department of Internal Medicine, Nagoya City University Medical School", + "ror_ids": [ + "https://ror.org/04wn7wc95" + ] + }, + { + "affiliation": "Laboratory of General Bacteriology, Yale University, New Haven, Connecticut", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Institute of Chemical\nSciences, Heriot Watt University, Edinburgh EH14 4AS, United Kingdom", + "ror_ids": [ + "https://ror.org/04mghma93" + ] + }, + { + "affiliation": "Department of Dermatology and Allergology, Nagasaki University Hospital", + "ror_ids": [ + "https://ror.org/05kd3f793" + ] + }, + { + "affiliation": "Fiji National University, Lautoka, Fiji", + "ror_ids": [ + "https://ror.org/00qk2nf71" + ] + }, + { + "affiliation": "Physician Superintendent, St. Andrew's Hospital, Northampton", + "ror_ids": [ + "https://ror.org/033mx0906" + ] + }, + { + "affiliation": "From the Department of Anesthesiology, Perioperative and Pain Medicine, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts.", + "ror_ids": [ + "https://ror.org/04b6nzv94", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Cornell University", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Arizona State College", + "ror_ids": [] + }, + { + "affiliation": "Oak Ridge National Laboratory, Oak Ridge, Tennessee", + "ror_ids": [ + "https://ror.org/01qz5mb56" + ] + }, + { + "affiliation": "Department of Otolaryngology University Hospital of Lund Lund Sweden", + "ror_ids": [] + }, + { + "affiliation": "State Grid Shanghai Municipal Electric Power Company", + "ror_ids": [] + }, + { + "affiliation": "World Resources Institute, Washington, DC 20002, USA.", + "ror_ids": [ + "https://ror.org/047ktk903" + ] + }, + { + "affiliation": "Department of Biological Sciences, Eastern Kentucky University, Richmond, KY, USA", + "ror_ids": [ + "https://ror.org/012xks909" + ] + }, + { + "affiliation": "Centre for Petroleum, Energy Economics and Law , University of Ibadan , Ibadan , Oyo State , Nigeria", + "ror_ids": [ + "https://ror.org/03wx2rr30" + ] + }, + { + "affiliation": "1University of California, School of Veterinary Medicine, Department of Veterinary Surgical and Radiological Sciences, Davis, CA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "a Department of Biostatistics , Family Health International, Research Triangle Park , North Carolina, USA", + "ror_ids": [ + "https://ror.org/007kp6q87" + ] + }, + { + "affiliation": "King Mongkut’s University of Technology Thonburi (KMUTT)", + "ror_ids": [ + "https://ror.org/0057ax056" + ] + }, + { + "affiliation": "Japan Atomic Energy Agency", + "ror_ids": [ + "https://ror.org/05nf86y53" + ] + }, + { + "affiliation": "Burdur Müze Müdürlüğü", + "ror_ids": [] + }, + { + "affiliation": "School of Psychology; The University of Sydney; Sydney NSW Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "a Guest Editor, Professor Analytical Chemistry , Villanova University , Villanova, Pa, 19085", + "ror_ids": [ + "https://ror.org/02g7kd627" + ] + }, + { + "affiliation": "The Graduate Center–City University of New York, New York City, NY, USA", + "ror_ids": [ + "https://ror.org/00453a208" + ] + }, + { + "affiliation": "Department of Chemistry Faculty of Science University of Guilan Rasht 41938‐33697 Iran", + "ror_ids": [ + "https://ror.org/01bdr6121" + ] + }, + { + "affiliation": "Universidad de Valladolid Departamento Bioquímica y Biología Molecular y Fisiología and Departamento Anatoima, Facultad de Mediana , , 47005-Valladolid, Spain", + "ror_ids": [ + "https://ror.org/01fvbaw18" + ] + }, + { + "affiliation": "Medical Oncology, Roswell Park Cancer Institute, Buffalo, NY, USA", + "ror_ids": [ + "https://ror.org/0499dwk57" + ] + }, + { + "affiliation": "Sandoz Nutrition 5320 W. 23rd Street, P.O. Box 370, Minneapolis, MN 55440, U.S.A.", + "ror_ids": [] + }, + { + "affiliation": "Associate Professor of Music Education, The Florida State Univcrsity, Tallahassee.", + "ror_ids": [ + "https://ror.org/05g3dte14" + ] + }, + { + "affiliation": "U.S. Navy, Naval Research Laboratory, Washington, D.C.", + "ror_ids": [ + "https://ror.org/04d23a975", + "https://ror.org/03cs53d16" + ] + }, + { + "affiliation": "University of Nigeria", + "ror_ids": [ + "https://ror.org/01sn1yx84" + ] + }, + { + "affiliation": "Children’s Hosp of Philadelphia, Philadelphia, PA", + "ror_ids": [ + "https://ror.org/01z7r7q48" + ] + }, + { + "affiliation": "Center for Ultracold Atoms and Department of Physics, Massachusetts Institute of Technology, Cambridge, Massachusetts 02139, USA", + "ror_ids": [ + "https://ror.org/042nb2s44", + "https://ror.org/053tmcn30" + ] + }, + { + "affiliation": "Omron Healthcare Co., Ltd., Osaka, Japan", + "ror_ids": [ + "https://ror.org/00q0w1h45" + ] + }, + { + "affiliation": "Bellingham Research Institute, Portland, Oregon, USA", + "ror_ids": [] + }, + { + "affiliation": "Valhalla, New York", + "ror_ids": [] + }, + { + "affiliation": "a Institut für Makromolekulare Chemie, Universität Freiburg , Stefan-Meier-Str. 31, D-7800, Freiburg, FRG", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "Beijing Institute of Technology, China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "United States Naval Academy,Cyber Sciences,Annapolis,Maryland", + "ror_ids": [ + "https://ror.org/00znex860" + ] + }, + { + "affiliation": "Universidade Federal de Sergipe, Departamento de Química, 49100-000, São Cristóvão, SE, Brazil", + "ror_ids": [ + "https://ror.org/028ka0n85" + ] + }, + { + "affiliation": "Pathology SUNY Downstate Medical Center Brooklyn NY", + "ror_ids": [ + "https://ror.org/0041qmd21" + ] + }, + { + "affiliation": "Institut\nfür Organische Chemie and ‡Institut für Anorganische\nund Analytische Chemie, Technische Universität Braunschweig, Hagenring\n30, 38106 Braunschweig, Germany", + "ror_ids": [ + "https://ror.org/010nsgg66" + ] + }, + { + "affiliation": "BiologySlippery Rock UniversitySlippery RockPennsylvaniaUnited States", + "ror_ids": [ + "https://ror.org/0369st156" + ] + }, + { + "affiliation": "Hefei University of Technology", + "ror_ids": [ + "https://ror.org/02czkny70" + ] + }, + { + "affiliation": "Department of Psychology, University of Regina, Regina, Saskatchewan, Canada", + "ror_ids": [ + "https://ror.org/03dzc0485" + ] + }, + { + "affiliation": "∥ Professor, Department of Anesthesiology, Medical College of Wisconsin. Anesthesiologist, Milwaukee Veterans Administration Hospital, Milwaukee, Wisconsin.", + "ror_ids": [ + "https://ror.org/00qqv6244" + ] + }, + { + "affiliation": "Tokyo Metropolitan University Hachioji Japan", + "ror_ids": [ + "https://ror.org/00ws30h19" + ] + }, + { + "affiliation": "Chengdu Aeronautic Vocational and Technical College", + "ror_ids": [] + }, + { + "affiliation": "Technology in Forestry and Ecology in South China, Central South University of Forestry and Technology, Changsha 410004, China", + "ror_ids": [ + "https://ror.org/02czw2k81" + ] + }, + { + "affiliation": "Department of Facial Plastic Surgery, Meridian Plastic Surgeons, Indianapolis, Indiana", + "ror_ids": [ + "https://ror.org/00hx55359" + ] + }, + { + "affiliation": "Department of Urology, Xiangyang Central Hospital, Affiliated Hospital of Hubei University of Arts and Science, Xiangyang, Hubei, 441021, China", + "ror_ids": [ + "https://ror.org/0212jcf64", + "https://ror.org/02dx2xm20" + ] + }, + { + "affiliation": "1 SPIA, North Carolina State University Department of Political Science USA Raleigh", + "ror_ids": [ + "https://ror.org/04tj63d06" + ] + }, + { + "affiliation": "Department of Zoology, University of Florida, Gainesville, Florida 32611 USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Industrial Chemistry, Faculty of Technology, Kanazawa University", + "ror_ids": [ + "https://ror.org/02hwp6a56" + ] + }, + { + "affiliation": "National Nuclear Laboratory, Central Laboratory, Sellafield, Seascale, Cumbria CA20 1PG, GB", + "ror_ids": [ + "https://ror.org/051n2dc24" + ] + }, + { + "affiliation": "İstanbul Üniversitesi-Cerrahpaşa Hasan Ali Yücel Eğitim Fakültesi", + "ror_ids": [ + "https://ror.org/01dzn5f42" + ] + }, + { + "affiliation": "Utsunomiya University", + "ror_ids": [ + "https://ror.org/05bx1gz93" + ] + }, + { + "affiliation": "Walter Cronkite School of Journalism and Mass Communication, Arizona State University, Phoenix, AZ, USA", + "ror_ids": [ + "https://ror.org/03efmqc40" + ] + }, + { + "affiliation": "Department of Criminology and Criminal Justice, Florida International University, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/02gz6gg07" + ] + }, + { + "affiliation": "Department of Zoology, University of Lucknow, Lucknow, India", + "ror_ids": [ + "https://ror.org/03bdeag60" + ] + }, + { + "affiliation": "Department of Haematology, Eastern Health and Monash University, Box Hill, Australia", + "ror_ids": [ + "https://ror.org/02bfwt286", + "https://ror.org/00vyyx863" + ] + }, + { + "affiliation": "Department of Public Health, Yale School of Medicine", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "School of Geography, University of Birmingham, Edgbaston, Birmingham BI5 2TT, England", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "School of Electronic Information Wuhan University Wuhan China", + "ror_ids": [ + "https://ror.org/033vjfk17" + ] + }, + { + "affiliation": "First Department of Internal Medicine, School of Medicine, University of Occupational and Environmental Health, Japan.", + "ror_ids": [ + "https://ror.org/020p3h829" + ] + }, + { + "affiliation": "Institute of Aeronautics and Astronautics, Northwestern Polytechnic University", + "ror_ids": [ + "https://ror.org/05wn69s11" + ] + }, + { + "affiliation": "AARP Public Policy Institute", + "ror_ids": [] + }, + { + "affiliation": "Nanjing University of Science and Technology,Computer Science and Engineering,Nanjing,China", + "ror_ids": [ + "https://ror.org/00xp9wg62" + ] + }, + { + "affiliation": "Research Center of Clinical Medicine, Affiliated Hospital of Nantong University, Nantong 226001, Jiangsu, China", + "ror_ids": [ + "https://ror.org/001rahr89" + ] + }, + { + "affiliation": "Vacuum Electronics School of Electronic Science and Engineering, University of Electronic Science and Technology of China,National Key Laboratory of Science and Technology,Chengdu,P. R. China,611731", + "ror_ids": [ + "https://ror.org/04qr3zq92" + ] + }, + { + "affiliation": "Department of Earth Sciences, Faculty of Geosciences, Department of Earth Sciences Utrecht University Utrecht Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "Beijing Technology and Business University", + "ror_ids": [ + "https://ror.org/013e0zm98" + ] + }, + { + "affiliation": "University of Kentucky, College of Pharmacy, Lexington, Kentucky", + "ror_ids": [ + "https://ror.org/02k3smh20" + ] + }, + { + "affiliation": "University Hospitals Leicester , Leicester , United Kingdom", + "ror_ids": [ + "https://ror.org/02fha3693" + ] + }, + { + "affiliation": "Completion Energy", + "ror_ids": [] + }, + { + "affiliation": "Senior programme officer at the British Council", + "ror_ids": [ + "https://ror.org/00t3pr326" + ] + }, + { + "affiliation": "Orthopaedic Surgery UCSF San Francisco CA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Research Center of Systemic Autoinflammatory Diseases and Behçet’s Disease, and Rheumatology-Ophthalmology Collaborative Uveitis Center, Department of Medical Sciences, Surgery and Neurosciences, University of Siena, Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "Department of Infectious Diseases, Robert Koch Institute, Berlin, Germany", + "ror_ids": [ + "https://ror.org/01k5qnb77" + ] + }, + { + "affiliation": "Polymer Composites Lab, Department of Chemical Engineering, A.C. Tech Anna University Chennai‐600 025 Tamil Nadu India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Istituto di Chimica Farmaceutica e Tossicologica, Università degli Studi di Urbino “Carlo Bo”, Piazza Rinascimento 6, 61029 Urbino, Italy, Dipartimento Farmaceutico, Università degli Studi di Parma, V.le G. P. Usberti 27/A Campus Universitario, 43100 Parma, Italy, and Dipartimento di Farmacologia, Chemioterapia e Tossicologia Medica, Università degli Studi di Milano, Via Vanvitelli 32, 20129 Milano, Italy", + "ror_ids": [ + "https://ror.org/04q4kt073", + "https://ror.org/02k7wn190", + "https://ror.org/00wjc7c48" + ] + }, + { + "affiliation": "Genomics Center and DF/HCC Cancer Proteomics Core, Beth Israel Deaconess Medical Center, Harvard Medical School, Boston, Massachusetts", + "ror_ids": [ + "https://ror.org/04drvxt59", + "https://ror.org/03vek6s52", + "https://ror.org/03pvyf116" + ] + }, + { + "affiliation": "Hunan University of Science and Technology", + "ror_ids": [ + "https://ror.org/02m9vrb24" + ] + }, + { + "affiliation": "University of Illinois at Urbana-Champaign,", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "AIDS Research Institute, IrsiCaixa, Badalona, Spain;", + "ror_ids": [ + "https://ror.org/001synm23" + ] + }, + { + "affiliation": "Laboratory of Geomatics, Geodesy and GIS, Department of Civil, Chemical and Environmental Engineering, University of Genoa, Genoa, Italy", + "ror_ids": [ + "https://ror.org/0107c5v14" + ] + }, + { + "affiliation": "a Staff Tutor in Science , Open University in Wales , Cardiff", + "ror_ids": [] + }, + { + "affiliation": "Department of Engineering Mechanics, University of Nebraska—Lincoln, Lincoln, Nebraska 68588-0347", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "NASA, Johnson Space Center, Houston, TX", + "ror_ids": [ + "https://ror.org/04xx4z452" + ] + }, + { + "affiliation": "National Personal Protection Technology Laboratory, National Institute for Occupational Safety and Health, USA", + "ror_ids": [ + "https://ror.org/0502a2655" + ] + }, + { + "affiliation": "Hacettepe Üniversitesi Eğitim Bilimleri Enstitüsü", + "ror_ids": [ + "https://ror.org/04kwvgz42" + ] + }, + { + "affiliation": "Toyo University", + "ror_ids": [ + "https://ror.org/059d6yn51" + ] + }, + { + "affiliation": "Dept. of Information Systems UMBC 1000 Hilltop Circle Baltimore MD 21250 USA", + "ror_ids": [] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Seoul St. Mary's Hospital, College of Medicine, The Catholic University of Korea, Seoul, Korea.", + "ror_ids": [ + "https://ror.org/01fpnj063", + "https://ror.org/056cn0e37" + ] + }, + { + "affiliation": "National Key Laboratory of Biochemical Engineering Institute of Process Engineering Chinese Academy of Sciences Beijing 100190 P. R. China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/03j4x9j18" + ] + }, + { + "affiliation": "Universität Münster, Germany", + "ror_ids": [ + "https://ror.org/00pd74e08" + ] + }, + { + "affiliation": "Department of Medical Oncology, Chelsea and Westminster Hospital, London, UK", + "ror_ids": [ + "https://ror.org/038zxea36" + ] + }, + { + "affiliation": "Dr Phillip Frost Department of Dermatology and Miami Itch Center University of Miami Miami Florida USA", + "ror_ids": [ + "https://ror.org/02dgjyy92" + ] + }, + { + "affiliation": "Department of Medical Biotechnologies and Translational Medicine, University of Milan, Milan, Italy", + "ror_ids": [ + "https://ror.org/00wjc7c48" + ] + }, + { + "affiliation": "Department of Drug Design and Pharmacology, Faculty of Health and Medical Sciences University of Copenhagen Copenhagen Denmark", + "ror_ids": [ + "https://ror.org/035b05819" + ] + }, + { + "affiliation": "Institute of Development Policy, University of Antwerp", + "ror_ids": [ + "https://ror.org/008x57b05" + ] + }, + { + "affiliation": "Institute of Physics, Aalborg University, DK-9220 Aalborg O/st, Denmark", + "ror_ids": [ + "https://ror.org/04m5j1k67" + ] + }, + { + "affiliation": "Maine, United States", + "ror_ids": [] + }, + { + "affiliation": "Shell E&P", + "ror_ids": [ + "https://ror.org/00b5m4j81" + ] + }, + { + "affiliation": "Academy of Integrative Medicine, Fujian University of Traditional Chinese Medicine, Fuzhou, Fujian 350122, P.R. China", + "ror_ids": [ + "https://ror.org/05n0qbd70" + ] + }, + { + "affiliation": "School of Medicine, Case Western Reserve University, Cleveland, Ohio", + "ror_ids": [ + "https://ror.org/051fd9666" + ] + }, + { + "affiliation": "Indiana University, IN", + "ror_ids": [ + "https://ror.org/01kg8sb98" + ] + }, + { + "affiliation": "1Moores Cancer Center, University of California San Diego, La Jolla, CA,", + "ror_ids": [ + "https://ror.org/0168r3w48", + "https://ror.org/01qkmtm61" + ] + }, + { + "affiliation": "Northeastern University, Boston, USA", + "ror_ids": [ + "https://ror.org/04t5xt781" + ] + }, + { + "affiliation": "College of Resource and Environmental Engineering, Guizhou University, Guiyang 550012, China.", + "ror_ids": [ + "https://ror.org/02wmsc916" + ] + }, + { + "affiliation": "Chinese Academy of Medical Sciences and Peking Union Medical College", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "Biogen Cambridge MA United States", + "ror_ids": [ + "https://ror.org/02jqkb192" + ] + }, + { + "affiliation": "Bristol Myers Squibb, Princeton, NJ", + "ror_ids": [ + "https://ror.org/00gtmwv55" + ] + }, + { + "affiliation": "Department of Cardiology Tianjin Institute of Cardiology 2nd Hospital of Tianjin Medical University Tianjin China", + "ror_ids": [ + "https://ror.org/02mh8wx89", + "https://ror.org/03rc99w60" + ] + }, + { + "affiliation": "School of Geography, Earth and Environmental Sciences, University of Plymouth, Plymouth, UK", + "ror_ids": [ + "https://ror.org/008n7pv89" + ] + }, + { + "affiliation": "Doctoral Program in Rehabilitation Sciences, The University of Western Ontario, London, Ontario, Canada", + "ror_ids": [ + "https://ror.org/02grkyz14" + ] + }, + { + "affiliation": "China University of Petroleum-Beijing", + "ror_ids": [ + "https://ror.org/041qf4r12" + ] + }, + { + "affiliation": "Harvard MEEI, Boston, United States", + "ror_ids": [] + }, + { + "affiliation": "Department of Communication EngineeringNanjing University of Science and Technology Nanjing China", + "ror_ids": [ + "https://ror.org/00xp9wg62" + ] + }, + { + "affiliation": "College of Engineering, Peking University,Beijing,CHINA,100871", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "University of Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Department of Microbiology and Parasitology", + "ror_ids": [] + }, + { + "affiliation": "Haskins Laboratories, New York 17, New York", + "ror_ids": [ + "https://ror.org/003j5cv40" + ] + }, + { + "affiliation": "University of Tehran, Tehran, Iran", + "ror_ids": [ + "https://ror.org/05vf56z40" + ] + }, + { + "affiliation": "Department of Civil Engineering, National Institute of Technology, Tripura, India", + "ror_ids": [] + }, + { + "affiliation": "U.S. Army Research Institute of Environmental Medicine, Heat Research Division, Natick, Massachusettes 01760-5007", + "ror_ids": [ + "https://ror.org/00rg6zq05", + "https://ror.org/00afsp483" + ] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biology, Pennsylvania State University College of Medicine, Hershey, Pennsylvania 17033", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Department of Chemistry University of Oxford, Chemistry Research Laboratory Mansfield Road Oxford OX1 3TA UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Universidad de Concepción 1 Departamento de Fisíca, , Casilla 160-C, Concepción, Chile and Center for Optics and Photonics, , Casilla 4012, Concepción, Chile", + "ror_ids": [ + "https://ror.org/0460jpj73" + ] + }, + { + "affiliation": "School of Cardiovascular and Metabolic Health, British Heart Foundation Centre of Research Excellence University of Glasgow Glasgow UK", + "ror_ids": [ + "https://ror.org/00vtgdb53", + "https://ror.org/02wdwnk04" + ] + }, + { + "affiliation": "Department of Computer Science and Media Technology Malmö University Malmö Sweden", + "ror_ids": [ + "https://ror.org/05wp7an13" + ] + }, + { + "affiliation": "Department of Chemistry, Indian Institute of Technology, Kanpur-208016, India and Ambedkar Centre for Biomedical Research, University of Delhi, Delhi-110007, India", + "ror_ids": [ + "https://ror.org/04gzb2213", + "https://ror.org/05pjsgx75" + ] + }, + { + "affiliation": "Leibniz-Institut für Katalyse e. V. an der Universität Rostock Albert-Einstein-Straβe 29a 18059 Rostock Germany", + "ror_ids": [ + "https://ror.org/03zdwsf69", + "https://ror.org/029hg0311" + ] + }, + { + "affiliation": "Baldota Institute of Digestive Sciences, Global Hospitals, Mumbai, Maharashtra, India", + "ror_ids": [ + "https://ror.org/020cs8b78" + ] + }, + { + "affiliation": "Imperial College London", + "ror_ids": [ + "https://ror.org/041kmwe10" + ] + }, + { + "affiliation": "CEMAGREF, Unité de recherche hydrologie-hydraulique3 bis, quai Chauveau,CP 220,69336 Lyon cedex 09", + "ror_ids": [] + }, + { + "affiliation": "Department of Biology and Environmental Studies Program, New York University, 1009 Silver Center, 100 Washington Square East, New York, NY 10002, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "International University Schloss Reichartshausen, Germany", + "ror_ids": [] + }, + { + "affiliation": "Beijing Key Lab of Traffic Data Analysis and Mining, Beijing Jiaotong University, China", + "ror_ids": [ + "https://ror.org/01yj56c84" + ] + }, + { + "affiliation": "Department of Sociology, Umeå University, Sweden", + "ror_ids": [ + "https://ror.org/05kb8h459" + ] + }, + { + "affiliation": "Division of Biology, Beckman Institute 139-74, California Institute of Technology, Pasadena, California 91125, USA", + "ror_ids": [ + "https://ror.org/05dxps055" + ] + }, + { + "affiliation": "School of Biosciences, College of Life and Environmental Sciences, University of Birmingham, Edgbaston, Birmingham B15 2TT, U.K.", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "National Institute of Public Finance and Policy, New Delhi, India", + "ror_ids": [ + "https://ror.org/03r6d1b04" + ] + }, + { + "affiliation": "Laboratory of Molecular Nanostructures and Nanotechnology", + "ror_ids": [] + }, + { + "affiliation": "Tarleton State University, U.S.A.", + "ror_ids": [ + "https://ror.org/0263v9e25" + ] + }, + { + "affiliation": "Associate Director, School of Transportation Engineering, Tongji Univ., Shanghai 201804, China; Associate Director, The Key Laboratory of Road and Traffic Engineering, Ministry of Education, Shanghai 201804, China (corresponding author).", + "ror_ids": [ + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "School of Public Administration, Beihang University, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "INAC-SyMMES", + "ror_ids": [] + }, + { + "affiliation": "Chronic Respiratory Diseases Research Center, National Research Institute of Tuberculosis and Lung Diseases (NRITLD) Shahid Beheshti University of Medical Sciences Tehran Iran", + "ror_ids": [ + "https://ror.org/034m2b326", + "https://ror.org/039mjhc39" + ] + }, + { + "affiliation": "b Zhongguo jiaoyubao", + "ror_ids": [] + }, + { + "affiliation": "Shanghai Pulmonary Diseases Hosptial, Shanghai, China", + "ror_ids": [ + "https://ror.org/033nbnf69" + ] + }, + { + "affiliation": "Diabetes Center, Tokyo Women’s Medical University, Tokyo, Japan;", + "ror_ids": [ + "https://ror.org/03kjjhe36" + ] + }, + { + "affiliation": "Department of Anthropology University of Colorado Denver", + "ror_ids": [ + "https://ror.org/02hh7en24" + ] + }, + { + "affiliation": "Institute of Petroleum & Natural Gas Engineering, Mehran University of Engineering & Technology, Jamshoro 76062, Sindh, Pakistan", + "ror_ids": [ + "https://ror.org/0575ttm03" + ] + }, + { + "affiliation": "Division of Digestive Diseases, Department of Medicine, Center for Ulcer Research and Education: Digestive Diseases Research Center David Geffen School of Medicine and Molecular Biology Institute, University of California, Los Angeles, California; and", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Wessex Institute for Health Research and Development, Level B, South Academic Block, Southampton General Hospital, Southampton SO16 6YD, U.K.", + "ror_ids": [ + "https://ror.org/011cztj49" + ] + }, + { + "affiliation": "Stanford University Medical Center, Stanford, California, USA", + "ror_ids": [ + "https://ror.org/03mtd9a03", + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, Center for Fetal Care and High-Risk Pregnancy, University of Chieti, Chieti, Italy", + "ror_ids": [ + "https://ror.org/00qjgza05" + ] + }, + { + "affiliation": "PGY2 Critical Care Pharmacy Residency Program Methodist Healthcare – University Hospital Memphis, TN", + "ror_ids": [] + }, + { + "affiliation": "Makerere University, Uganda", + "ror_ids": [ + "https://ror.org/03dmz0111" + ] + }, + { + "affiliation": "a Royal Lyceum , Messina", + "ror_ids": [] + }, + { + "affiliation": "National Academy of Sciences of Azerbaijan", + "ror_ids": [ + "https://ror.org/006m4q736" + ] + }, + { + "affiliation": "Laboratorio de Astronomía, Geodesia y Cartografía, Departamento de Matemáticas, Facultad de Ciencias, Campus de Puerto Real, Universidad de Cádiz, 11510 Puerto Real, Spain", + "ror_ids": [ + "https://ror.org/04mxxkb11" + ] + }, + { + "affiliation": "Nutrition and Food SciencesTexas Woman’s UniversityBox‐425888DentonTexas76204", + "ror_ids": [ + "https://ror.org/04dyzkj40" + ] + }, + { + "affiliation": "Southeast University 3 RF Integrated Circuits and Systems Engineering Research Center of Ministry of Education of China, , Nanjing, 210096, China", + "ror_ids": [ + "https://ror.org/04ct4d772" + ] + }, + { + "affiliation": "Purdue University, West Lafayette, IN, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Division of Neonatology, Department of Neonatology, Children’s Hospital, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "College of Pharmacy and Nutrition, University of Saskatchewan, Saskatchewan, Canada", + "ror_ids": [ + "https://ror.org/010x8gc63" + ] + }, + { + "affiliation": "Department of Basic Medicinal Sciences, Graduate School of Pharmaceutical Sciences, Nagoya University, Furo-cho, Chikusa, Nagoya 464-8601, Japan", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Department of Management, Fowler College of Business San Diego State University San Diego California USA", + "ror_ids": [ + "https://ror.org/0264fdx42" + ] + }, + { + "affiliation": "Department of Applied and Computational Mathematics and Statistics, University of Notre Dame, Notre Dame, Indiana 46556 USA", + "ror_ids": [ + "https://ror.org/00mkhxb43" + ] + }, + { + "affiliation": "Academic Medical Center, University of Amsterdam; Department of Clinical Epidemiology, Biostatistics and Bioinformatics; P.O. Box 22700 Amsterdam Netherlands 1100 DE", + "ror_ids": [ + "https://ror.org/04dkp9463", + "https://ror.org/03t4gr691" + ] + }, + { + "affiliation": "Department of Sociology, University of Bucharest, Bucharest, Romania", + "ror_ids": [ + "https://ror.org/02x2v6p15" + ] + }, + { + "affiliation": "Department of Physical and Occupational Therapy, Universidade Federal de Minas Gerais Bela Horizonte, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0176yjw32" + ] + }, + { + "affiliation": "California State University at Los Angeles", + "ror_ids": [ + "https://ror.org/0294hxs80" + ] + }, + { + "affiliation": "Careggi Univ Hosp, Florence, Italy", + "ror_ids": [] + }, + { + "affiliation": "Russian Research Institute of Economics, Politics and Law in Science and Technology", + "ror_ids": [] + }, + { + "affiliation": "Institute of Advanced Energy, Kyoto University, Uji, Kyoto 611-0011, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Dirección General de Salud Pública. Consejería de Sanidad. Comunidad de Madrid", + "ror_ids": [ + "https://ror.org/040scgh75" + ] + }, + { + "affiliation": "From the Department of Radiology, Veterans Administration Hospital, Minneapolis, and the University of Minnesota, Minneapolis, Minnesota.", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "Universidad del Valle de Guatemala, Guatemala City, Guatemala", + "ror_ids": [ + "https://ror.org/03nyjqm54" + ] + }, + { + "affiliation": "Department of Chemistry, Box 351700, University of Washington, Seattle, Washington 98195-1700", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "1West Virginia Univ.", + "ror_ids": [ + "https://ror.org/011vxgd24" + ] + }, + { + "affiliation": "Central Research Division, Pfizer Inc., Groton, Connecticut 06340.", + "ror_ids": [ + "https://ror.org/01xdqrp08" + ] + }, + { + "affiliation": "Sorbonne Universités, UPMC Univ Paris 06, CNRS, UMR 7197, Laboratoire de Réactivité de Surface, 4 Place Jussieu, Case 178, F-75252 Paris, France", + "ror_ids": [ + "https://ror.org/02en5vm52", + "https://ror.org/04vthwx70" + ] + }, + { + "affiliation": "Department of Aeronautics and Astronautics, Massachusetts Institute of Technology, 77 Massachusetts Avenue, Cambridge, Massachusetts 02139, United States", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Department of Agroengineering, Faculty of Environmental Management and Agriculture, West Pomeranian University of Technology in Szczecin, 70-310 Szczecin, Poland", + "ror_ids": [ + "https://ror.org/0596m7f19" + ] + }, + { + "affiliation": "AT&T Bell Laboratories 480 Red Hill Road Middletown NJ 07748", + "ror_ids": [ + "https://ror.org/02bbd5539" + ] + }, + { + "affiliation": "a Department of Physics of Complex Systems , The Weizmann Institute of Science , 76100 Rehovot , Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "Franciscan Health", + "ror_ids": [ + "https://ror.org/01hbes477" + ] + }, + { + "affiliation": "Division of Pediatrics; Department of Clinical Science, Intervention and Technology; Karolinska Institutet; Stockholm; Sweden", + "ror_ids": [ + "https://ror.org/056d84691" + ] + }, + { + "affiliation": "Tokyo University of Science", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Department of Integrated Studies in Education, Faculty of Education, McGill University, Montreal, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "UK Dementia Research Institute, University College London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895", + "https://ror.org/02wedp412" + ] + }, + { + "affiliation": "Health Psychology, Heart and Lung Directorate, Great Ormond Street Hospital for Children, London, UK", + "ror_ids": [ + "https://ror.org/00zn2c847" + ] + }, + { + "affiliation": "Electricité de France, Lyon, France", + "ror_ids": [ + "https://ror.org/03wb8xz10" + ] + }, + { + "affiliation": "Faculty of Pharmacy and Pharmaceutical Sciences, University of Alberta, Edmonton, Canada.", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Okayama University", + "ror_ids": [ + "https://ror.org/02pc6pc55" + ] + }, + { + "affiliation": "Department of Psychiatry, Sackler Faculty of Medicine, Tel Aviv University, Israel", + "ror_ids": [ + "https://ror.org/04mhzgx49" + ] + }, + { + "affiliation": "University of Patras,Computer Engineering and Informatics Department,Patras,Greece", + "ror_ids": [ + "https://ror.org/017wvtq80" + ] + }, + { + "affiliation": "Centre for Biomedical Ethics, Yong Loo Lin School of Medicine, Singapore", + "ror_ids": [] + }, + { + "affiliation": "National Center for Atmospheric Research, Boulder, Colorado", + "ror_ids": [ + "https://ror.org/05cvfcr44" + ] + }, + { + "affiliation": "School of Allied Health Sciences, Faculty of Rehabilitation, Kitazato University", + "ror_ids": [ + "https://ror.org/00f2txz25" + ] + }, + { + "affiliation": "KU Leuven", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology Bezmialem University, Faculty of Medicine Istanbul Turkey", + "ror_ids": [ + "https://ror.org/04z60tq39" + ] + }, + { + "affiliation": "Otto Schott Institute of Materials Research, University of Jena", + "ror_ids": [] + }, + { + "affiliation": "Shandong University Qilu Hospital", + "ror_ids": [ + "https://ror.org/056ef9489", + "https://ror.org/0207yh398" + ] + }, + { + "affiliation": "Deakin University-Psychology; Geelong; Vic.; 5220; Australia", + "ror_ids": [ + "https://ror.org/02czsnj07" + ] + }, + { + "affiliation": "Dept of Computer Science Engineering, B.T.L. Institute of Technology, Bangalore, India", + "ror_ids": [] + }, + { + "affiliation": "Yale Law School", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Department of Physiology, All India Institute of Medical Sciences, New Delhi - India", + "ror_ids": [ + "https://ror.org/02dwcqs71" + ] + }, + { + "affiliation": "School of Mechanics and Safety Engineering, Zhengzhou University , Zhengzhou , 450001, Henan , China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Department of Physiology and Biophysics, University of TennesseeCollege of Medicine, Memphis 38163.", + "ror_ids": [ + "https://ror.org/00xzqjh13" + ] + }, + { + "affiliation": "Department of Psychology, Princeton University, USA", + "ror_ids": [ + "https://ror.org/00hx57361" + ] + }, + { + "affiliation": "M.Sc. Nursing II Year, Medical Surgical Nursing Department, Saveetha College of Nursing, Saveetha Institute of Medical and Technical Sciences, Chennai, India.", + "ror_ids": [] + }, + { + "affiliation": "Institut für Analysis, Dynamik und Modellierung Universität Stuttgart Pfaffenwaldring 57 Stuttgart 70569 Germany", + "ror_ids": [ + "https://ror.org/04vnq7t77" + ] + }, + { + "affiliation": "Fraunhofer Institute for Systems and Innovation Research (ISI), Breslauer Str. 48, D-76139 Karlsruhe", + "ror_ids": [ + "https://ror.org/03vyq6t71" + ] + }, + { + "affiliation": "China Three Gorges University", + "ror_ids": [ + "https://ror.org/0419nfc77" + ] + }, + { + "affiliation": "Department of Fisheries & Aquaculture, Government of Newfoundland & Labrador, St. John’s, Newfoundland & Labrador, Canada, A1B 4J6;", + "ror_ids": [ + "https://ror.org/01jet5b79" + ] + }, + { + "affiliation": "College of Teacher Education-MANUU, Darbhanga, Bihar", + "ror_ids": [] + }, + { + "affiliation": "Department of Surgery, Medical College of Wisconsin and Zablocki VA Medical Center, Milwaukee, Wisconsin", + "ror_ids": [ + "https://ror.org/00qqv6244", + "https://ror.org/0176arq92" + ] + }, + { + "affiliation": "Univ Rennes, ENSCR, CNRS, ISCR (Institut des Sciences Chimiques de Rennes) – UMR 6226, F-35000 Rennes, France", + "ror_ids": [ + "https://ror.org/015m7wh34", + "https://ror.org/00adwkx90", + "https://ror.org/01h0ffh48", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Genesis Housing Association, Genesis Housing Association, London, UK", + "ror_ids": [] + }, + { + "affiliation": "Department of Anatomy (M.P.), University of Turku, 20520 Turku, Finland", + "ror_ids": [ + "https://ror.org/05vghhr25" + ] + }, + { + "affiliation": "Goucher College", + "ror_ids": [ + "https://ror.org/055ag3e81" + ] + }, + { + "affiliation": "Bard College, USA", + "ror_ids": [ + "https://ror.org/04yrgt058" + ] + }, + { + "affiliation": "Mark Straney & Associates Campbelltown, NSW.", + "ror_ids": [] + }, + { + "affiliation": "Rheumatology, Department of Pediatrics, Alberta Children’s Hospital (ACH), ACH Research Institute, University of Calgary, Alberta, Canada", + "ror_ids": [ + "https://ror.org/03yjb2x39", + "https://ror.org/00sx29x36" + ] + }, + { + "affiliation": "Department of Medical Microbiology, School of Biomedical and Laboratory Sciences, College of Medicine and Health Sciences, University of Gondar, P.O. Box 196, Gondar, Ethiopia", + "ror_ids": [ + "https://ror.org/0595gz585" + ] + }, + { + "affiliation": "University of Stirling", + "ror_ids": [ + "https://ror.org/045wgfr59" + ] + }, + { + "affiliation": "Graduate School of Systems Design, Tokyo Metropolitan University, 1-1 Minami-Osawa, Hachioji, Tokyo 192-0397, Japan", + "ror_ids": [ + "https://ror.org/00ws30h19" + ] + }, + { + "affiliation": "bJ.R. Macdonald Laboratory, Department of Physics, Kansas State University, Manhattan, KS 66506, USA", + "ror_ids": [ + "https://ror.org/05p1j8758" + ] + }, + { + "affiliation": "Universidade Federal de São Carlos, Brazil", + "ror_ids": [ + "https://ror.org/00qdc6m37" + ] + }, + { + "affiliation": "Department of Surgical Sciences, Section of Transplantation Surgery, Uppsala University Hospital, Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/01apvbh93" + ] + }, + { + "affiliation": "Occupational therapist & ergonomist, kjacobs@bu.edu, workjournal.org, blogs.bu.edu/kjacobs/", + "ror_ids": [] + }, + { + "affiliation": "McGill University 1 Department of Physics, , Montreal, Quebec H3A 2T8, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "University of Toronto", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Department of Food Science and Technology Federal University of Technology Akure Nigeria", + "ror_ids": [ + "https://ror.org/01pvx8v81" + ] + }, + { + "affiliation": "Shenyang Ligong University", + "ror_ids": [ + "https://ror.org/03m20nr07" + ] + }, + { + "affiliation": "Univ. Grenoble Alpes, IRD, CNRS, Grenoble INP, Insitut des Géosciences de l’Environnement (IGE, UMR 5001), 38000, Grenoble, France", + "ror_ids": [ + "https://ror.org/01wwcfa26", + "https://ror.org/02rx3b187", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "The Weizmann Institute of Science, Rehovoth, Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "University of Missouri-Columbia", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "Asia Pacific University of Technology and Innovation,Kuala Lumpur,Malaysia", + "ror_ids": [ + "https://ror.org/03c52a632" + ] + }, + { + "affiliation": "Department of Mathematics, Universidad de Las Palmas Gran Canaria, Las Palmas de Gran Canaria, Spain", + "ror_ids": [ + "https://ror.org/01teme464" + ] + }, + { + "affiliation": "State Key Laboratory of Functions and Applications of Medicinal Plants, Guizhou Provincial Key Laboratory of Pharmaceutics, Guizhou Medical University, Guiyang, China", + "ror_ids": [ + "https://ror.org/035y7a716" + ] + }, + { + "affiliation": "Department of Applied Chemistry, Faculty of Technology, Kanagawa University", + "ror_ids": [ + "https://ror.org/02j6c0d67" + ] + }, + { + "affiliation": "a Barnard College, Columbia University , New York City , USA", + "ror_ids": [ + "https://ror.org/04rt94r53", + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "Modern Agricultural Engineering Key Laboratory at Universities of Education Department of Xinjiang Uygur Autonomous Region Tarim University Alar Xinjiang China", + "ror_ids": [ + "https://ror.org/05202v862" + ] + }, + { + "affiliation": "Banaras Hindu University", + "ror_ids": [ + "https://ror.org/04cdn2797" + ] + }, + { + "affiliation": "Department of Propaedeutics of Internal Diseases Faculty of Medicine Medical University - Plovdiv, Bulgaria", + "ror_ids": [ + "https://ror.org/02kzxd152" + ] + }, + { + "affiliation": "1 MTA Pszichológiai Kutatóintézete, Pszichofiziológiai Osztály, Fejlődés-pszichofiziológiai Csoport Szondi u. 83–85. 1068 Budapest", + "ror_ids": [] + }, + { + "affiliation": "University College London , London , United Kingdom of Great Britain & Northern Ireland", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Department of Neurology Yale University School of Medicine New Haven CT USA", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "1Baylor College of Medicine, Houston, TX;", + "ror_ids": [ + "https://ror.org/02pttbw34" + ] + }, + { + "affiliation": "The+University+of+Alabama+at+Birmingham", + "ror_ids": [ + "https://ror.org/008s83205" + ] + }, + { + "affiliation": "Marine Bioscience Facility, Naval Missile Center, Point Mugu, California 93041", + "ror_ids": [] + }, + { + "affiliation": "Marshfield Medical Research Foundation, USA", + "ror_ids": [] + }, + { + "affiliation": "STMicroelectronics, Catania, Italy", + "ror_ids": [ + "https://ror.org/053bqv655" + ] + }, + { + "affiliation": "Kyoto Prefectural University Of Medicine , Japan", + "ror_ids": [ + "https://ror.org/028vxwa22" + ] + }, + { + "affiliation": "National Centre for Atmospheric Science Oxford UK", + "ror_ids": [ + "https://ror.org/01wwwe276" + ] + }, + { + "affiliation": "i-STAT Corporation, 436 Hazeldean Road, Kanata, Ontario K2L 1T9, Canada", + "ror_ids": [] + }, + { + "affiliation": "Independent, Moscow, Russia,", + "ror_ids": [] + }, + { + "affiliation": "Institute of Education , London", + "ror_ids": [] + }, + { + "affiliation": "Park Seismic, LLC, Shelton, Connecticut, USA", + "ror_ids": [] + }, + { + "affiliation": "Department of Information Systems, University of Maryland Baltimore County, Baltimore, MD 21250, USA", + "ror_ids": [ + "https://ror.org/02qskvh78" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, University of Pittsburgh, Kaufmann Medical Building, Suite 1010, 3471 Fifth Avenue, Pittsburgh, Pennsylvania 15213, USA.", + "ror_ids": [ + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Department of Fixed Prosthodontics, Nihon University School of Dentistry", + "ror_ids": [ + "https://ror.org/05jk51a88" + ] + }, + { + "affiliation": "Dept. of Psychology and Education, University of Sio Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "UFC, Brazil", + "ror_ids": [ + "https://ror.org/03srtnf24" + ] + }, + { + "affiliation": "Key Lab of Organic Optoelectronics and Molecular Engineering of Ministry of Education", + "ror_ids": [] + }, + { + "affiliation": "Epidemiology Program, College of Public Health and Human Sciences and", + "ror_ids": [] + }, + { + "affiliation": "International Studies Foundation, Madrid, Spain", + "ror_ids": [] + }, + { + "affiliation": "From the Division of Urology, Henry Ford Hospital, Detroit, Michigan", + "ror_ids": [ + "https://ror.org/0193sb042" + ] + }, + { + "affiliation": "University of Southampton", + "ror_ids": [ + "https://ror.org/01ryk1543" + ] + }, + { + "affiliation": "West Anhui University", + "ror_ids": [ + "https://ror.org/046ft6c74" + ] + }, + { + "affiliation": "Department of Chemistry, University of Oxford, Chemistry Research Laboratory, 12 Mansfield Road, Oxford OX1 3TA, United Kingdom", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Head, Bridge Research, Bridge Office, Ontario Ministry of Transportation, 301 St. Paul St., St. Catharines ON, Canada L2R 7R4.", + "ror_ids": [ + "https://ror.org/009nawz64" + ] + }, + { + "affiliation": "Department of Pre-Clinical Science, Faculty of Medicine and Health Sciences, Universiti Tunku Abdul Rahman, Bandar Sungai Long, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/050pq4m56" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Carnegie Mellon University, 5000 Forbes Avenue, Pittsburgh, Pennsylvania, 15213, United States", + "ror_ids": [ + "https://ror.org/05x2bcf33" + ] + }, + { + "affiliation": "State Russian Museum", + "ror_ids": [] + }, + { + "affiliation": "Geodynamics Research Center, Ehime University, 2-5 Bunkyo-cho., Matsuyama 790-8577, Ehime, Japan", + "ror_ids": [ + "https://ror.org/017hkng22" + ] + }, + { + "affiliation": "Laboratoire d'Analyse et d'Architecture des Systèmes, Centre National de la Recherche Scientifique, 7 Avenue du Colonel Roche, 31077 Toulouse, France", + "ror_ids": [ + "https://ror.org/03vcm6439", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Wuhan 430074", + "ror_ids": [] + }, + { + "affiliation": "PPQD\n Kabul\n Afghanistan", + "ror_ids": [] + }, + { + "affiliation": "Sussex University, England", + "ror_ids": [ + "https://ror.org/00ayhx656" + ] + }, + { + "affiliation": "From the Department of Health Policy, George Washington University School of Public Health and Health Services, Washington, DC.", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "Graphic Era University, India", + "ror_ids": [ + "https://ror.org/03wqgqd89" + ] + }, + { + "affiliation": "School of Computing, Ulster University, Newtownabbey, Co. Antrim, BT37 0QB, UK", + "ror_ids": [ + "https://ror.org/01yp9g959" + ] + }, + { + "affiliation": "Department of Radiology, Charité Universitätsmedizin Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/001w7jn25" + ] + }, + { + "affiliation": "Geosciences Department Idaho National Engineering and Environmental Laboratory P.O. Box 1625, MS 2107 Idaho Falls ID 83415", + "ror_ids": [] + }, + { + "affiliation": "Departments of Cardiology, University Hospital of Copenhagen, DK-2650 Hvidovre, Denmark", + "ror_ids": [ + "https://ror.org/05bpbnx46" + ] + }, + { + "affiliation": "Pearlstone Center for Aeronautical Engineering Studies, Department of Mechanical Engineering, Ben-Gurion University of the Negev, P. O. Box 653, Beer-Sheva, 84105, Israel", + "ror_ids": [ + "https://ror.org/05tkyf982" + ] + }, + { + "affiliation": "Zhejiang University of Science and Technology Department of Energy and Environmental System Engineering, , Hangzhou, 310023, China", + "ror_ids": [ + "https://ror.org/05mx0wr29" + ] + }, + { + "affiliation": "Department of Otolaryngology Head and Neck Surgery Chinese PLA General Hospital Beijing China", + "ror_ids": [ + "https://ror.org/04gw3ra78" + ] + }, + { + "affiliation": "Royal Brisbane and Women's Hospital, Brisbane, QLD.", + "ror_ids": [ + "https://ror.org/05p52kj31" + ] + }, + { + "affiliation": "Veterans Administration Medical Center Syracuse New York", + "ror_ids": [ + "https://ror.org/0332k3m42" + ] + }, + { + "affiliation": "Department of Radiation Oncology, Kyung Hee University Hospital at Gangdong, Seoul, Korea.", + "ror_ids": [ + "https://ror.org/05x9xyq11" + ] + }, + { + "affiliation": "Department of Applied Biology, College of Agriculture and Life Sciences, chungnam National University", + "ror_ids": [ + "https://ror.org/0227as991" + ] + }, + { + "affiliation": "Visterra Inc., Waltham, United States of America", + "ror_ids": [ + "https://ror.org/01ph20k51" + ] + }, + { + "affiliation": "Medicine, Universiti Putra Malaysia, Malaysia", + "ror_ids": [ + "https://ror.org/02e91jd64" + ] + }, + { + "affiliation": "Department of Physics, Kyiv National University of Technologies and Design, Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/050vh8780" + ] + }, + { + "affiliation": "The University of Texas at Houston (GWH, NHW, ANM, DJP), Memorial Hermann Hospital-Texas Medical Center, Houston (GWH, NHW, DJP), Baylor College of Medicine, Houston, Texas (XY, AO, CAK)", + "ror_ids": [ + "https://ror.org/02pttbw34", + "https://ror.org/00dqsbj20", + "https://ror.org/01gek1696", + "https://ror.org/049d9a475" + ] + }, + { + "affiliation": "University of Novi Sad, Faculty of Medicine, Novi Sad, Serbia", + "ror_ids": [ + "https://ror.org/00xa57a59" + ] + }, + { + "affiliation": "Catholic University of Brasília, Brazil", + "ror_ids": [ + "https://ror.org/0058wy590" + ] + }, + { + "affiliation": "Community Health Sciences, University of Calgary, Calgary, Alberta, Canada.", + "ror_ids": [ + "https://ror.org/03yjb2x39" + ] + }, + { + "affiliation": "BIOCHEMISTRY & BIOPHYSICS UNIVERSITY OF NORTH CAROLINA CHAPEL HILL NC", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Department of Economics, University of Chicago, Chicago, Illinois", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "University of Manchester Institute of Science and Technology", + "ror_ids": [ + "https://ror.org/027m9bs27" + ] + }, + { + "affiliation": "Laboratory of Neurosciences, National Institute on Aging Intramural Research Program, National Institutes of Health, Baltimore, Maryland, USA", + "ror_ids": [ + "https://ror.org/049v75w11", + "https://ror.org/01cwqze88" + ] + }, + { + "affiliation": "Department of Pharmacology and Chemical Biology, Emory University School of Medicine, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Department of Statistics University of Oxford Oxford UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Laboratoire Central de Recherche, Thomson-LCR, Domaine de Corbeville, 91401 Orsay Cedex, France", + "ror_ids": [] + }, + { + "affiliation": "Department of Embryology Carnegie Institution for Science Baltimore Maryland", + "ror_ids": [ + "https://ror.org/04jr01610" + ] + }, + { + "affiliation": "NXP Semiconductors, Austin, TX", + "ror_ids": [ + "https://ror.org/054fc6480" + ] + }, + { + "affiliation": "Key Laboratory of Protein and Peptide Pharmaceutical, Institute of Biophysics, Chinese Academy of Sciences, Beijing 100101, China;", + "ror_ids": [ + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "Department of Psychology, University of Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463" + ] + }, + { + "affiliation": "Department of Immunology, Weizmann Institute of Science, Rehovot, Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "Faculty of Medicine and Health Sciences, Physiotherapy Division, Department of Health and Rehabilitation Sciences, Stellenbosch University, Cape Town 8000, South Africa", + "ror_ids": [ + "https://ror.org/05bk57929" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Stanford University 1 , Stanford, California 94305, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "GretagMacbeth South Deerfield Massachusetts", + "ror_ids": [] + }, + { + "affiliation": "Materials Science Division, Argonne National Laboratory, Argonne, Illinois 60439-4838", + "ror_ids": [ + "https://ror.org/05gvnxz63" + ] + }, + { + "affiliation": "Department of Neurosurgery, Gangneung Asan Hospital, Gangneung 25440, Republic of Korea", + "ror_ids": [ + "https://ror.org/03pw3x387" + ] + }, + { + "affiliation": "Hearing Therapeutics, Ear Science Institute Australia, Queen Elizabeth II Medical Centre, Nedlands 6009, Perth, Western Australia, Australia", + "ror_ids": [ + "https://ror.org/0071a2k97", + "https://ror.org/05f5rab97" + ] + }, + { + "affiliation": "Center for the Intelligent Semiconductor Nano‐system Technology Research National Chiao Tung University Hsinchu 300 Taiwan", + "ror_ids": [ + "https://ror.org/00se2k293" + ] + }, + { + "affiliation": "Research Institute, Hospital for Sick Children, and Departments of", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "Jet Propulsion Laboratory, 4800 Oak Grove Dr., Pasadena, CA 91109", + "ror_ids": [ + "https://ror.org/027k65916" + ] + }, + { + "affiliation": "The Gene & Linda Voiland School of Chemical Engineering and Bioengineering, Washington State University, Pullman, Washington 99164, United States", + "ror_ids": [ + "https://ror.org/05dk0ce17" + ] + }, + { + "affiliation": "Department of Epidemiology and Biostatistics, University of South Carolina, Columbia, SC, USA", + "ror_ids": [ + "https://ror.org/02b6qw903" + ] + }, + { + "affiliation": "Department of Food Science and Human Nutrition and Center for Crops Utilization Research Iowa State University Ames Iowa 50011", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "Institute of Strategic Researches of Bashkortostan Republic", + "ror_ids": [] + }, + { + "affiliation": "SeraCare Life Sciences, 217 Perry Pkwy, Gaithersburg, MD, 20877", + "ror_ids": [ + "https://ror.org/02dcdb854" + ] + }, + { + "affiliation": "Hamad Medical Corporation, Doha, Qatar", + "ror_ids": [ + "https://ror.org/02zwb6n98" + ] + }, + { + "affiliation": "University of North Carolina at Chapel Hill USA", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Fraunhofer Center for Experimental Software Engineering Maryland (FC-MD), 4321 Hartwick Road, Suite 500, College Park, MD 20740, USA", + "ror_ids": [ + "https://ror.org/05sz9gw20" + ] + }, + { + "affiliation": "School of Electronic Engineering, Tianjin University of Technology and Education, Tianjin, China", + "ror_ids": [ + "https://ror.org/035gwtk09" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Boston University, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/05qwgg493" + ] + }, + { + "affiliation": "a University of Glasgow", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "IBM T. J. Watson Research Center, Hawthorne, NY", + "ror_ids": [ + "https://ror.org/05hh8d621" + ] + }, + { + "affiliation": "University of Novi Sad, Faculty of Medicine, Department of Pathology, Novi Sad, Serbia + University Clinical Center of Vojvodina, Center for Pathology and Histology, Novi Sad, Serbia", + "ror_ids": [ + "https://ror.org/00xa57a59", + "https://ror.org/00fpn0e94" + ] + }, + { + "affiliation": "Swiss Federal Institute of Technology (ETH) Zurich, Institute of Quantum Electronics, Laser Spectroscopy and Sensing Laboratory, Hoenggerberg, HPF D19, CH-8093 Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Hebei University of Science and Technology", + "ror_ids": [ + "https://ror.org/05h3pkk68" + ] + }, + { + "affiliation": "Department of Oceanography and Meteorology, Texas A & M University, College Station, Texas", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "University of Southampton, UK", + "ror_ids": [ + "https://ror.org/01ryk1543" + ] + }, + { + "affiliation": "Nirma University,Civil Engineering Department,Ahmedabad,India,382481", + "ror_ids": [ + "https://ror.org/05qkq7x38" + ] + }, + { + "affiliation": "Norwegian Defence Research Establishment therese.sandrup@ffi.no", + "ror_ids": [ + "https://ror.org/0098gnz32" + ] + }, + { + "affiliation": "Graduate School Psychology Program Queens College of The City University of New York", + "ror_ids": [ + "https://ror.org/00453a208", + "https://ror.org/03v8adn41" + ] + }, + { + "affiliation": "State Key Laboratory of Synthetical Automation for Process Industries and the College of Information Science and Engineering, Northeastern University, Shenyang, China", + "ror_ids": [ + "https://ror.org/03awzbc87", + "https://ror.org/0380ng272" + ] + }, + { + "affiliation": "Mahrad Nassirkhani, Entomology Department, Faculty of Agriculture and Natural Resources, Islamic Azad University, Arak branch, Arak, Iran; E-mail: greenartificialturfgrass@gmail.com", + "ror_ids": [ + "https://ror.org/02558wk32" + ] + }, + { + "affiliation": "Institute of Physics, Technical University of Wrocław, Wybrzeże Wyspiańskiego 27, 50-370 Wrocław, Poland", + "ror_ids": [ + "https://ror.org/008fyn775" + ] + }, + { + "affiliation": "Novo Nordisk BioChem North America Inc., 77 Perry Chapel Church Road, Raleigh, NC 27525", + "ror_ids": [ + "https://ror.org/011y67d23" + ] + }, + { + "affiliation": "Cavendish Laboratory, Madingley Road, Cambridge CB3 OHE, England", + "ror_ids": [] + }, + { + "affiliation": "University of Jaffna, Jaffna, Sri Lanka", + "ror_ids": [ + "https://ror.org/02fwjgw17" + ] + }, + { + "affiliation": "Institut für Graphische Datenverarbeitung und Mustererkennung, Gesellschaft für Mathematik und Datenverarbeitung Bonn, St. Augustin, W. Germany", + "ror_ids": [ + "https://ror.org/02g6d4t03" + ] + }, + { + "affiliation": "Chem. Laborat. d. University College, St. Andrews Universität, Dundee, Schottland", + "ror_ids": [ + "https://ror.org/02wn5qz54" + ] + }, + { + "affiliation": "Department of Applied Chemistry, Gifu University", + "ror_ids": [ + "https://ror.org/024exxj48" + ] + }, + { + "affiliation": "Department of Economics and Management “Marco Fanno” University of Padova Padova Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Washington University Department of Physics and the Center for Materials Innovation, , St. Louis, Missouri 63130, USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Pediatric and Adolescent Oncology Drug Development, Children & Young People’s Unit, The Royal Marsden NHS Foundation Trust, London, UK", + "ror_ids": [ + "https://ror.org/0008wzh48" + ] + }, + { + "affiliation": "D-Fowi, Professur Waldbau, ETH-Zentrum, 8092 Zurich.", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Klinik für Psychiatrie und Psychotherapie, Charité-Universitätsmedizin, Campus Mitte, Berlin", + "ror_ids": [ + "https://ror.org/001w7jn25" + ] + }, + { + "affiliation": "University of Hertfordshire, London, UK", + "ror_ids": [ + "https://ror.org/0267vjk41" + ] + }, + { + "affiliation": "Department of Internal Medicine, Institute of Neurogastroenterology and Motility, Martin Luther Hospital, Germany", + "ror_ids": [] + }, + { + "affiliation": "Institute of Management, Corvinus University of Budapest, Hungary", + "ror_ids": [ + "https://ror.org/01vxfm326" + ] + }, + { + "affiliation": "Fuji Environmental Service Co., Ltd.", + "ror_ids": [] + }, + { + "affiliation": "d Department of Applied Chemistry , Kyushu Institute of Technology , Sensui-cho, Tobata, Kitakyushu 804–0015, Japan", + "ror_ids": [ + "https://ror.org/02278tr80" + ] + }, + { + "affiliation": "Qatar University", + "ror_ids": [ + "https://ror.org/00yhnba62" + ] + }, + { + "affiliation": "Department of Pathology, Stanford University School of Medicine From the , Stanford, California 94305 and the , New Haven, Connecticut 06510", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Department of Neuroscience Faculty of Medicine Norwegian University of Science and Technology (NTNU) Trondheim Norway", + "ror_ids": [ + "https://ror.org/05xg72x27" + ] + }, + { + "affiliation": "Gilead Sciences, Inc., Foster City, CA", + "ror_ids": [ + "https://ror.org/01fk6s398" + ] + }, + { + "affiliation": "Quebec Mental Health Institute Department of Psychiatry and Neuroscience Université Laval Quebec City Quebec Canada", + "ror_ids": [ + "https://ror.org/04sjchr03" + ] + }, + { + "affiliation": "University of Washington", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "Department of Infectious and Endemic Diseases, Faculty of Medicine, Suez Canal University, Ismailia, Egypt", + "ror_ids": [ + "https://ror.org/02m82p074" + ] + }, + { + "affiliation": "Naval Research Laboratory", + "ror_ids": [] + }, + { + "affiliation": "Universiti Tun Hussein Onn Malaysia", + "ror_ids": [ + "https://ror.org/01c5wha71" + ] + }, + { + "affiliation": "Department of Chemistry and Chemical Biology, Faculty of Engineering, Gunma University", + "ror_ids": [ + "https://ror.org/046fm7598" + ] + }, + { + "affiliation": "Department of Microbiology, Immunology and Infectious Diseases, Snyder Institute for Chronic Diseases, University of Calgary, Calgary, AB, Canada", + "ror_ids": [ + "https://ror.org/03yjb2x39" + ] + }, + { + "affiliation": "Département de Neurosciences Cliniques, Geneva University Hospital, Geneva, Switzerland", + "ror_ids": [ + "https://ror.org/01m1pv723" + ] + }, + { + "affiliation": "Division of Pathology, Central Laboratory of Medical Sciences, Juntendo University School of Medicine", + "ror_ids": [ + "https://ror.org/01692sz90" + ] + }, + { + "affiliation": "Universidade Federal do Rio Grande do Sul, Brazil", + "ror_ids": [ + "https://ror.org/041yk2d64" + ] + }, + { + "affiliation": "cDepartment of Pathology, University of Frankfurt, 60596 Frankfurt, Germany", + "ror_ids": [ + "https://ror.org/02msan859" + ] + }, + { + "affiliation": "Abu Dhabi National Oil Company", + "ror_ids": [ + "https://ror.org/010e8pt90" + ] + }, + { + "affiliation": "Department of Surgery, Campbell University School of Osteopathic Medicine, Lillington, NC, USA", + "ror_ids": [ + "https://ror.org/00dv9q566" + ] + }, + { + "affiliation": "National University of Science and Technology «MISiS»", + "ror_ids": [ + "https://ror.org/019vsm959" + ] + }, + { + "affiliation": "University of Missouri-Rolla, Rolla, Missouri 65401.", + "ror_ids": [ + "https://ror.org/00scwqd12" + ] + }, + { + "affiliation": "U.S. EPA Office of Air Quality Planning and Standards, Research Triangle Park, North Carolina 27711, United States", + "ror_ids": [ + "https://ror.org/03tns0030" + ] + }, + { + "affiliation": "Madison, Wisconsin, USA", + "ror_ids": [] + }, + { + "affiliation": "Civil and Environmental Engineering Dept., Faculty of Engineering, Mutah Univ., JO, e-mail: malzoubi@mutah.edu.jo", + "ror_ids": [ + "https://ror.org/008g9ns82" + ] + }, + { + "affiliation": "Chemistry Division, Argonne National Laboratory, Argonne, Illinois 60439", + "ror_ids": [ + "https://ror.org/05gvnxz63" + ] + }, + { + "affiliation": "Division of Endocrinology, Department of Medicine, Universidade Federal de São Paulo, São Paulo, Brazil.", + "ror_ids": [ + "https://ror.org/02k5swt12" + ] + }, + { + "affiliation": "Department of Emergency, The Third Affiliated Hospital of Zhejiang Chinese Medical University, Hangzhou, Zhejiang 310005, P.R. China", + "ror_ids": [ + "https://ror.org/0491qs096" + ] + }, + { + "affiliation": "UŞAK ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/05es91y67" + ] + }, + { + "affiliation": "Department of Zoology, University of Otago, P .O. Box 56, Dunedin, New Zealand", + "ror_ids": [ + "https://ror.org/01jmxt844" + ] + }, + { + "affiliation": "Division of Gastroenterology,Department of Medicine,Duke University Medical Center,Durham,NC", + "ror_ids": [ + "https://ror.org/04bct7p84", + "https://ror.org/03njmea73" + ] + }, + { + "affiliation": "a:1:{s:5:\"en_US\";s:22:\"Dokuz Eylul University\";}", + "ror_ids": [ + "https://ror.org/00dbd8b73" + ] + }, + { + "affiliation": "College of Pharmacy Third Military Medical University Chongqing 400038 P. R. China", + "ror_ids": [ + "https://ror.org/05w21nn13" + ] + }, + { + "affiliation": "Geografiska Annaler: Series B, Human Geography", + "ror_ids": [] + }, + { + "affiliation": "From Editorial Rx Inc; Whippen Consulting, Orange Park, FL; and the Departments of the History of Medicine and Surgery, Johns Hopkins University, School of Medicine, Baltimore, MD", + "ror_ids": [ + "https://ror.org/00za53h95" + ] + }, + { + "affiliation": "Assistant Professor in Commercial Law, College of Law, Sultan Qaboos University\nMuscatOman", + "ror_ids": [ + "https://ror.org/04wq8zb47" + ] + }, + { + "affiliation": "a Department of Chemical Engineering , University of Missouri-Rolla , Rolla , Missouri , 65401", + "ror_ids": [ + "https://ror.org/00scwqd12" + ] + }, + { + "affiliation": "Norton Infectious Diseases Institute, Louisville, KY, United States", + "ror_ids": [] + }, + { + "affiliation": "Yantai University", + "ror_ids": [ + "https://ror.org/01rp41m56" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Faculty of Engineering and Industrial Technology, Silpakorn University", + "ror_ids": [ + "https://ror.org/02d0tyt78" + ] + }, + { + "affiliation": "Technische Universität Darmstadt, Darmstadt, Germany", + "ror_ids": [ + "https://ror.org/05n911h24" + ] + }, + { + "affiliation": "Wroclaw University of Technology", + "ror_ids": [ + "https://ror.org/008fyn775" + ] + }, + { + "affiliation": "Centre for Demographic Studies, Autonomous University of Barcelona, Bellaterra, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94", + "https://ror.org/02dm87055" + ] + }, + { + "affiliation": "University of North Carolina at Chapel Hill, USA", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "a Department of Environmental Sciences and Engineering, School of Public Health , University of North Carolina , Chapel Hill, North Carolina", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Department of Horticulture, Iowa State College", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "Department of Biotechnology, Hankyong National University, 327 Jungang-ro Anseong-si, Gyeonggi-do 17579, Republic of Korea", + "ror_ids": [ + "https://ror.org/0031nsg68" + ] + }, + { + "affiliation": "Department of Electrical Engineering & Computer Science, The University of Toledo, 2801 W. Bancroft, Toledo, OH 43606, USA", + "ror_ids": [ + "https://ror.org/01pbdzh19" + ] + }, + { + "affiliation": "Department of Pharmaceutics and Department of Pharmaceutical Technology (Formulations), National Institute of Pharmaceutical Education and Research (NIPER), S.A.S. Nagar, Punjab 160 062, India", + "ror_ids": [ + "https://ror.org/01dphnv87" + ] + }, + { + "affiliation": "“Petru Poni” Institute of Macromolecular Chemistry, Aleea Grigore Ghica-Voda 41A, Iasi 700487, Romania", + "ror_ids": [ + "https://ror.org/0340mea86" + ] + }, + { + "affiliation": "Graduate School of Frontier Science, The Univ. of Tokyo", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Division of Urological Cancers, Department of Translational Medicine Lund University Malmö Sweden", + "ror_ids": [ + "https://ror.org/012a77v79" + ] + }, + { + "affiliation": "University of Freiburg", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "North West London Vascular Network, Northwick Park Hospital, Harrow, Middlesex, United Kingdom", + "ror_ids": [ + "https://ror.org/030j6qm79" + ] + }, + { + "affiliation": "MRC Human Immunology Unit, Weatherall Institute of Molecular Medicine, John Radcliffe Hospital, Oxford, OX3 9DS, UK", + "ror_ids": [ + "https://ror.org/02kcpr174", + "https://ror.org/0080acb59" + ] + }, + { + "affiliation": "CSIRO Agriculture and Food 203 Tor Street Toowoomba QLD 4350 Australia", + "ror_ids": [ + "https://ror.org/03n17ds51", + "https://ror.org/03qn8fb07" + ] + }, + { + "affiliation": "Guangdong Provincial Key laboratory of Optical Fiber Sensing and Communications", + "ror_ids": [] + }, + { + "affiliation": "Center for Outcomes and Policy Research, Dana-Farber Cancer Institute, Boston, MA", + "ror_ids": [ + "https://ror.org/02jzgtq86" + ] + }, + { + "affiliation": "The 1st Department of Medicine, Faculty of Clinical Medicine Mannheim, University Heidelberg, Klinikum Mannheim, Germany", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Institute of Materials Science, University of Tsukuba, Tsukuba, Ibaraki 305, Japan", + "ror_ids": [ + "https://ror.org/02956yf07" + ] + }, + { + "affiliation": "Food Animal Health Research Program, The Ohio State University, Wooster, Ohio, USA", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Department of Cardiovascular Medicine Beaumont Health System and the William Beaumont Oakland University School of Medicine Royal Oak Michigan", + "ror_ids": [ + "https://ror.org/02hb5yj49", + "https://ror.org/01ythxj32" + ] + }, + { + "affiliation": "University of British Columbia", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Fachbereich Mathematik und Physik, Technische Fachhochschule Berlin, Luxemburger Strasse 10, 13353 Berlin, Germany", + "ror_ids": [ + "https://ror.org/00w7whj55" + ] + }, + { + "affiliation": "From the Mayo Foundation, Rochester, Minn (D.R.H., P.B.B.); the Cleveland (Ohio) Clinic Foundation (E.J.T., P.L.W., S.G.E.); Duke University Medical Center, Durham, NC (R.M.C., L.G.B., K.L.L., G.P.K.); Loyola Medical Center, Chicago, Ill (F.L.); William Beaumont–Royal Oak Hospital, Royal Oak, Mich (R.S.); the University of Louisville, Ky (J.D.T.); Maine Medical Center, Portland (M.A.K.); Maimonides Medical Center, Brooklyn, NY (J.S.); Graduate Hospital, Philadelphia, Pa (R.S.G.); Toronto (Ontario)...", + "ror_ids": [ + "https://ror.org/04bct7p84", + "https://ror.org/03artm726", + "https://ror.org/01ckdn478", + "https://ror.org/034c1gc25", + "https://ror.org/00g651r29", + "https://ror.org/02qp3tb03", + "https://ror.org/03xjacd83", + "https://ror.org/05xcyt367", + "https://ror.org/0116mdr21" + ] + }, + { + "affiliation": "WEIR research unit, Department of Architecture and Civil Engineering, University of Bath, Bath, UK", + "ror_ids": [ + "https://ror.org/002h8g185" + ] + }, + { + "affiliation": "Department of Clinical Medicine and Emerging Diseases (E.C., S.B., P.M., G.D.F., G.R.), University of Palermo, 90139 Palermo, Italy", + "ror_ids": [ + "https://ror.org/044k9ta02" + ] + }, + { + "affiliation": "6Affiliated Cancer Hospital & Institute of Guangzhou Medical University, Guangzhou, China;", + "ror_ids": [ + "https://ror.org/00zat6v61" + ] + }, + { + "affiliation": "Faculty of Science and Engineering, Waseda University", + "ror_ids": [ + "https://ror.org/00ntfnx83" + ] + }, + { + "affiliation": "Elanco Animal Health, A Division of Eli Lilly and Company, 2001 West Main St, Greenfield, IN 46140-0708", + "ror_ids": [ + "https://ror.org/01qat3289" + ] + }, + { + "affiliation": "Université Côte d’Azur, CNRS, I3S, 06902 Valbonne, France", + "ror_ids": [ + "https://ror.org/019tgvf94" + ] + }, + { + "affiliation": "Jay S. Ross is with the Academy for Educational Development, Washington, DC. Miriam H. Labbok was with the Nutrition and Maternal Health Division, Global Bureau, US Agency for International Development (USAID) during preparation of the article. She is currently with the Nutrition Section, UNICEF, New York, NY.", + "ror_ids": [ + "https://ror.org/034s15752", + "https://ror.org/02dg0pv02", + "https://ror.org/01n6e6j62" + ] + }, + { + "affiliation": "Trinity Translational Medicine Institute", + "ror_ids": [] + }, + { + "affiliation": "Donghua University", + "ror_ids": [ + "https://ror.org/035psfh38" + ] + }, + { + "affiliation": "Enrico Fermi Institute and Department of Physics The University of Chicago, Chicago, Illinois", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of Chemistry University of Puerto Rico Rio Piedras Campus 00931‐3346 San Juan PR PO Box 23346 USA", + "ror_ids": [ + "https://ror.org/0453v4r20" + ] + }, + { + "affiliation": "Registered Nurse; and Student Paramedic, Charles Sturt University, Bathurst, Australia", + "ror_ids": [ + "https://ror.org/00wfvh315" + ] + }, + { + "affiliation": "Dudley Road Hospital , Birmingham B18 7QH , UK", + "ror_ids": [ + "https://ror.org/02smq5q54" + ] + }, + { + "affiliation": "Norwegian Petroleum Directorate, PO Box 600, N-4001 Stavanger, Norway", + "ror_ids": [] + }, + { + "affiliation": "Department of Ophthalmology , The First Affiliated Hospital of Yangtze University , Jingzhou , China", + "ror_ids": [ + "https://ror.org/05bhmhz54" + ] + }, + { + "affiliation": "Broad Institute", + "ror_ids": [ + "https://ror.org/05a0ya142" + ] + }, + { + "affiliation": "Cardiology Department, Faculty of Medicine, Ain Shams University", + "ror_ids": [ + "https://ror.org/00cb9w016" + ] + }, + { + "affiliation": "Laboratory of Immunoregulation, National Institute of Allergy and Infectious Diseases, National Institutes of Health, Bethesda, MD 20892, USA.", + "ror_ids": [ + "https://ror.org/043z4tv69", + "https://ror.org/01cwqze88" + ] + }, + { + "affiliation": "Department of Anatomy & Neurobiology, University of Tennessee atMemphis 38163, USA.", + "ror_ids": [ + "https://ror.org/020f3ap87" + ] + }, + { + "affiliation": "University of Central Florida Orlando, Florida 32816-1250", + "ror_ids": [ + "https://ror.org/036nfer12" + ] + }, + { + "affiliation": "University of Nebraska, Lincoln, NE, USA,", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "a School of Mathematics and Statistics , The University of Sydney , N.S.W , 2006 , Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Bengbu Naval Petty Officer Academy", + "ror_ids": [] + }, + { + "affiliation": "Department of Cardiothoracic Surgery Centro Hospitalar Universitário S. João Porto Portugal", + "ror_ids": [] + }, + { + "affiliation": "Dep. of Crop and Agro‐Environmental Sciences Univ. of Puerto Rico, Recinto Universitario de Mayagüez Call Box 9000 Mayagüez Puerto Rico 00681‐9000", + "ror_ids": [ + "https://ror.org/00wek6x04" + ] + }, + { + "affiliation": "Institute of Advanced Material Study, Kyushu University 86, Kasuga 816, Japan", + "ror_ids": [ + "https://ror.org/00p4k0j84" + ] + }, + { + "affiliation": "Department of Materials Engineering and Chemistry, Faculty of Civil Engineering, Czech Technical University in Prague, Thákurova 7, 166 29 Prague 6, Czech Republic", + "ror_ids": [ + "https://ror.org/03kqpb082" + ] + }, + { + "affiliation": "Department of Metal Processing Engineering, Kyushu Institute of Technology", + "ror_ids": [ + "https://ror.org/02278tr80" + ] + }, + { + "affiliation": "Keck School of Medicine, University of Southern California, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "Professor Emeritus, Wright State University School of Medicine, Department of Surgery, Dayton, Ohio", + "ror_ids": [ + "https://ror.org/04qk6pt94" + ] + }, + { + "affiliation": "School of Computing and Intelligent Systems, Faculty of Informatics, University of Ulster,", + "ror_ids": [ + "https://ror.org/01yp9g959" + ] + }, + { + "affiliation": "Freshwater Fisheries Research Center; Chinese Academy of Fishery Science; Wuxi China", + "ror_ids": [ + "https://ror.org/02bwk9n38" + ] + }, + { + "affiliation": "Hohai University, Nanjing City, Jiangsu, China", + "ror_ids": [ + "https://ror.org/01wd4xt90" + ] + }, + { + "affiliation": "Campion Advocacy Fund", + "ror_ids": [] + }, + { + "affiliation": "Meteorological Research Institute", + "ror_ids": [ + "https://ror.org/031gqrq04" + ] + }, + { + "affiliation": "Department of Biology The Pennsylvania State University University Park PA 16802 USA", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "School of Natural and Environmental Sciences, Newcastle University, Newcastle-upon-Tyne, UK", + "ror_ids": [ + "https://ror.org/01kj2bm70" + ] + }, + { + "affiliation": "James Madison University", + "ror_ids": [ + "https://ror.org/028pmsz77" + ] + }, + { + "affiliation": "Yasouj University", + "ror_ids": [ + "https://ror.org/05sy5hm57" + ] + }, + { + "affiliation": "Institut für Festkörperphysik, Technische Universität Berlin, Hardenbergstrasse 36, D-10623 Berlin, Germany", + "ror_ids": [ + "https://ror.org/03v4gjf40" + ] + }, + { + "affiliation": "The University of Hong Kong", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "University of Idaho", + "ror_ids": [ + "https://ror.org/03hbp5t65" + ] + }, + { + "affiliation": "Institut de Cardiologie,Sorbonne Université Hôpital Pitié–Salpêtrière, andParis, France", + "ror_ids": [ + "https://ror.org/02en5vm52" + ] + }, + { + "affiliation": "IES Montpellier", + "ror_ids": [] + }, + { + "affiliation": "University of British Columbia, McDonald Research Laboratory,/iCAPTURE Centre, St. Paul's Hospital, Vancouver, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20", + "https://ror.org/00wzdr059" + ] + }, + { + "affiliation": "Oncology-Hematology, University, Palermo, Italy", + "ror_ids": [ + "https://ror.org/044k9ta02" + ] + }, + { + "affiliation": "Division of Vascular and Interventional Radiology, Department of Diagnostic Radiology and Nuclear Medicine, University of Maryland School of Medicine, Baltimore, Maryland", + "ror_ids": [ + "https://ror.org/04rq5mt64" + ] + }, + { + "affiliation": "Department of Otolaryngology Icahn School of Medicine at Mount Sinai New York New York", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "School of Psychology University of Nottingham UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Toshiba Corporation, Yokohama, Japan", + "ror_ids": [ + "https://ror.org/0326v3z14" + ] + }, + { + "affiliation": "Department of History Tufts University Medford, MA 02155, USA", + "ror_ids": [ + "https://ror.org/05wvpxv85" + ] + }, + { + "affiliation": "Tufts University, USA", + "ror_ids": [ + "https://ror.org/05wvpxv85" + ] + }, + { + "affiliation": "Universidade de Brasília, Brazil", + "ror_ids": [ + "https://ror.org/02xfp8v59" + ] + }, + { + "affiliation": "School of Psychology University of Minho Braga Portugal", + "ror_ids": [ + "https://ror.org/037wpkx04" + ] + }, + { + "affiliation": "Southeast University", + "ror_ids": [] + }, + { + "affiliation": "The Department of Politics & Government, Ben-Gurion University of the Negev, Beer-Sheva, Israel", + "ror_ids": [ + "https://ror.org/05tkyf982" + ] + }, + { + "affiliation": "Ochsner Health System, New Orleans, LA, USA", + "ror_ids": [ + "https://ror.org/003ngne20" + ] + }, + { + "affiliation": "CEFAC - Consultoria em Fonoaudiologia Clínica, Brasil", + "ror_ids": [] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biophysics", + "ror_ids": [] + }, + { + "affiliation": "Ohio University", + "ror_ids": [ + "https://ror.org/01jr3y717" + ] + }, + { + "affiliation": "Neubiberg", + "ror_ids": [] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Seoul National University College of Medicine, Seoul National University Bundang Hospital, Seongnam, Republic of Korea.", + "ror_ids": [ + "https://ror.org/00cb3km46" + ] + }, + { + "affiliation": "Trinity College, Cambridge", + "ror_ids": [] + }, + { + "affiliation": "Hitachi Lighting LTD.", + "ror_ids": [ + "https://ror.org/02exqgm79" + ] + }, + { + "affiliation": "Long Itchington, Warwickshire", + "ror_ids": [] + }, + { + "affiliation": "Department of Bioinformatics School of life Sciences and technology Tongji University Shanghai China", + "ror_ids": [ + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "Music consultant for the Indiana Department of Education.", + "ror_ids": [ + "https://ror.org/03k25vb36" + ] + }, + { + "affiliation": "School of Pharmacy, Swami Ramanand Teerth Marathwada University, Nanded, Maharashtra, India", + "ror_ids": [ + "https://ror.org/03nevd013" + ] + }, + { + "affiliation": "Division of Nephrology, Hypertension and Renal Transplantation University of Florida Gainesville Florida", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Saint Petersburg University", + "ror_ids": [ + "https://ror.org/023znxa73" + ] + }, + { + "affiliation": "Union Carbide Research Institute, P.O. Box 324, Tuxedo, New York", + "ror_ids": [ + "https://ror.org/04hj96d73" + ] + }, + { + "affiliation": "Section of Clinical Biochemistry and School of Medicine , University of Verona , Verona , Italy", + "ror_ids": [ + "https://ror.org/039bp8j42" + ] + }, + { + "affiliation": "Department of Pediatrics, Division of Medical Genetics, Stanford University, Stanford, CA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "University of Cambridge", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Department of Psychiatry and Behavioral Sciences, University of Louisville School of Medicine, Louisville, KY, USA", + "ror_ids": [ + "https://ror.org/01ckdn478" + ] + }, + { + "affiliation": "Semiconductor Manufacturing International Corporation,Shanghai,China", + "ror_ids": [ + "https://ror.org/03tf9y485" + ] + }, + { + "affiliation": "Stem Cell Transplantation Program, Department I of Internal Medicine, University Hospital of Cologne, Kerpener Straße 62, D-50937, Cologne, Germany", + "ror_ids": [ + "https://ror.org/05mxhda18" + ] + }, + { + "affiliation": "Council for the Study of Productive Forces", + "ror_ids": [] + }, + { + "affiliation": "NEC Laboratories", + "ror_ids": [] + }, + { + "affiliation": "Washington State University Tree Fruit Research and Extension Center 1100 N. Western Avenue Wenatchee, WA 98801 509-663-8181", + "ror_ids": [ + "https://ror.org/05dk0ce17" + ] + }, + { + "affiliation": "Department of Molecular Microbiology and Immunology, University of Missouri Medical School, Columbia, Missouri 65212", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "Organic and Biological Mass Spectrometry Group, Chemical Sciences Division, Oak Ridge National Laboratory, Oak Ridge, Tennessee 37831-6131", + "ror_ids": [ + "https://ror.org/01qz5mb56" + ] + }, + { + "affiliation": "Universidade Estadual de Maringá, Brasil", + "ror_ids": [ + "https://ror.org/04bqqa360" + ] + }, + { + "affiliation": "Offshore Oil Engineering (Qingdao) Co. Ltd.", + "ror_ids": [] + }, + { + "affiliation": "Molecular Enzymology Group Groningen Institute of Biomolecular Sciences and Biotechnology University of Groningen Nijenborgh 4 9747 AG Groningen The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "1Channing Laboratory, Department of Medicine and", + "ror_ids": [] + }, + { + "affiliation": "Sandia National Laboratories, Albuquerque, New Mexico 87185", + "ror_ids": [ + "https://ror.org/01apwpt12" + ] + }, + { + "affiliation": "University College London", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Fraunhofer Fokus, Germany", + "ror_ids": [ + "https://ror.org/00px80p03" + ] + }, + { + "affiliation": "Department of Geriatric Medicine University of Oklahoma Health Science Center Oklahoma City OK United States", + "ror_ids": [ + "https://ror.org/0457zbj98", + "https://ror.org/02aqsxs83" + ] + }, + { + "affiliation": "Faculty of Medicine, Belgrade, Serbia", + "ror_ids": [] + }, + { + "affiliation": "Department of Ophthalmology, College of Medicine, Pusan National University, Pusan, Korea.", + "ror_ids": [ + "https://ror.org/01an57a31" + ] + }, + { + "affiliation": "Cornell University, Ithaca, NY, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Pathology and Laboratory Medicine, University of Kansas Medical Center , Kansas City, MO , USA", + "ror_ids": [ + "https://ror.org/036c9yv20" + ] + }, + { + "affiliation": "University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry, University of California at Los Angeles, Los Angeles, California 90025-1569", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "New York, N. Y.", + "ror_ids": [] + }, + { + "affiliation": "School of Sport, Exercise and Rehabilitation Sciences, College of Life and Environmental Sciences University of Birmingham Birmingham UK", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "From the Physiological Laboratory of Washington University, St. Louis", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Dipartimento di Ingegneria Civile Ambientale Aerospaziale dei Materiali Università di Palermo Viale delle Scienze 90128 Palermo Italy", + "ror_ids": [ + "https://ror.org/044k9ta02" + ] + }, + { + "affiliation": "Universidad Simón Bolívar, Caracas, Venezuela", + "ror_ids": [ + "https://ror.org/01ak5cj98" + ] + }, + { + "affiliation": "Simon Fraser University-SIAT, Surrey, BC, Canada", + "ror_ids": [ + "https://ror.org/0213rcc28" + ] + }, + { + "affiliation": "Lancaster, UK", + "ror_ids": [] + }, + { + "affiliation": "Laboratoire de Mathématiques Appliquées (LMA), Department of Mathematics University of Annaba Annaba Algeria", + "ror_ids": [ + "https://ror.org/03sf55932" + ] + }, + { + "affiliation": "Department of Preventive Medicine, Feinberg School of Medicine, Northwestern University, Chicago, Illinois, U.S.A.", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "University of Technology, Sydney, School of Management, Faculty of Business, Australia", + "ror_ids": [ + "https://ror.org/03f0f6041" + ] + }, + { + "affiliation": "Hungkuang University, Taichung, Taiwan;", + "ror_ids": [ + "https://ror.org/02f2vsx71" + ] + }, + { + "affiliation": "Industrial Technology Research Institute, Green Energy and Environment Research Laboratories, Tainan City 71150, Taiwan.(corresponding author); .", + "ror_ids": [ + "https://ror.org/05szzwt63" + ] + }, + { + "affiliation": "Centre sur le handicap et l'intégration, School of Economics and Political Science Université de Saint‐Gall", + "ror_ids": [ + "https://ror.org/0561a3s31" + ] + }, + { + "affiliation": "From the Fred Hutchinson Cancer Research Center, Seattle, WA; and the University of Washington School of Medicine, Seattle.", + "ror_ids": [ + "https://ror.org/00cvxb145", + "https://ror.org/007ps6h72" + ] + }, + { + "affiliation": "Diabetes Association of Greater Cleveland and the departments of Medicine and Biometry, Case Western Reserve University Cleveland, Ohio", + "ror_ids": [ + "https://ror.org/051fd9666" + ] + }, + { + "affiliation": "Universidade Federal do Pará", + "ror_ids": [ + "https://ror.org/03q9sr818" + ] + }, + { + "affiliation": "Nottingham Law School, The Nottingham Trent University", + "ror_ids": [ + "https://ror.org/04xyxjd90" + ] + }, + { + "affiliation": "Department of Chemistry, ‡Institute of Materials\nScience, University of Connecticut, U-3060, 55 North Eagleville Road, Storrs, Connecticut 06269 United States", + "ror_ids": [ + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "Hefei University of Technology,School of Computer and Information,Hefei,China", + "ror_ids": [ + "https://ror.org/02czkny70" + ] + }, + { + "affiliation": "Nantes Université, CNRS, CEISAM UMR 6230, Nantes F-44000, France", + "ror_ids": [ + "https://ror.org/03gnr7b55", + "https://ror.org/02feahw73", + "https://ror.org/04ysg2a58" + ] + }, + { + "affiliation": "K Nixon-Cave, PT, PhD, PCS, is Associate Professor, University of the Sciences in Philadelphia, and Physical Therapy Manager, Children's Hospital of Philadelphia.", + "ror_ids": [ + "https://ror.org/048gmay44", + "https://ror.org/01z7r7q48" + ] + }, + { + "affiliation": "Department of Surgery and Sciences Kyusyu University Fukuoka Japan", + "ror_ids": [ + "https://ror.org/00p4k0j84" + ] + }, + { + "affiliation": "Division of Geriatrics and Gerontology, Kaohsiung Medical University Hospital, Kaohsiung, Taiwan,", + "ror_ids": [ + "https://ror.org/02xmkec90" + ] + }, + { + "affiliation": "Biomedical Engineering Center for Clinical Instrumentation and Department of Aeronautics and Astronautics Massachusetts Institute of Technology Cambridge, Massachusetts", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Division of Engineering in Nutrition Faculty of Human Nutrition and Consumer Sciences Warsaw University of Life Sciences Nowoursynowska 159c Warsaw 02‐776 Poland", + "ror_ids": [ + "https://ror.org/05srvzs48" + ] + }, + { + "affiliation": "From the Departments of Surgery (Urology) and Medicine (Renal Disease), University of Colorado Health Sciences Center, Denver, Colorado", + "ror_ids": [ + "https://ror.org/0107w4315" + ] + }, + { + "affiliation": "Polissia National University", + "ror_ids": [ + "https://ror.org/044tay155" + ] + }, + { + "affiliation": "Sophia University", + "ror_ids": [ + "https://ror.org/01nckkm68" + ] + }, + { + "affiliation": "Department of Parasitology, College of Medicine, Inha University", + "ror_ids": [ + "https://ror.org/01easw929" + ] + }, + { + "affiliation": "Research Center for Advanced Science and Technology, University of Tokyo, 4-6-1 Komaba, Meguro-ku, Tokyo 153, Japan", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Biocrystallography, KU Leuven, Herestraat 49, box 822, 3000 Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Department of Biochemistry, Tohoku University School of Medicine Sendai 980, Miyagi, Japan", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "Technical University Ilmenau Institute for Micro- and Nanotechnologies, , Kirchhoffstr. 7, 98693 Ilmenau, Germany", + "ror_ids": [ + "https://ror.org/01weqhp73" + ] + }, + { + "affiliation": "茨城大学 地球・地域環境共創機構", + "ror_ids": [] + }, + { + "affiliation": "Australia", + "ror_ids": [] + }, + { + "affiliation": "College of Science and Engineering, Ritsumeikan University", + "ror_ids": [ + "https://ror.org/0197nmd03" + ] + }, + { + "affiliation": "Senior Director of Geotechnical Engineering, Newmont Mining Corporation, , Denver, CO USA", + "ror_ids": [ + "https://ror.org/05a10ec77" + ] + }, + { + "affiliation": "School of Chemistry, University of Bristol, Cantock's Close, Bristol BS8 1TS, U.K., and AstraZeneca UK Ltd., Mereside, Alderley Park, Macclesfield SK10 4TG, U.K.", + "ror_ids": [ + "https://ror.org/0524sp257", + "https://ror.org/04r9x1a08" + ] + }, + { + "affiliation": "University of Tennessee", + "ror_ids": [ + "https://ror.org/020f3ap87" + ] + }, + { + "affiliation": "Department of Communication Science & Disorders at the University of Vermont in Burlington", + "ror_ids": [ + "https://ror.org/0155zta11" + ] + }, + { + "affiliation": "Kunming University of Science and Technology", + "ror_ids": [ + "https://ror.org/00xyeez13" + ] + }, + { + "affiliation": "Associate Professor, Pathology, American International Institute of Medical Sciences, Udaipur.", + "ror_ids": [] + }, + { + "affiliation": "Tallinn University of Technology,Department of Computer Systems,Estonia", + "ror_ids": [ + "https://ror.org/0443cwa12" + ] + }, + { + "affiliation": "St Christopher's Hospice, Sydenham, United Kingdom", + "ror_ids": [ + "https://ror.org/01zkhn749" + ] + }, + { + "affiliation": "Universidade Federal de Santa Catarina, Brasil", + "ror_ids": [ + "https://ror.org/041akq887" + ] + }, + { + "affiliation": "Institute of Physics, Polish Academy of Sciences, al. Lotników 32/46, 02-668 Warszawa, Poland", + "ror_ids": [ + "https://ror.org/01dr6c206", + "https://ror.org/000sfad56" + ] + }, + { + "affiliation": "Northwestern Univ, Chicago, IL", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "7VSOLJ, 124 Isatotyo, Teradani, Kumano, Mie 519-4673", + "ror_ids": [] + }, + { + "affiliation": "University of Delaware", + "ror_ids": [ + "https://ror.org/01sbq1a82" + ] + }, + { + "affiliation": "The Catholic University of America", + "ror_ids": [ + "https://ror.org/047yk3s18" + ] + }, + { + "affiliation": "Patient Safety Switzerland | SWITZERLAND", + "ror_ids": [] + }, + { + "affiliation": "Department\nof Chemical and Biological Engineering, Iowa State University, Ames, Iowa 50011, United States", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "Tomson Technologies", + "ror_ids": [] + }, + { + "affiliation": "From the Stanford University School of Medicine, California.", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Murdoch University, Australia", + "ror_ids": [ + "https://ror.org/00r4sry34" + ] + }, + { + "affiliation": "Tennessee Retina, Nashville, Tennessee, USA", + "ror_ids": [ + "https://ror.org/055papc77" + ] + }, + { + "affiliation": "Department of Engineering and Agricultural Sciences Universidad de León León, 24071 Spain", + "ror_ids": [ + "https://ror.org/02tzt0b78" + ] + }, + { + "affiliation": "Department of Chemistry, University College London, London WC1H 0AJ, United Kingdom", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Karlsruhe Institute of Technology (KIT),Intelligent Process Automation and Robotics Lab, Institute of Anthropomatics and Robotics (IAR-IPR),Karlsruhe,Germany,76131", + "ror_ids": [ + "https://ror.org/04t3en479" + ] + }, + { + "affiliation": "Biomedical Engineering, Tohoku University, Sendai, Japan", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "Center for Biological Resource Recovery, University of Georgia, Athens 30602.", + "ror_ids": [ + "https://ror.org/00te3t702" + ] + }, + { + "affiliation": "Professor; Computer Science Department, Katholieke Universiteit Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Division of Metabolism, Endocrinology and Diabetes University of Michigan Medical Center Ann Arbor MI USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "100 Pacific Street, Cambridge, MA 02139, USA", + "ror_ids": [] + }, + { + "affiliation": "Iowa City, Iowa", + "ror_ids": [] + }, + { + "affiliation": "University of Warwick", + "ror_ids": [ + "https://ror.org/01a77tt86" + ] + }, + { + "affiliation": "Department of Cardiology, Renmin Hospital of Wuhan University, Wuhan 430060, China", + "ror_ids": [ + "https://ror.org/03ekhbz91" + ] + }, + { + "affiliation": "Dairy Research Institute/National Dairy Council Rosemont IL", + "ror_ids": [] + }, + { + "affiliation": "Geisinger Clinic Cardiology, Danville, PA", + "ror_ids": [] + }, + { + "affiliation": "Technological Institute of Aeronautics (ITA)", + "ror_ids": [ + "https://ror.org/05vh67662" + ] + }, + { + "affiliation": "Division of Colorectal Surgery Department of Surgery New York University Langone Health New York University Langone Medical Center 530 1st Avenue suite 7V New York NY 10016 USA", + "ror_ids": [ + "https://ror.org/005dvqh91" + ] + }, + { + "affiliation": "University of Liverpool Management School, University of Liverpool, Liverpool, United Kingdom;", + "ror_ids": [ + "https://ror.org/04xs57h96" + ] + }, + { + "affiliation": "Department of Manufacturing Technology, Purdue School of Engineering and Technology, Indiana University-Purdue University at Indianapolis,799 West Michigan Street, Room 301G, Indianapolis, IN 46202", + "ror_ids": [ + "https://ror.org/0482ksk80", + "https://ror.org/01kg8sb98" + ] + }, + { + "affiliation": "Hamilton College", + "ror_ids": [ + "https://ror.org/05709zb94" + ] + }, + { + "affiliation": "Vologda Research Center of the Russian Academy of Sciences, Vologda, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Centre for Integrative Neuroscience and Neurodynamics, School of Psychology and Clinical Language Sciences University of Reading Reading UK", + "ror_ids": [ + "https://ror.org/05v62cm79" + ] + }, + { + "affiliation": "Stanford University", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "San Francisco State College", + "ror_ids": [ + "https://ror.org/05ykr0121" + ] + }, + { + "affiliation": "Network of Immunity in Infection, Malignancy and Autoimmunity (NIIMA), Universal Scientific Education and Research Network (USERN), Tehran, Iran", + "ror_ids": [ + "https://ror.org/01n71v551" + ] + }, + { + "affiliation": "Community Health Care Systems Development School of Nursing Oregon Health Sciences University Portland, Oregon", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Department of Cardiology, National Heart Centre, Singapore.", + "ror_ids": [ + "https://ror.org/04f8k9513" + ] + }, + { + "affiliation": "Faculty of Physical Chemistry, Belgrade", + "ror_ids": [] + }, + { + "affiliation": "Department of Physiology School of Medicine , University of Maryland , Baltimore, Baltimore, MD 21201", + "ror_ids": [ + "https://ror.org/04rq5mt64" + ] + }, + { + "affiliation": "1 Department of Literature, University of Dar es Salaam, Tanzania", + "ror_ids": [ + "https://ror.org/0479aed98" + ] + }, + { + "affiliation": "Institute of Archaeology and Ethnography NAS RA", + "ror_ids": [] + }, + { + "affiliation": "Organization, Copenhagen Business School", + "ror_ids": [ + "https://ror.org/04sppb023" + ] + }, + { + "affiliation": "Julius-Maximilians-Universität Würzburg, HNO Würzburg", + "ror_ids": [ + "https://ror.org/00fbnyb24" + ] + }, + { + "affiliation": "Beijing University of Civil Engineering and Architecture", + "ror_ids": [ + "https://ror.org/02yj0p855" + ] + }, + { + "affiliation": "Faculty of Science, Omar Al-Mukhtar University , Al Bayda , Libya", + "ror_ids": [ + "https://ror.org/01wykm490" + ] + }, + { + "affiliation": "University of Pennsylvania, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Beijing Normal University", + "ror_ids": [ + "https://ror.org/022k4wk35" + ] + }, + { + "affiliation": "The University of Texas at Austin.", + "ror_ids": [ + "https://ror.org/00hj54h04" + ] + }, + { + "affiliation": "University of Alabama, Huntsville", + "ror_ids": [ + "https://ror.org/02zsxwr40" + ] + }, + { + "affiliation": "Idaho National Laboratory, 1955 Freemont Avenue, Idaho Falls, Idaho 83415", + "ror_ids": [ + "https://ror.org/00ty2a548" + ] + }, + { + "affiliation": "Living with Disability Research Centre, La Trobe University, Bundoora, Australia", + "ror_ids": [ + "https://ror.org/01rxfrp27" + ] + }, + { + "affiliation": "Northeast Normal University", + "ror_ids": [ + "https://ror.org/02rkvz144" + ] + }, + { + "affiliation": "Kings College Hospital NHS Foundation Trust , London , United Kingdom", + "ror_ids": [ + "https://ror.org/01n0k5m85" + ] + }, + { + "affiliation": "Department of Management and Marketing and Potash Corp Centre, Edwards School of Business, University of Saskatchewan, 25 Campus Drive, Saskatoon, SK, Canada S7N 5A7", + "ror_ids": [ + "https://ror.org/010x8gc63" + ] + }, + { + "affiliation": "School of Information and Communication Engineering, Hainan University, Haikou 570100, China", + "ror_ids": [ + "https://ror.org/03q648j11" + ] + }, + { + "affiliation": "Department of Computer Science, Stanford University, Stanford, California 94305", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Biophysics Unit, Department de Ciències Fisiològuiques II, IDIBELL-University of Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/021018s57" + ] + }, + { + "affiliation": "PetroChina Research Institute of Petroleum Exploration and Development, Beijing, China", + "ror_ids": [ + "https://ror.org/02awe6g05" + ] + }, + { + "affiliation": "Dep. of Soil and Environmental Sciences Univ. of California Riverside CA 92521", + "ror_ids": [ + "https://ror.org/03nawhv43" + ] + }, + { + "affiliation": "Scientia corp.", + "ror_ids": [] + }, + { + "affiliation": "Electrical Engineering Department, Soongsil University", + "ror_ids": [ + "https://ror.org/017xnm587" + ] + }, + { + "affiliation": "Department of Mathematics, Sahand University of Technology, Tabriz, Iran.", + "ror_ids": [ + "https://ror.org/03wdrmh81" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, University of California, San Francisco, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Teachers College, Columbia University, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "Creighton University, Omaha", + "ror_ids": [ + "https://ror.org/05wf30g94" + ] + }, + { + "affiliation": "Medicinal Chemistry Division, P.E.S. College of Pharmacy", + "ror_ids": [] + }, + { + "affiliation": "Cardiac nurse consultant in Harrow PCT's primary care-based cardiology service", + "ror_ids": [] + }, + { + "affiliation": "Department of Physics, Islamia College University, Peshawar, Pakistan", + "ror_ids": [ + "https://ror.org/02p2c1595" + ] + }, + { + "affiliation": "CSIRO Agriculture and Food Canberra Australia", + "ror_ids": [ + "https://ror.org/03n17ds51", + "https://ror.org/03qn8fb07" + ] + }, + { + "affiliation": "Albert-Ludwigs-Universitat, Bertoldstr. 17, 79098 Freiburg", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "Fairfield University", + "ror_ids": [ + "https://ror.org/04z49n283" + ] + }, + { + "affiliation": "Copenhagen Business School; Norwegian Institute of International Affairs", + "ror_ids": [ + "https://ror.org/01pznaa94", + "https://ror.org/04sppb023" + ] + }, + { + "affiliation": "Biological Sciences California State University Long Beach Long Beach CA United States", + "ror_ids": [ + "https://ror.org/0080fxk18" + ] + }, + { + "affiliation": "a School of Policy Studies, Politics and Social Research , University of North London , Ladbroke House, 62–66 Highbury Grove, London , N5 2AD , UK", + "ror_ids": [] + }, + { + "affiliation": "University of Medicine and Pharmacy Tirgu Mures, Romania", + "ror_ids": [ + "https://ror.org/03gwbzf29" + ] + }, + { + "affiliation": "Northwestern University, Department of Biomedical Engineering, Evanston, Illinois", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Department of Civil Engineering, Faculty of Engineering, University of Zanjan, Zanjan, Iran", + "ror_ids": [ + "https://ror.org/05e34ej29" + ] + }, + { + "affiliation": "Dynamic Photomechanics Laboratory, Department of Mechanical Engineering and Applied Mechanics, University of Rhode Island, Kingston, RI 02881", + "ror_ids": [ + "https://ror.org/013ckk937" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, University of California Santa Cruz, Santa Cruz, CA 95064, USA", + "ror_ids": [ + "https://ror.org/03s65by71" + ] + }, + { + "affiliation": "College of Computer Science, Sichuan University, Chengdu, China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "School of Digital Humanities and Computational Social Sciences, Korea Advanced Institute of Science and Technology, Daejeon, Korea", + "ror_ids": [ + "https://ror.org/05apxxy63" + ] + }, + { + "affiliation": "Heriot-Watt University, UK", + "ror_ids": [ + "https://ror.org/04mghma93" + ] + }, + { + "affiliation": "University College London, London United Kingdom", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Shahid Beheshti University,Tehran,Iran", + "ror_ids": [ + "https://ror.org/0091vmj44" + ] + }, + { + "affiliation": "Vanderbilt University, USA", + "ror_ids": [ + "https://ror.org/02vm5rt34" + ] + }, + { + "affiliation": "Department of Cancer Immunology and AIDS, Dana-Farber Cancer Institute, Boston, MA 02115; and", + "ror_ids": [ + "https://ror.org/02jzgtq86" + ] + }, + { + "affiliation": "TU Wien,Christian Doppler Laboratory for Innovative, Control and Monitoring of Automative Powertrain Systems,Vienna,Austria", + "ror_ids": [ + "https://ror.org/04d836q62" + ] + }, + { + "affiliation": "School of Economy and Management, ShiHezi University, Shihezi Xinjiang, China", + "ror_ids": [ + "https://ror.org/04x0kvm78" + ] + }, + { + "affiliation": "Dept. of Chemical Engineering American University of Sharjah Sharjah United Arab Emirates", + "ror_ids": [ + "https://ror.org/001g2fj96" + ] + }, + { + "affiliation": "Rome, Italy", + "ror_ids": [] + }, + { + "affiliation": "Università degli Studi di Ferrara, Dipartamento di Fisica e Scienze della Terra, Via Saragat 1, 44122 Ferrara, Italy", + "ror_ids": [ + "https://ror.org/041zkgm14" + ] + }, + { + "affiliation": "Department of Materials Science, Feng Chia University, Taichung, Taiwan, Republic of China", + "ror_ids": [ + "https://ror.org/05vhczg54" + ] + }, + { + "affiliation": "Center for Global Health, National Cancer Institute, Rockville, MD", + "ror_ids": [ + "https://ror.org/02e5dc168" + ] + }, + { + "affiliation": "Department of Mathematics, College of Sciences, King Saud University, P. O. Box 2455, Riyadh 11451, Saudi Arabia", + "ror_ids": [ + "https://ror.org/02f81g417" + ] + }, + { + "affiliation": "Department of Geriatric and Environmental Dermatology Nagoya City University Graduate School of Medical Sciences Nagoya Japan", + "ror_ids": [ + "https://ror.org/04wn7wc95" + ] + }, + { + "affiliation": "Department of Chemistry, University of Washington, Seattle, Washington 98195, Department of Physics, University of Notre Dame, Notre Dame, Indiana 46556, and Department of Physics, Korea University, Seoul 136-701, Republic of Korea", + "ror_ids": [ + "https://ror.org/00mkhxb43", + "https://ror.org/00cvxb145", + "https://ror.org/047dqcg40" + ] + }, + { + "affiliation": "Department of General Surgery, Beibei Traditional Chinese Medical Hospital, Chongqing, China", + "ror_ids": [] + }, + { + "affiliation": "Indian Institute of Technology Madras", + "ror_ids": [ + "https://ror.org/03v0r5n49" + ] + }, + { + "affiliation": "Hathaiporn Samorn and Chalatpon Boonmeelapprasert, SPE, Chevron", + "ror_ids": [ + "https://ror.org/02jfa8730" + ] + }, + { + "affiliation": "Nizhnevartovsk State University, Department for Russian History and Documentation Studies", + "ror_ids": [ + "https://ror.org/02jamnw30" + ] + }, + { + "affiliation": "College of Veterinary Medicine, School of Veterinary and Life Sciences Murdoch University Murdoch Western Australia 6150", + "ror_ids": [ + "https://ror.org/00r4sry34" + ] + }, + { + "affiliation": "Department of Orthopaedics, Center for Musculoskeletal Surgery, Charité – University Medicine Berlin, Charitéplatz 1, 10117 Berlin, Germany", + "ror_ids": [ + "https://ror.org/001w7jn25" + ] + }, + { + "affiliation": "Mobay Corporation, Mobay Road, Pittsburgh, PA 15205", + "ror_ids": [] + }, + { + "affiliation": "Public Affairs Officer", + "ror_ids": [] + }, + { + "affiliation": "Key Laboratory for Colloid & Interface Chemistry of Education Ministry", + "ror_ids": [] + }, + { + "affiliation": "School of Economics and Management, Xi'an University of Technology, City College of Xi'an Jiaotong University, Xi'an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/038avdt50", + "https://ror.org/017zhmm22" + ] + }, + { + "affiliation": "Atmospheric and Oceanic Sciences, McGill University, Montreal, Quebec, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Universidade de Brasília, Brasil", + "ror_ids": [ + "https://ror.org/02xfp8v59" + ] + }, + { + "affiliation": "Department of Physics, University of Aveiro, 3810-131 Aveiro, Portugal", + "ror_ids": [ + "https://ror.org/00nt41z93" + ] + }, + { + "affiliation": "Physiological InstituteUniversity of MelbourneMelbourne", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Beijing Institute of Technology,zhuhai, China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "Department of Mining Engineering, Luliang University, Lvliang, Shanxi, China", + "ror_ids": [ + "https://ror.org/05495v729" + ] + }, + { + "affiliation": "Life Sciences Institute and Department of Molecular, Cellular and Developmental Biology, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, University of British Columbia, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "School of Psychology, University of East Anglia, Norwich, UK", + "ror_ids": [ + "https://ror.org/026k5mg93" + ] + }, + { + "affiliation": "Environment Canada, Wastewater Technology Centre, P.O. Box 5050, Burlington, Ontario L7R 4A6, Canada", + "ror_ids": [] + }, + { + "affiliation": "Ghent University, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Menzies School of Health Research", + "ror_ids": [ + "https://ror.org/006mbby82" + ] + }, + { + "affiliation": "University Carlos III of Madrid, Spain", + "ror_ids": [ + "https://ror.org/03ths8210" + ] + }, + { + "affiliation": "School of Automation, Image Processing and Intelligent Control Key Laboratory of Education Ministry of China; Huazhong University of Science and Technology; Luoyu Road 1037 Wuhan 430074 China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Univ. Estadual Paulista, Brasil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Department of Pharmacology Tohoku University Sendai Japan", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "308 South Rodeo Drive Beverly Hills, CA 90212,", + "ror_ids": [] + }, + { + "affiliation": "Nagaoka University of Technology", + "ror_ids": [ + "https://ror.org/00ys1hz88" + ] + }, + { + "affiliation": "Department of Endocrine and Breast Surgery, First Affiliated Hospital of Chongqing Medical University, Chongqing, China", + "ror_ids": [ + "https://ror.org/033vnzz93" + ] + }, + { + "affiliation": "Northeastern University, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/04t5xt781" + ] + }, + { + "affiliation": "From Department of Neurology (A.K., K.G., J.B.S.), University of Tübingen, Germany; Department of Neurology (A.K., K.G.), University of Jena, Germany; Department of Neuroradiology (T.N., U.E.), University of Tübingen, Germany.", + "ror_ids": [ + "https://ror.org/03a1kwz48" + ] + }, + { + "affiliation": "Division of Research, Kaiser Permanente Northern California, Oakland, CA", + "ror_ids": [ + "https://ror.org/00t60zh31" + ] + }, + { + "affiliation": "Department of Electrical Engineering, City University of Hong Kong, Hong Kong", + "ror_ids": [ + "https://ror.org/03q8dnn23" + ] + }, + { + "affiliation": "State University of Land Management", + "ror_ids": [] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Beaumont Health, Royal Oak, MI", + "ror_ids": [] + }, + { + "affiliation": "National Bureau of Standards, Washington, D. C.", + "ror_ids": [ + "https://ror.org/05xpvk416" + ] + }, + { + "affiliation": "LIPN-UMR CNRS 7030, PRES Sorbonne Paris Cité, Villetaneuse", + "ror_ids": [ + "https://ror.org/05g1zjw44", + "https://ror.org/00x9ewr78" + ] + }, + { + "affiliation": "Department of Chemistry, University of Stellenbosch, Stellenbosch, South Africa", + "ror_ids": [ + "https://ror.org/05bk57929" + ] + }, + { + "affiliation": "Department of Transport and Logistics, Faculty of Technology, Institute of Technology and Business in České Budějovice , České Budějovice , Czech Republic", + "ror_ids": [ + "https://ror.org/05a70k539" + ] + }, + { + "affiliation": "Université Côte d’Azur, CNRS, INSERM, IRCAN, 06108 Nice, France", + "ror_ids": [ + "https://ror.org/019tgvf94", + "https://ror.org/02vjkv261", + "https://ror.org/00x9ewr78", + "https://ror.org/01td3kv81" + ] + }, + { + "affiliation": "Department of Ophthalmology, Nanjing Drum Tower Hospital, The Affiliated Hospital of Nanjing University Medical School, Nanjing, Jiangsu Province, China", + "ror_ids": [ + "https://ror.org/01rxvg760", + "https://ror.org/026axqv54" + ] + }, + { + "affiliation": "Department of Chemistry, Brown University, Providence, Rhode Island 02912", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "Department of Physical Chemistry and The Fritz Haber Center for Molecular Dynamics, The Hebrew University of Jerusalem, Jerusalem 91904, Israel", + "ror_ids": [ + "https://ror.org/03qxff017" + ] + }, + { + "affiliation": "a Department of Physics , Istanbul Technical University , Maslak, Istanbul , 80626 , Turkey Phone: Fax: E-mail:", + "ror_ids": [ + "https://ror.org/059636586" + ] + }, + { + "affiliation": "University of St. Gallen, St. Gallen, Switzerland", + "ror_ids": [ + "https://ror.org/0561a3s31" + ] + }, + { + "affiliation": "CRS4 - Visual Computing Group", + "ror_ids": [] + }, + { + "affiliation": "University of Wisconsin Hospital and Clinica, madison, WI", + "ror_ids": [ + "https://ror.org/02mqqhj42" + ] + }, + { + "affiliation": "Lecturer in Law, Birmingham Law School, University of Birmingham", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "CSIRO Plant Industry GPO Box 1600 Canberra ACT 2601 Australia", + "ror_ids": [ + "https://ror.org/05jg9pj51", + "https://ror.org/03qn8fb07" + ] + }, + { + "affiliation": "Department of Industrial and Manufacturing Systems Engineering, University of Missouri Columbia, Columbia, Missouri", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "NOAA/National Centers for Environmental Information, Asheville, North Carolina", + "ror_ids": [ + "https://ror.org/04r0wrp59" + ] + }, + { + "affiliation": "Centre d'Immunologie et de Biologie Parasitaire, Unite Mixte INSERM 167- CNRS 624, Institut Pasteur de Lille, France.", + "ror_ids": [ + "https://ror.org/05k9skc85", + "https://ror.org/02vjkv261", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Mathematical Institute, University of Oxford, Oxford, Oxfordshire, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Division of Nephrology, Department of Medicine, Kidney Research Center, Ottawa Hospital Research Institute, University of Ottawa, Ottawa, Ontario, Canada K1H 8L6; and", + "ror_ids": [ + "https://ror.org/03c4mmv16", + "https://ror.org/05jtef216", + "https://ror.org/03c62dg59" + ] + }, + { + "affiliation": "Department of Industrial & Operations. Engineering, University of Michigan, Ann Arbor, Michigan", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Ph.D. Candidate, Dept. of Building and Real Estate, Hong Kong Polytechnic Univ., Hung Hom, Kowloon, Hong Kong, China (corresponding author).", + "ror_ids": [ + "https://ror.org/0030zas98" + ] + }, + { + "affiliation": "School of Mechanical Engineering, Iran University of Science and Technology, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01jw2p796" + ] + }, + { + "affiliation": "Senior lecturer in Advanced Clinical Practice, University of Derby", + "ror_ids": [ + "https://ror.org/02yhrrk59" + ] + }, + { + "affiliation": "Clinical Immunology and Allergy Division University of Sao Paulo School of Medicine São Paulo Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Surgical Sciences, University of Cagliari, Cagliari, Italy.", + "ror_ids": [ + "https://ror.org/003109y17" + ] + }, + { + "affiliation": "Laboratoire de Chimie des Plantes et de Synthèse Organique et Bioorganique, Faculté des Sciences, Université Mohamed V-Agdal, Avenue Ibn Batouta, BP1014, Rabat, Morocco", + "ror_ids": [] + }, + { + "affiliation": "BGP, CNPC", + "ror_ids": [ + "https://ror.org/05269d038" + ] + }, + { + "affiliation": "University of Illinois College of Medicine at Peoria University of Illinois College of Medicine at Peoria Peoria IL United States", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "University of Science and Technology of China,CAS Key Laboratory of Wireless-Optical Communications,Hefei,China,230027", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Old Dominion University, USA", + "ror_ids": [ + "https://ror.org/04zjtrb98" + ] + }, + { + "affiliation": "State Key Laboratory of Multi-phase Complex Systems, Institute of Process Engineering, Chinese Academy of Sciences, Beijing 100190, P. R. China.", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/03j4x9j18" + ] + }, + { + "affiliation": "b Institute of Photonics and Communications, National Kaohsiung University of Applied Sciences, Kaohsiung, Taiwan", + "ror_ids": [ + "https://ror.org/0370v7d46" + ] + }, + { + "affiliation": "Univ. Bretagne Occidentale, GIS Oceanol. Geodynam., Brest, France", + "ror_ids": [ + "https://ror.org/01b8h3982" + ] + }, + { + "affiliation": "Baruch College, CUNY", + "ror_ids": [ + "https://ror.org/023qavy03" + ] + }, + { + "affiliation": "KIRŞEHİR AHİ EVRAN ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/05rrfpt58" + ] + }, + { + "affiliation": "Kathie M. Cole is a clinical nurse III in the cardiac care unit, Anna Gawlinskiis the director of evidence-based practice and an adjunct professor, and Jenny Kotlermanis a statistician at the Medical Center and School of Nursing, University of California, Los Angeles. Neil Steers is an adjunct assistant professor at the David Geffen School of Medicine, University of California, Los Angeles.", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Laboratory of Retrovirology, Department of Medical Biology and BioMed Research Group, Université du Québec à Trois-Rivières, 3351 Boulevard des Forges, Trois-Rivières, Quebec G9A 5H7, Canada", + "ror_ids": [ + "https://ror.org/02xrw9r68" + ] + }, + { + "affiliation": "Key Laboratory of Drug Targeting and Drug Delivery System, Ministry of Education, West China School of Pharmacy, Sichuan University, No. 17, Block 3, Southern Renmin Road, Chengdu 610041, P.R. China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "University of Georgia, United States of America", + "ror_ids": [ + "https://ror.org/00te3t702" + ] + }, + { + "affiliation": "Department of Horticulture, The Ohio State Univ., Columbus, OH 43210", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Tennessee State University", + "ror_ids": [ + "https://ror.org/01fpczx89" + ] + }, + { + "affiliation": "Department of Molecular Mechanisms of Disease, DMMD, University of Zürich, CH-8057 Zürich, Switzerland;", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "2Pathology, University of New Mexico Health Sciences Center, Albuquerque, NM", + "ror_ids": [ + "https://ror.org/05fs6jp91" + ] + }, + { + "affiliation": "University of Exeter Exeter United Kingdom", + "ror_ids": [ + "https://ror.org/03yghzc09" + ] + }, + { + "affiliation": "Department of Radiology The University of Texas Medical School 6431 Fannin Street Houston, TX 77030", + "ror_ids": [ + "https://ror.org/01gek1696" + ] + }, + { + "affiliation": "Boston Combined Residency Program in Pediatrics, Children’s Hospital Boston and Boston Medical Center, Boston, MA 02115, USA.", + "ror_ids": [ + "https://ror.org/00dvg7y05", + "https://ror.org/010b9wj87" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Girijananda Chowdhury Institute of Management and Technology, Guwahati 781017, Assam, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemistry, University of Wisconsin─Madison, 1101 University Avenue, Madison, Wisconsin 53706, United States", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Los Angeles, CA", + "ror_ids": [] + }, + { + "affiliation": "Quantum Electrical Metrology Division National Institute of Standards and Technology 100 Bureau Drive, Stop 817-01 Gaithersburg, MD 20899 USA", + "ror_ids": [ + "https://ror.org/05xpvk416" + ] + }, + { + "affiliation": "Okinawa Institute of Science and Technology Graduate University, Onna, Okinawa 904-0495, Japan", + "ror_ids": [ + "https://ror.org/02qg15b79" + ] + }, + { + "affiliation": "Sarah Cannon Research Institute and Tennessee Oncology, Nashville, TN", + "ror_ids": [ + "https://ror.org/03754ky26", + "https://ror.org/014t21j89" + ] + }, + { + "affiliation": "The University of Oklahoma, Norman, USA", + "ror_ids": [ + "https://ror.org/02aqsxs83" + ] + }, + { + "affiliation": "Medicinal Chemistry and Drug Action, Monash Institute of Pharmaceutical Sciences, Monash University, Parkville, Victoria 3052, Australia", + "ror_ids": [ + "https://ror.org/02bfwt286" + ] + }, + { + "affiliation": "nutriFOODchem Unit, Department of Food Safety and Food\nQuality, Faculty\nof Bioscience Engineering, Ghent University, B-9000 Ghent, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Penn State Extension, Lancaster, PA 17601", + "ror_ids": [] + }, + { + "affiliation": "Professor PhD., „George Enescu” National University of Arts from Iaşi , Romania", + "ror_ids": [ + "https://ror.org/05nxbvr71" + ] + }, + { + "affiliation": "Southeast Missouri State University", + "ror_ids": [ + "https://ror.org/010n41y16" + ] + }, + { + "affiliation": "Visiting Lecturer, Department of English, Ghazi University, Dera Ghazi Khan, Punjab, Pakistan.", + "ror_ids": [ + "https://ror.org/023a7t361" + ] + }, + { + "affiliation": "University of Florida", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Forestry, Forestry Research Institute of Malawi, P.O. Box 270, Zomba, Malawi", + "ror_ids": [ + "https://ror.org/04n3nh595" + ] + }, + { + "affiliation": "Louisiana State University Health Science Center, Shreveport, LA.", + "ror_ids": [ + "https://ror.org/03151rh82" + ] + }, + { + "affiliation": "b Laboratory of Advanced Polymers and Optimized Materials (LAPOM), Department of Materials Science and Engineering and Center for Advanced Research and Technology (CART), University of North Texas, 1150 Union Circle # 305310, Denton, TX 76203-5017, USA;, Email: wbrostow@yahoo.com", + "ror_ids": [ + "https://ror.org/00v97ad02" + ] + }, + { + "affiliation": "1UT Southwestern Medical Ctr., Dallas, TX", + "ror_ids": [ + "https://ror.org/05byvp690" + ] + }, + { + "affiliation": "Indian Institute of Technology, ISM, Dhanbad", + "ror_ids": [ + "https://ror.org/013v3cc28" + ] + }, + { + "affiliation": "School of Education, University of Galway, Galway, Ireland", + "ror_ids": [ + "https://ror.org/03bea9k73" + ] + }, + { + "affiliation": "School of Life Sciences, University of Warwick, Coventry, UK", + "ror_ids": [ + "https://ror.org/01a77tt86" + ] + }, + { + "affiliation": "Department of Systems and Industrial Engineering, University of Arizona, Tucson, Arizona 85721", + "ror_ids": [ + "https://ror.org/03m2x1q45" + ] + }, + { + "affiliation": "Siebein Assoc., Inc., Gainesville, FL", + "ror_ids": [] + }, + { + "affiliation": "Key Laboratory of Molecular Medicine, Ministry of Education, Department of Biochemistry and Molecular Biology Fudan University Shanghai Medical College Shanghai China", + "ror_ids": [ + "https://ror.org/013q1eq08", + "https://ror.org/01zntxs11" + ] + }, + { + "affiliation": "Pacific Gas and Electric Company, San Francisco, Calif.", + "ror_ids": [ + "https://ror.org/05w630g93" + ] + }, + { + "affiliation": "Department of Surgery, College of Medicine, Chosun University, Gwangju, Korea", + "ror_ids": [ + "https://ror.org/01zt9a375" + ] + }, + { + "affiliation": "Hebei Normal University", + "ror_ids": [ + "https://ror.org/004rbbw49" + ] + }, + { + "affiliation": "Dr. David Elkind, Professor of Child Study, Senior Resident Scholar, Tufts University, Lincoln Filene Center for Citizenship and Public Affairs, Medford, MA 02155", + "ror_ids": [ + "https://ror.org/05wvpxv85" + ] + }, + { + "affiliation": "Czech Academy of Sciences, Institute of Organic Chemistry and Biochemistry", + "ror_ids": [ + "https://ror.org/04nfjn472", + "https://ror.org/053avzc18" + ] + }, + { + "affiliation": "Department of Biophysics, Second Military Medical University, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04tavpn47" + ] + }, + { + "affiliation": "Department of Biotechnology, Indian Institute of Technology Guwahati, Guwahati, Assam 781039, India", + "ror_ids": [ + "https://ror.org/0022nd079" + ] + }, + { + "affiliation": "South China University of Technology", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Norwegian Centre for Violence and Traumatic Stress Studies, Oslo, Norway", + "ror_ids": [ + "https://ror.org/01p618c36" + ] + }, + { + "affiliation": "Health Protection Agency, London, UK", + "ror_ids": [] + }, + { + "affiliation": "Kure National Institute of Technology, Kure Hiroshima Japan", + "ror_ids": [ + "https://ror.org/02cndcd59" + ] + }, + { + "affiliation": "Indian Institute of Technology 1 Department of Physics and Meteorology, , Kharagpur, Kharagpur-721 302, India", + "ror_ids": [ + "https://ror.org/03w5sq511" + ] + }, + { + "affiliation": "Rehabilitation 1 team, Yonsei University Health System, Severance Rehabilitation Hospital, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/04sze3c15" + ] + }, + { + "affiliation": "From the Institute for Genetic Medicine, University of Southern California Keck School of Medicine; the Department of Adult Oncology, Dana Farber Cancer Institute; and the Divisions of Research Immunology/Bone Marrow Transplantation and Hematology/Oncology, Childrens Hospital Los Angeles.", + "ror_ids": [ + "https://ror.org/02jzgtq86", + "https://ror.org/03taz7m60", + "https://ror.org/00412ts95" + ] + }, + { + "affiliation": "Zienkiewicz Centre for Computational Engineering, College of Engineering, Swansea University, Bay Campus, Fabian Way, Swansea, Wales SA1 8EN, U.K.", + "ror_ids": [ + "https://ror.org/053fq8t95" + ] + }, + { + "affiliation": "Division of Pulmonary, Critical Care, Sleep and Allergy,", + "ror_ids": [] + }, + { + "affiliation": "School of Culture and Communication, The University of Melbourne, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "a Department of Physics , University of Lucknow , Lucknow, 226 007, India", + "ror_ids": [ + "https://ror.org/03bdeag60" + ] + }, + { + "affiliation": "Department of Clinical Neuroscience Section for Psychiatry Huddinge Karolinska Institutet Stockholm Sweden", + "ror_ids": [ + "https://ror.org/056d84691" + ] + }, + { + "affiliation": "Department of Sociology Iowa State University Ames USA", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "University of Ioannina", + "ror_ids": [ + "https://ror.org/01qg3j183" + ] + }, + { + "affiliation": "Research Laboratory of Electronics and Department of Electrical Engineering, Massachusetts Institute of Technology, Cambridge, Massachusetts 02139", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Department of Geological Sciences, University of Manitoba, Winnipeg, MB, Canada R3T 2N2", + "ror_ids": [ + "https://ror.org/02gfys938" + ] + }, + { + "affiliation": "Department of Civil and Coastal Engineering, University of Florida, 365 Weil Hall, Gainesville, FL 32611-6580.", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "University of Washington, Seattle, WA, USA", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "Institute of High Current Electronics of the USSR Academy of Sciences Siberian Division, pr. Akademichesky, 4, 634055, Tomsk, USSR", + "ror_ids": [ + "https://ror.org/055fe2s59" + ] + }, + { + "affiliation": "Department of Cardiology Shanghai Jiao Tong University Affiliated Sixth People's Hospital Shanghai China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/049zrh188" + ] + }, + { + "affiliation": "1Univ. of Texas Southwestern Med. Ctr.", + "ror_ids": [ + "https://ror.org/05byvp690" + ] + }, + { + "affiliation": "Fife", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurology, MCTN, Medical Faculty Mannheim, Heidelberg University , Mannheim , Germany", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Bundeswehr Technical Centre for Ships and Naval Weapons, Maritime Technology and Research (WTD 71) Eckernförde Germany", + "ror_ids": [] + }, + { + "affiliation": "Instituto de Neurociencias, CSIC-Universidad Miguel Hernandez, Spain", + "ror_ids": [ + "https://ror.org/000nhpy59", + "https://ror.org/01azzms13" + ] + }, + { + "affiliation": "Department of Anesthesiology, Pediatrics, and Neurological Surgery, and Harborview Injury Prevention and Research Center, University of Washington, Seattle, Washington, USA.", + "ror_ids": [ + "https://ror.org/00cvxb145", + "https://ror.org/0394z0v14" + ] + }, + { + "affiliation": "Department of Pharmacy, Fremantle Hospital, Fremantle, Western Australia", + "ror_ids": [ + "https://ror.org/03yxgmm62" + ] + }, + { + "affiliation": "Université de Lyon 2", + "ror_ids": [ + "https://ror.org/01rk35k63" + ] + }, + { + "affiliation": "Universiti Kebangsaan Malaysia (UKM),Faculty of Engineering and Built Environment,Department of Electrical, Electronic and Systems Engineering,Bangi,Malaysia,43600", + "ror_ids": [ + "https://ror.org/00bw8d226" + ] + }, + { + "affiliation": "Department of Neuroanaesthesiology, Neurosciences Center, All India Institute of Medical Sciences, New Delhi, India", + "ror_ids": [ + "https://ror.org/02dwcqs71" + ] + }, + { + "affiliation": "Salisbury General Infirmary , Fisherton Street, Salisbury, Wiltshire, UK", + "ror_ids": [] + }, + { + "affiliation": "Department of Biomedical Engineering, Univ. of Iowa, IA City, IA 52242, US.", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "Институт истории АН Республики Узбекистан (Узбекистан)", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurology, Neurological Institute, Tokyo Women's Medical College, Shinjyukuku, Tokyo, Japan", + "ror_ids": [] + }, + { + "affiliation": "From the Institute of Animal Genetics, University of Edinburgh, Scotland", + "ror_ids": [ + "https://ror.org/01nrxwf90" + ] + }, + { + "affiliation": "Department of Structural Research, Institute of Nuclear Physics, Polish Academy of Sciences, E. Radzikowskiego 152, 31-342 Kraków, Poland", + "ror_ids": [ + "https://ror.org/01dr6c206", + "https://ror.org/01n78t774" + ] + }, + { + "affiliation": "Health and Welfare Canada, Health Protection Branch, Food Research Division, Ottawa, Ontario K1A 0L2, Canada", + "ror_ids": [] + }, + { + "affiliation": "Kings College London, Bush House, 30 Aldwych, London, UK", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "The Soltan Institute for Nuclear Studies", + "ror_ids": [] + }, + { + "affiliation": "La Jolla", + "ror_ids": [] + }, + { + "affiliation": "Beijing University of Chemical Technology, College of Science, Chaoyang District, Beijing", + "ror_ids": [ + "https://ror.org/00df5yc52" + ] + }, + { + "affiliation": "Athinoula A. Martinos Center for Biomedical Imaging, Department of Radiology, Massachusetts General Hospital, Charlestown, MA 02129;", + "ror_ids": [ + "https://ror.org/032q5ym94", + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Bangladesh Institute of Social Research (BISR) Trust, Dhaka, Bangladesh.", + "ror_ids": [] + }, + { + "affiliation": "University of Mississippi, USA", + "ror_ids": [ + "https://ror.org/02teq1165" + ] + }, + { + "affiliation": "Faculty of Culture and Information Science, Doshisha University", + "ror_ids": [ + "https://ror.org/01fxdkm29" + ] + }, + { + "affiliation": "Department of Systems Engineering, Colorado State University, Fort Collins, CO, USA", + "ror_ids": [ + "https://ror.org/03k1gpj17" + ] + }, + { + "affiliation": "Columbia University", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "Grad. Sch. Sci., Kyushu Univ.", + "ror_ids": [ + "https://ror.org/00p4k0j84" + ] + }, + { + "affiliation": "Contribution from the Department of Chemistry, Baker Laboratory, Cornell University, Ithaca, New York 14853-1301", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Recreation and Leisure Studies, University of Waterloo, Waterloo, Ontario, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "Concrete and Asphalt Laboratory Empa Swiss Federal Laboratories for Materials Science and Technology Dübendorf Switzerland", + "ror_ids": [ + "https://ror.org/02x681a42" + ] + }, + { + "affiliation": "State Key Laboratory of Pharmaceutical Biotechnology, Nanjing University, Nanjing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01rxvg760", + "https://ror.org/043ea4m21" + ] + }, + { + "affiliation": "UNESP, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Distillation Research Laboratory, Rochester Institute of Technology, Rochester, New York 14614", + "ror_ids": [ + "https://ror.org/00v4yb702" + ] + }, + { + "affiliation": "Faculty of Education, Kumamoto University", + "ror_ids": [ + "https://ror.org/02cgss904" + ] + }, + { + "affiliation": "State University of New York at Oswego", + "ror_ids": [ + "https://ror.org/01597g643" + ] + }, + { + "affiliation": "Vestibular and Oculomotor Laboratory Department of Otolaryngology Head and Neck Surgery Washington University School of Medicine St. Louis Missouri", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Dept. of Electronic Systems Engineering, Hanyang University", + "ror_ids": [ + "https://ror.org/046865y68" + ] + }, + { + "affiliation": "Fleming, Buenos Aires, Argentina", + "ror_ids": [] + }, + { + "affiliation": "Memorial Sloan-Kettering Cancer Center, New York, NY", + "ror_ids": [ + "https://ror.org/02yrq0923" + ] + }, + { + "affiliation": "Department of Entomology NYS Agric. Expt. Station Geneva, NY 14456 (315)787-2352", + "ror_ids": [] + }, + { + "affiliation": "School of Interactive Computing, Georgia Institute of Technology, Atlanta, USA", + "ror_ids": [ + "https://ror.org/01zkghx44" + ] + }, + { + "affiliation": "Southeastern Cooperative Wildlife Disease Study, Department of Parasitology, College of Veterinary Medicine, The University of Georgia, Athens, Georgia 30602, USA", + "ror_ids": [ + "https://ror.org/00te3t702" + ] + }, + { + "affiliation": "Research Center of Semi-conductor Technology for Energy, CRTSE-02, Bd. Dr. Frantz FANON, B.P. 140 Algiers-7, Merveilles 16038, Algeria", + "ror_ids": [ + "https://ror.org/04kymnq52" + ] + }, + { + "affiliation": "Department of Environmental Biotechnology, University of Science and Technology, Yuseong-gu, Republic of Korea", + "ror_ids": [ + "https://ror.org/000qzf213" + ] + }, + { + "affiliation": "Mehran UET SZAB Campus,Department of Software Engineering,Khairpur,Pakistan", + "ror_ids": [] + }, + { + "affiliation": "Assistant Public Health Professor, Johns Hopkins Bloomberg School of Public Health", + "ror_ids": [] + }, + { + "affiliation": "Loma Linda University Medical Center, Loma Linda, CA, USA", + "ror_ids": [ + "https://ror.org/03et1qs84" + ] + }, + { + "affiliation": "Graduate Program in Neuroscience University of Western Ontario London Ontario Canada", + "ror_ids": [ + "https://ror.org/02grkyz14" + ] + }, + { + "affiliation": "Universidade Federal do Espírito Santo", + "ror_ids": [ + "https://ror.org/05sxf4h28" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Research Institute of Advanced Materials, Seoul National University, Seoul 08826, Korea", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Brown University Program in Medicine and the Division of Allergy, Rhode Island Hospital, Providence, Rhode Island", + "ror_ids": [ + "https://ror.org/01aw9fv09", + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "News & Media Research Centre, Faculty of Arts & Design, University of Canberra, Australia", + "ror_ids": [ + "https://ror.org/04s1nv328" + ] + }, + { + "affiliation": "School of Pharmaceutical Science, Key Laboratory of Chemical Biology (Ministry of Education) Shandong University, 44 West Wenhua Road, Jinan, Shandong Province 250012, China", + "ror_ids": [ + "https://ror.org/0207yh398" + ] + }, + { + "affiliation": "NERC Isotope Geosciences Facilities British Geological Survey Keyworth UK", + "ror_ids": [ + "https://ror.org/04a7gbp98" + ] + }, + { + "affiliation": "Institut de Cancérologie Lucien Neuwirth, 42270 Saint Priest en Jarez, France", + "ror_ids": [] + }, + { + "affiliation": "a University of Gent , Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Hong Kong Baptist University", + "ror_ids": [ + "https://ror.org/0145fw131" + ] + }, + { + "affiliation": "Stanford Linear Accelerator Center, Stanford University, Stanford, California 94309, USA", + "ror_ids": [ + "https://ror.org/00f54p054", + "https://ror.org/05gzmn429" + ] + }, + { + "affiliation": "School of Engineering University of Glasgow Glasgow UK", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "Division of Cardiology, Department of Internal Medicine, National Taiwan University Hospital, Taipei 10002, Taiwan", + "ror_ids": [ + "https://ror.org/03nteze27" + ] + }, + { + "affiliation": "U.S. Horticultural Research Laboratory; USDA, ARS; Fort Pierce, Florida, 34945", + "ror_ids": [ + "https://ror.org/04a4m2h70" + ] + }, + { + "affiliation": "Center of Anatomy and Functional Morphology, Medical Education, Neurology, Neuroscience Friedman Brain Institute Icahn School of Medicine at Mount Sinai New York NY", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "NORDIG Institute for Health Research and Prevention, Hamburg, Germany. NOsius@t-online.de", + "ror_ids": [] + }, + { + "affiliation": "1 Philadelphia, Pennsylvania", + "ror_ids": [] + }, + { + "affiliation": "The Peel Hospital, Galashiels, Selkirkshire, Scotland", + "ror_ids": [] + }, + { + "affiliation": "SRM Institute of Science and Technology,College of Engineering and Technology,Department of Electronics and Communication Engineering,Kattankulathur, Chennai,India", + "ror_ids": [ + "https://ror.org/050113w36" + ] + }, + { + "affiliation": "Department of Comparative Politics University of Bergen, Norway", + "ror_ids": [ + "https://ror.org/03zga2b32" + ] + }, + { + "affiliation": "AT&T Bell Laboratories, Murray Hill, New Jersey 07974", + "ror_ids": [ + "https://ror.org/02bbd5539" + ] + }, + { + "affiliation": "Universidade Federal de Santa Maria, Brasil", + "ror_ids": [ + "https://ror.org/01b78mz79" + ] + }, + { + "affiliation": "George Washington University, Washington, D. C.", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "From the Section of Plastic Surgery, Department of Surgery, the Institute of Biomedical Engineering and the Department of Public Health, National Cheng-Kung University, Tainan, Taiwan, Republic of China", + "ror_ids": [ + "https://ror.org/01b8kcc49" + ] + }, + { + "affiliation": "Department of Biological and Environmental Science; University of Jyväskylä; Jyväskylä Finland", + "ror_ids": [ + "https://ror.org/05n3dz165" + ] + }, + { + "affiliation": "BioCentrum-DTU, Technical University of Denmark, DK-2800 Kgs. Lyngby, Denmark, and Danisco A/S, DK-8220 Brabrand, Denmark", + "ror_ids": [ + "https://ror.org/04qtj9h94" + ] + }, + { + "affiliation": "Department of Neurosurgery, Keio University", + "ror_ids": [ + "https://ror.org/02kn6nx58" + ] + }, + { + "affiliation": "Changzhi Medical College, No. 161, JieFangDong Street", + "ror_ids": [ + "https://ror.org/0340wst14" + ] + }, + { + "affiliation": "Sierra Nevada Research Institute University of California Merced CA USA", + "ror_ids": [ + "https://ror.org/00d9ah105" + ] + }, + { + "affiliation": "Jiangxi Normal University of Science and Technology", + "ror_ids": [ + "https://ror.org/04r1zkp10" + ] + }, + { + "affiliation": "University Departments of Surgery and Medical Biochemistry, Welsh National School of Medicine, Cardiff", + "ror_ids": [] + }, + { + "affiliation": "St. Luke's/Temple University Lewis Katz School of Medicine, Bethlehem, PA; and", + "ror_ids": [ + "https://ror.org/00kx1jb78" + ] + }, + { + "affiliation": "Eindhoven University of Technology , Postbus 513, 5600 MB Eindhoven , The Netherlands", + "ror_ids": [ + "https://ror.org/02c2kyt77" + ] + }, + { + "affiliation": "Department of Industrial and Manufacturing System Engineering, Iowa State University, Ames, IA", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "28759 Bremen", + "ror_ids": [] + }, + { + "affiliation": "Professor of Biochemistry in the University of Bristol, and member of the Research Committee of the British Diabetic Association.", + "ror_ids": [ + "https://ror.org/0524sp257", + "https://ror.org/023zt9146" + ] + }, + { + "affiliation": "Department of Physics, Govt College for Women, Vazhuthacaud, Research Centre, University of Kerala, Thiruvananthapuram, Kerala, India", + "ror_ids": [ + "https://ror.org/05tqa9940" + ] + }, + { + "affiliation": "University of Washington Bothell", + "ror_ids": [ + "https://ror.org/02ygzhr13" + ] + }, + { + "affiliation": "Dublin Dental School and Hospital, Trinity College Dublin, Lincoln Place, Dublin, Ireland,", + "ror_ids": [ + "https://ror.org/02tyrky19" + ] + }, + { + "affiliation": "TEFL, Shiraz University, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/028qtbk54" + ] + }, + { + "affiliation": "Department of Mathematics and Statistics, University of Ottawa, 585 King Edward Avenue, Ottawa, Ontario K1N 6N5, Canada", + "ror_ids": [ + "https://ror.org/03c4mmv16" + ] + }, + { + "affiliation": "Surgical & Orthopaedic Research Laboratories, Prince of Wales Clinical School, Prince of Wales Hospital, UNSW Sydney, Randwick, NSW, Australia", + "ror_ids": [ + "https://ror.org/022arq532", + "https://ror.org/03r8z3t63" + ] + }, + { + "affiliation": "Graduate School of Human Development and Environment, Kobe University", + "ror_ids": [ + "https://ror.org/03tgsfw79" + ] + }, + { + "affiliation": "a Columbia-Presbyterian Medical Center , New York City , USA", + "ror_ids": [] + }, + { + "affiliation": "Institute of Agro-product Safety and Nutrition, Zhejiang Academy of Agricultural Sciences, Hangzhou 310021, China", + "ror_ids": [ + "https://ror.org/02qbc3192" + ] + }, + { + "affiliation": "Department of Urology Vita‐Salute San Raffaele University Milan Italy", + "ror_ids": [ + "https://ror.org/01gmqr298" + ] + }, + { + "affiliation": "Iowa State University, Ames, Iowa 50011", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "Integrated Research and Treatment Center Adiposity Diseases, University of Leipzig, Leipzig, Germany;", + "ror_ids": [ + "https://ror.org/03s7gtk40" + ] + }, + { + "affiliation": "Innovative Interfaces , Providence, Rhode Island, USA", + "ror_ids": [] + }, + { + "affiliation": "Peking University Third Hospital", + "ror_ids": [ + "https://ror.org/04wwqze12" + ] + }, + { + "affiliation": "Hospital das Clínicas; Universidade de São Paulo", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Embryology, Carnegie Institution of Washington, 115 West University Parkway, Baltimore, MD 21210", + "ror_ids": [ + "https://ror.org/03bvtqh46", + "https://ror.org/04jr01610" + ] + }, + { + "affiliation": "Department of Electrical Engineering, Universidad Politécnica de Cartagena, Cartagena, Spain", + "ror_ids": [ + "https://ror.org/02k5kx966" + ] + }, + { + "affiliation": "Division of Health Research, Lancaster University, Lancaster, UK", + "ror_ids": [ + "https://ror.org/04f2nsd36" + ] + }, + { + "affiliation": "Key Laboratory of Photochemical Conversion and Optoelectronic Materials Technical Institute of Physics and Chemistry Chinese Academy of Sciences Beijing 100190 China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/04akaak77" + ] + }, + { + "affiliation": "東京都リハビリテーション病院", + "ror_ids": [] + }, + { + "affiliation": "GSL College of Physiotherapy, GSL Medical College, Rajamahendravaram, Dr. YSR University of Health Sciences, Andhra Pradesh, India", + "ror_ids": [] + }, + { + "affiliation": "Kyung Hee University", + "ror_ids": [ + "https://ror.org/01zqcg218" + ] + }, + { + "affiliation": "Center for Biomedical Research, The University of Texas Health Science Center at Tyler, Tyler, TX, USA", + "ror_ids": [ + "https://ror.org/01sps7q28" + ] + }, + { + "affiliation": "Master of Information Technology University of Raharja,Indonesia", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Economics and Business, University of Groningen, Groningen, Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Internal Medicine, School of Veterinary Medicine and Animal Science, University of São Paulo, São Paulo 05508 270, Brazil.", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "National Institute of Advanced Industrial Science and Technology (AIST) , AIST Tsukuba-East, Namiki 1-2-1, Tsukuba, Ibaraki 305-8564, Japan", + "ror_ids": [ + "https://ror.org/01703db54" + ] + }, + { + "affiliation": "University of Denver, CO, USA", + "ror_ids": [ + "https://ror.org/04w7skc03" + ] + }, + { + "affiliation": "China", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemistry, University of California, Irvine, California 92697-2025", + "ror_ids": [ + "https://ror.org/04gyf1771" + ] + }, + { + "affiliation": "NTT Corporation,Kanagawa,Japan", + "ror_ids": [] + }, + { + "affiliation": "School of Engineering, CUSAT,Division of Electronics and Communication Engineering,Cochin,Kerala", + "ror_ids": [] + }, + { + "affiliation": "1Columbia University, College of Physicians and Surgeons, New York, New York.", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "The University of Iowa, USA", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "Lomonosov Moscow State University", + "ror_ids": [ + "https://ror.org/010pmpe69" + ] + }, + { + "affiliation": "a Department of Physical Education for Men , University of Southern California , Los Angeles , Cal. , USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "Aerosol and Particle Technology Laboratory, School of Mechanical, Aerospace and Systems Engineering, Korea Advanced Institute of Science and Technology, Guseong-dong, Yuseong-gu, Republic of Korea", + "ror_ids": [ + "https://ror.org/05apxxy63" + ] + }, + { + "affiliation": "Atmosphere and Ocean Research Institute, The University of Tokyo", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "University of California, San Francisco", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Purdue University Center for Cancer Research, Purdue University, West Lafayette, Indiana, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "University of Essex", + "ror_ids": [ + "https://ror.org/02nkf1q06" + ] + }, + { + "affiliation": "University of Illinois at Chicago College of Nursing Springfield Illinois USA", + "ror_ids": [ + "https://ror.org/02mpq6x41" + ] + }, + { + "affiliation": "University of Vienna", + "ror_ids": [ + "https://ror.org/03prydq77" + ] + }, + { + "affiliation": "Division of Pulmonary and Critical Care Medicine, University of North Carolina School of Medicine, Chapel Hill, North Carolina", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Department of Aerospace Engineering, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "National Institution of Fusion Science 2 , Toki, Gifu 509-5292, Japan", + "ror_ids": [ + "https://ror.org/01t3wyv61" + ] + }, + { + "affiliation": "Southern Medical University", + "ror_ids": [ + "https://ror.org/01vjw4z39" + ] + }, + { + "affiliation": "Politechnika Wrocławska Wydział Zarządzania", + "ror_ids": [ + "https://ror.org/008fyn775" + ] + }, + { + "affiliation": "Shanghai Jiaotong University First People's Hospital", + "ror_ids": [ + "https://ror.org/04a46mh28", + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "a Department of Geological and Environmental Sciences , Stanford University , Stanford, California, 94305-2115", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Department of Pediatric Dentistry Universidade Federal dos Vales do Jequitinhonha e Mucuri (UFVJM) Diamantina Brazil", + "ror_ids": [ + "https://ror.org/02gen2282" + ] + }, + { + "affiliation": "Technological Design Institute of Scientific Instrument Engineering Siberian Branch of the Russian Academy of Sciences", + "ror_ids": [ + "https://ror.org/02frkq021", + "https://ror.org/053bhme26", + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "W.J. Kolff Institute for Biomedical Engineering and Materials Science, University of Groningen, Antonius Deusinglaan 1, 9713 AV Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Science, The University of Tokyo", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Department of History, Heidelberg University, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Department of Anatomy, Histology and Embryology Semmelweis University Budapest Hungary", + "ror_ids": [ + "https://ror.org/01g9ty582" + ] + }, + { + "affiliation": "JEDDAH UNIVERSITY", + "ror_ids": [ + "https://ror.org/015ya8798" + ] + }, + { + "affiliation": "Department of Nursing Chang Gung University of Science and Technology Taoyuan City Taiwan", + "ror_ids": [ + "https://ror.org/009knm296" + ] + }, + { + "affiliation": "Ann Arbor, MI, Indianapolis, IN, Fairfield, CA, Morgantown, WV, Athens, OH", + "ror_ids": [] + }, + { + "affiliation": "Scientific Center for Expert Evaluation of Medical Products", + "ror_ids": [] + }, + { + "affiliation": "Department of Mathematics , Gaston Berger University , Saint Louis , Senegal", + "ror_ids": [ + "https://ror.org/01jp0tk64" + ] + }, + { + "affiliation": "UEMA", + "ror_ids": [] + }, + { + "affiliation": "Department of Respiratory Medicine, Imperial College, London, United Kingdom.", + "ror_ids": [ + "https://ror.org/041kmwe10" + ] + }, + { + "affiliation": "Department of Ophthalmology, The First Affiliated Hospital of Zhengzhou University, Henan Province Eye Hospital, Henan International Joint Research Laboratory for Ocular Immunology and Retinal Injury Repair, Zhengzhou, People's Republic of China; The Academy of Medical Sciences Zhengzhou University Zhengzhou China", + "ror_ids": [ + "https://ror.org/04ypx8c21", + "https://ror.org/056swr059" + ] + }, + { + "affiliation": "Uppsala Universitet", + "ror_ids": [ + "https://ror.org/048a87296" + ] + }, + { + "affiliation": "Research and Innovation Division, South Asian Institute for Social Transformation (SAIST), Dhaka, Bangladesh", + "ror_ids": [] + }, + { + "affiliation": "Department of ECE, University College of Engineering, JNTUK, Kakinada, India", + "ror_ids": [ + "https://ror.org/05s9t8c95" + ] + }, + { + "affiliation": "Univ. of Washington, Seattle, WA 98195", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "University of Barcelona (Spain)", + "ror_ids": [ + "https://ror.org/021018s57" + ] + }, + { + "affiliation": "Shenyang Aerospace University", + "ror_ids": [ + "https://ror.org/02423gm04" + ] + }, + { + "affiliation": "Discipline of Medicine University of Adelaide Adelaide South Australia Australia", + "ror_ids": [ + "https://ror.org/00892tw58" + ] + }, + { + "affiliation": "Regina General Hospital", + "ror_ids": [ + "https://ror.org/029tn5b56" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Chung-Ang University Hospital, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/04gr4mh63" + ] + }, + { + "affiliation": "Biostatistical Sciences and Pharmacometrics Novartis Institutes for Biomedical Research Cambridge Massachusetts USA", + "ror_ids": [] + }, + { + "affiliation": "Harvard Medical School Massachusetts General Hospital Avon Foundation Comprehensive Breast Evaluation Center Wang Ambulatory Care Center Boston, MA 02114", + "ror_ids": [ + "https://ror.org/002pd6e78", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "University of Toronto Department of Mechanical and Industrial Engineering, Computer Integrated Manufacturing Laboratory (CIMLab) Ontario, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Hematopoiesis Unit, Nikolaus-Fiebiger-Center, 91054 Erlangen, Germany.", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Chemistry, Warsaw University of Technology, ul. Noakowskiego 3, 00-664Warsaw, Poland", + "ror_ids": [ + "https://ror.org/00y0xnp53" + ] + }, + { + "affiliation": "Sveučilište J. J. Strossmayera u Osijeku, Filozofski fakultet, Lorenza Jägera 9, HR–31000 Osijek", + "ror_ids": [ + "https://ror.org/05sw4wc49" + ] + }, + { + "affiliation": "Graduate Center of The City University of New York, New York 10036", + "ror_ids": [ + "https://ror.org/00453a208" + ] + }, + { + "affiliation": "Department of Psychiatry, Gulhane Medical Faculty, Health Sciences University, Ankara, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Royal Prince Alfred Hospital, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/05gpvde20" + ] + }, + { + "affiliation": "Schlumberger Cambridge Research, Madingley Road, Cambridge CB3 OEL, England", + "ror_ids": [] + }, + { + "affiliation": "Muroran Inst. of Technol", + "ror_ids": [ + "https://ror.org/04rymkk69" + ] + }, + { + "affiliation": "Royal Perth Hospital, Perth, WA.", + "ror_ids": [ + "https://ror.org/00zc2xc51" + ] + }, + { + "affiliation": "School of Mathematics and Physics Queen's University Belfast University Rd. Belfast BT7 1NN UK", + "ror_ids": [ + "https://ror.org/00hswnk62" + ] + }, + { + "affiliation": "Department of Computer Technology, VJTI, Matunga, Mumbai, India", + "ror_ids": [] + }, + { + "affiliation": "Institut für Neuroimmunologie und Multiple Sklerose, Zentrum für Molekulare Neurobiologie Hamburg, Universitätsklinikum Hamburg-Eppendorf, 20251 Hamburg, Germany", + "ror_ids": [ + "https://ror.org/01zgy1s35" + ] + }, + { + "affiliation": "International Agency for Research on Cancer; Lyon France", + "ror_ids": [ + "https://ror.org/00v452281" + ] + }, + { + "affiliation": "Institute for oncology and radiology of Serbia, Belgrade", + "ror_ids": [] + }, + { + "affiliation": "State University of Campinas, Brazil", + "ror_ids": [ + "https://ror.org/04wffgt70" + ] + }, + { + "affiliation": "National Semiconductor Corporation, 2900 Semiconductor Drive , M/S E-170, Santa Clara, California 95052", + "ror_ids": [] + }, + { + "affiliation": "University of Colorado | Anschutz Medical Campus, Aurora, CO.", + "ror_ids": [ + "https://ror.org/03wmf1y16" + ] + }, + { + "affiliation": "Department of Nephrology, Copenhagen University Hospital, Rigshospitalet , Copenhagen 2100 , Denmark", + "ror_ids": [ + "https://ror.org/05bpbnx46" + ] + }, + { + "affiliation": "Department of Burns and Wound Repair Surgery Guangdong Provincial People's Hospital, Guangdong Academy of Medical Sciences Guangzhou China", + "ror_ids": [ + "https://ror.org/0432p8t34", + "https://ror.org/045kpgw45" + ] + }, + { + "affiliation": "Harvard Medical School, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Arbor Research Collaborative for Health, Ann Arbor, United States of America", + "ror_ids": [ + "https://ror.org/043qmbk61" + ] + }, + { + "affiliation": "Fudan University 1 State Key Laboratory of Surface Physics and Department of Physics, , Shanghai 200433, China", + "ror_ids": [ + "https://ror.org/000nbq540", + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "University of Sussex School of Business Department of Management, University of Sussex Business School, Brighton, UK", + "ror_ids": [ + "https://ror.org/00ayhx656" + ] + }, + { + "affiliation": "Shandong Provincial Land Space and Ecological Restoration Center Jinan PR China", + "ror_ids": [] + }, + { + "affiliation": "Social Services Department, London Borough of Merton, 116 Kingston Road, London. U.K.", + "ror_ids": [] + }, + { + "affiliation": "Department of Biology and Chemistry, City University of Hong Kong, Kowloon, Hong Kong", + "ror_ids": [ + "https://ror.org/03q8dnn23" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, University of Padua, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Madras University, India", + "ror_ids": [ + "https://ror.org/04jmt9361" + ] + }, + { + "affiliation": "Pilotage Department, Aeronautics and Aerospace Faculty Gaziantep University Gaziantep Turkey", + "ror_ids": [ + "https://ror.org/020vvc407" + ] + }, + { + "affiliation": "Department of Sociology, Eötvös Loránd University, Budapest, Lövölde tér 2/a, 1071, Hungary", + "ror_ids": [ + "https://ror.org/01jsq2704" + ] + }, + { + "affiliation": "CSIR-Indian Institute of Petroleum, Mohkampur, Dehradun-248005, India.", + "ror_ids": [ + "https://ror.org/04gavx394" + ] + }, + { + "affiliation": "Departments of Psychiatry and Pediatrics, University of California, San Francisco", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Departments of Research and Development, 3M Pharmaceuticals, St Paul, MN, USA", + "ror_ids": [] + }, + { + "affiliation": "Department of Physics, National Institute of Technology, Raipur, India;", + "ror_ids": [ + "https://ror.org/02y553197" + ] + }, + { + "affiliation": "Ann Arbor Pharmacometrics Group LLC Ann Arbor MI USA", + "ror_ids": [] + }, + { + "affiliation": "National Agriculture and Forestry Research Institute, Vientiane, Lao PDR", + "ror_ids": [] + }, + { + "affiliation": "Centro Italiano Ricerche Aerospaziali", + "ror_ids": [ + "https://ror.org/01cqx0m58" + ] + }, + { + "affiliation": "1 Is a mathematics education doctoral student at the University of Central Florida.", + "ror_ids": [ + "https://ror.org/036nfer12" + ] + }, + { + "affiliation": "Department of Applied Chemistry Graduate School of Science and Engineering Saitama University 255 Shimo‐Okubo, Sakura‐ku 338‐8570 Saitama Japan", + "ror_ids": [ + "https://ror.org/02evnh647" + ] + }, + { + "affiliation": "Sungkyunkwan University Gangnam‐gu South Korea", + "ror_ids": [ + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Humboldt-Universität zu Berlin", + "ror_ids": [ + "https://ror.org/01hcx6992" + ] + }, + { + "affiliation": "School of Electrical Engineering and Computer Science, ASRI, Seoul National University", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Universidad Católica de Cuenca - Ecuador", + "ror_ids": [ + "https://ror.org/0036b6n81" + ] + }, + { + "affiliation": "University of California, Lawrence Livermore National Laboratory P.O. Box 808, Livermore, California 94551", + "ror_ids": [ + "https://ror.org/041nk4h53" + ] + }, + { + "affiliation": "Inrae", + "ror_ids": [ + "https://ror.org/003vg9w96" + ] + }, + { + "affiliation": "School of New Energy, Harbin Institute of Technology(Weihai), Weihai, People's Republic of China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Faculty of Arts and Social Sciences, Simon Fraser University, Burnaby, British Columbia, V5A 1S6, Canada", + "ror_ids": [ + "https://ror.org/0213rcc28" + ] + }, + { + "affiliation": "Christchurch Cardioendocrine Research Group Department of Medicine University of Otago Christchurch, New Zealand", + "ror_ids": [ + "https://ror.org/01jmxt844" + ] + }, + { + "affiliation": "Staatswissenschaftliches Seminar der Universität zu Köln, Albertus-Magnus-Platz, D-50923 Köln.", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "Institute of Semiconductors, Chinese Academy of Sciences, Beijing 100083, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/048dd0611" + ] + }, + { + "affiliation": "Curtin Health Innovation Research Institute, Faculty of Health Sciences, Curtin University, Perth, Australia", + "ror_ids": [ + "https://ror.org/02n415q13" + ] + }, + { + "affiliation": "Department of Pathology, School of Medicine, University of Utah, Salt Lake City, Utah 84132", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "Curriculum of Agricultural Engineering, Department of Mechanical Engineering, Faculty of Engineering, King Mongkut's Institute of Technology Ladkrabang, 1 Chalongkrung Road, Ladkrabang, Bangkok 10520, Thailand", + "ror_ids": [ + "https://ror.org/055mf0v62" + ] + }, + { + "affiliation": "University of Michigan 1 Department of Naval Architecture and Marine Engineering, , 2600 Draper Dr., Ann Arbor, Michigan 48109, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Loyola University Chicago", + "ror_ids": [ + "https://ror.org/04b6x2g63" + ] + }, + { + "affiliation": "University of Oxford, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "CIDCA (CIC-CONICET – Facultad de Ciencias Exactas – Universidad Nacional de La Plata) , 47 y 116 , 1900 La Plata , Argentina", + "ror_ids": [ + "https://ror.org/01tjs6929" + ] + }, + { + "affiliation": "Tohoku University", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "Pontifical Catholic University of Rio Grande do Sul, Porto Alegre, Brazil", + "ror_ids": [ + "https://ror.org/025vmq686" + ] + }, + { + "affiliation": "Dongbei U. of Finance and Economics", + "ror_ids": [ + "https://ror.org/05db1pj03" + ] + }, + { + "affiliation": "AP HP-Hopital Pitié Salpétrière, Unité de Thérapie Cellulaire, Paris, France", + "ror_ids": [] + }, + { + "affiliation": "Optical Sciences Center, University of Arizona, Tucson, Arizona 85721", + "ror_ids": [ + "https://ror.org/03m2x1q45" + ] + }, + { + "affiliation": "Department of Endocrine Surgery Sanjay Gandhi Post Graduate Institute of Medical Sciences Raebareli Road 226014 Lucknow India", + "ror_ids": [ + "https://ror.org/01rsgrz10" + ] + }, + { + "affiliation": "State Key Laboratory of Surface Physics Multiscale Research Institute of Complex Systems Department of Physics Fudan University Shanghai 200433 China", + "ror_ids": [ + "https://ror.org/000nbq540", + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "1Section for Inherited Cancer, Department of Medical Genetics, Rikshospitalet University Hospital; 2Department of Pathology, Ullevål University Hospital; 3The Cancer Registry of Norway, Oslo, Norway and 4Translational Cancer Genetics Team, Institute of Cancer Research and Cancer Genetics Unit, The Royal Marsden NHS Foundation Trust, Sutton, Surrey, United Kingdom", + "ror_ids": [ + "https://ror.org/03sm1ej59", + "https://ror.org/043jzw605", + "https://ror.org/0008wzh48" + ] + }, + { + "affiliation": "Department of Microbiology and Ecology Institut Cavanilles de Biodiversitat i Biologia Evolutiva, University of Valencia Burjassot Spain", + "ror_ids": [ + "https://ror.org/043nxc105" + ] + }, + { + "affiliation": "Higher School of Economics", + "ror_ids": [ + "https://ror.org/055f7t516" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, McGill University, Montreal H3A 0E9, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Graz", + "ror_ids": [] + }, + { + "affiliation": "Liverpool Hope University", + "ror_ids": [ + "https://ror.org/03ctjbj91" + ] + }, + { + "affiliation": "Nasjonal kompetansetjeneste for sykdomsrelatert underernæring (NKSU)", + "ror_ids": [] + }, + { + "affiliation": "University of Agder", + "ror_ids": [ + "https://ror.org/03x297z98" + ] + }, + { + "affiliation": "Department of Digestive Minimally Invasive Surgery The Second Affiliated Hospital of Baotou Medical College Baotou China", + "ror_ids": [ + "https://ror.org/04t44qh67" + ] + }, + { + "affiliation": "Community Stoma Nurse Advisor, Salts Healthcare, Cork, Republic of Ireland", + "ror_ids": [] + }, + { + "affiliation": "State Key Laboratory of Chemical Resource Engineering, Beijing Key Laboratory of Electrochemical Process and Technology for Materials, Beijing University of Chemical Technology, Beijing 100029, P. R. China", + "ror_ids": [ + "https://ror.org/00df5yc52" + ] + }, + { + "affiliation": "Department of Biomedical Engineering, The Ohio State University, Columbus, OH 43210", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Department of Clinical Immunology, University of Texas M.D. Anderson Cancer Center, Houston 77030.", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "University of Minnesota, Division of Epidemiology & Community Health, Minneapolis, Minnesota.", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "F-CRIN INI-CRCT, Nancy, France", + "ror_ids": [ + "https://ror.org/05xw0wj25" + ] + }, + { + "affiliation": "Indukaka Ipcowala Center for Interdisciplinary Studies in Science and Technology, Sardar Patel University, Anand, Gujarat, India", + "ror_ids": [ + "https://ror.org/05kfstc28" + ] + }, + { + "affiliation": "Centre for Research on Addiction, Control and Governance (CEACG), Faculty of Social Sciences, University of Helsinki,\nHelsinki, Finland", + "ror_ids": [ + "https://ror.org/040af2s02" + ] + }, + { + "affiliation": "Mineralogy\nDepartment, Institute for Geosciences, Friedrich-Schiller University Jena, Carl-Zeiss-Promenade 10, Jena, Germany", + "ror_ids": [ + "https://ror.org/05qpz1x62" + ] + }, + { + "affiliation": "Department of Dermatology University Hospitals KU Leuven Leuven 3000 Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "College of Electrical Engineering and Automation, Fuzhou University,Fuzhou,China", + "ror_ids": [ + "https://ror.org/011xvna82" + ] + }, + { + "affiliation": "Department of Chemistry, University of Western Ontario, London, Ontario, Canada N6A 5B7", + "ror_ids": [ + "https://ror.org/02grkyz14" + ] + }, + { + "affiliation": "School of Computer Engineering, Jinling Institute of Technology, Nanjing 211169, China", + "ror_ids": [ + "https://ror.org/05em1gq62" + ] + }, + { + "affiliation": "University of Iowa", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "Key Laboratory of Polar Materials and Devices Department of Electronic Science School of Physics and Electronic Science East China Normal University Shanghai 200241 P. R. China", + "ror_ids": [ + "https://ror.org/02n96ep67" + ] + }, + { + "affiliation": "American Institute of Chemists, New York", + "ror_ids": [ + "https://ror.org/018x6py98" + ] + }, + { + "affiliation": "Instituto Capixaba de Pesquisa", + "ror_ids": [ + "https://ror.org/05hs77045" + ] + }, + { + "affiliation": "University of Electro-Communications,", + "ror_ids": [ + "https://ror.org/02x73b849" + ] + }, + { + "affiliation": "1Department of Pathology, Yale School of Medicine, New Haven, CT", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "MR Centre-High Field MR, Department of Radiology, Medical University of Vienna/Vienna General Hospital, Vienna, Austria", + "ror_ids": [ + "https://ror.org/05n3x4p02", + "https://ror.org/05f0zr486" + ] + }, + { + "affiliation": "Department of Biochemistry & Molecular Biology, Mayo Clinic College of Medicine, Rochester, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Texas A&M University", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "Department of Electrical & Electronic Engineering, Faculty of Engineering, Universiti Putra, 43400 Serdang, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/02e91jd64" + ] + }, + { + "affiliation": "Chemistry Department and Center for Materials Research and Analysis, University of Nebraska-Lincoln, Lincoln, Nebraska 68588", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "Department of Neonatology, Hedi Chaker University Hospital, Sfax, Tunisia", + "ror_ids": [ + "https://ror.org/01vqqz948" + ] + }, + { + "affiliation": "Faculty of Engineering, Niigata University", + "ror_ids": [ + "https://ror.org/04ww21r56" + ] + }, + { + "affiliation": "Universidade de Minnesota, EUA", + "ror_ids": [ + "https://ror.org/03grvy078" + ] + }, + { + "affiliation": "Soft Transducers Laboratory (LMTS) École Polytechnique Fédérale de Lausanne (EPFL) Rue de la Maladière 71B Neuchâtel 2000 Switzerland", + "ror_ids": [ + "https://ror.org/02s376052" + ] + }, + { + "affiliation": "Department of Entomology, University of California, Davis, California 95616", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "SUNY–Buffalo", + "ror_ids": [ + "https://ror.org/01y64my43" + ] + }, + { + "affiliation": "London School of Economics", + "ror_ids": [ + "https://ror.org/0090zs177" + ] + }, + { + "affiliation": "A I Dupont Hospital for Children, Wilmington, Delaware. geneds@hotmail.com", + "ror_ids": [ + "https://ror.org/00jyx0v10" + ] + }, + { + "affiliation": "Department of Internal Medicine, Allegheny General Hospital, Houston, Texas, USA;", + "ror_ids": [ + "https://ror.org/02gy6qp39" + ] + }, + { + "affiliation": "Department of Biochemistry, Faculty of Education and Science, Al-Baydha University, Al-Baydha, 00967, Yemen", + "ror_ids": [ + "https://ror.org/0505vtn61" + ] + }, + { + "affiliation": "AOU Policlinico Dulio Casula Cagliari, Cagliari", + "ror_ids": [] + }, + { + "affiliation": "University of Szeged", + "ror_ids": [ + "https://ror.org/01pnej532" + ] + }, + { + "affiliation": "Devang Patel Institute of Advance Technology and Research Faculty of Technology and Engineering (FTE) Charotar University of Science and Technology,Department of Computer Science & Engineering,Changa,Gujarat,India,388421", + "ror_ids": [ + "https://ror.org/0442pkv24" + ] + }, + { + "affiliation": "Department of Surgery, Gachon University Gil Medical Center, Gachon University College of Medicine, Incheon, Korea.", + "ror_ids": [ + "https://ror.org/03ryywt80", + "https://ror.org/005nteb15" + ] + }, + { + "affiliation": "Department of Industrial and Manufacturing EngineeringKettering University 48504 Flint MI USA", + "ror_ids": [ + "https://ror.org/03rcspa57" + ] + }, + { + "affiliation": "Commonwealth Scientific and Industrial Research Organization, Plant Industry, GPO Box 1600, Canberra, ACT 2601, Australia; Department of Plant Sciences, University of Cambridge, Downing Street, Cambridge, United Kingdom CB2 3EA; Michigan State University–Department of Energy Plant Research Laboratory, Michigan State University, East Lansing, MI 48824-1312", + "ror_ids": [ + "https://ror.org/013meh722", + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "Molecular Targets Program, National Cancer Institute—Frederick, Frederick Maryland 21702", + "ror_ids": [ + "https://ror.org/040gcmg81" + ] + }, + { + "affiliation": "Key Laboratory of Enhanced Oil Recovery, Northeast Petroleum University, Ministry of Education, Daqing 163318, China", + "ror_ids": [ + "https://ror.org/03net5943" + ] + }, + { + "affiliation": "INIFTA, DQT, Sucursal, 4, C.C 16, 1900 La Plata, Argentina", + "ror_ids": [ + "https://ror.org/02t6gq889" + ] + }, + { + "affiliation": "University of Johannesburg,The Faculty of Health Sciences,Department of Human Anatomy and Physiology,South Africa", + "ror_ids": [ + "https://ror.org/04z6c2n17" + ] + }, + { + "affiliation": "Analytical Chemistry Department", + "ror_ids": [] + }, + { + "affiliation": "Universidade Estadual Vale do Acaraú (UVA) in Sobral-CE, Brazil.", + "ror_ids": [ + "https://ror.org/038ddjp72" + ] + }, + { + "affiliation": "West Virginia University, Morgantown, WV", + "ror_ids": [ + "https://ror.org/011vxgd24" + ] + }, + { + "affiliation": "Microbiology and Immunology, Elmwood Pediatric Group, University of Rochester, Rochester, New York", + "ror_ids": [ + "https://ror.org/022kthw22" + ] + }, + { + "affiliation": "Department of Chemistry, College of Science, China University of Petroleum (East China), Qingdao, 266580, P. R. China", + "ror_ids": [ + "https://ror.org/05gbn2817" + ] + }, + { + "affiliation": "Department of Oncology, Shandong Provincial Hospital Affiliated to Shandong University, Jinan, Shandong Province, China", + "ror_ids": [ + "https://ror.org/0207yh398", + "https://ror.org/02ar2nf05" + ] + }, + { + "affiliation": "School of Medicine, Faculty of Medical and Health Sciences, University of Auckland , Auckland , New Zealand", + "ror_ids": [ + "https://ror.org/03b94tp07" + ] + }, + { + "affiliation": "Agricultural and Resource Economics Department, University of Tennessee at Knoxville, Knoxville, Tennessee, USA", + "ror_ids": [ + "https://ror.org/020f3ap87" + ] + }, + { + "affiliation": "Institute of Molecular Virology (IMV) Center of Molecular Biology of Inflammation (ZMBE) Westfaelische-Wilhelms-University Münster Von-Esmarch-Str. 56 D-48149 Münster Germany", + "ror_ids": [ + "https://ror.org/00pd74e08" + ] + }, + { + "affiliation": "Dept of Medicine, University of Washington, The Severe Chronic Neutropenia International Registry, Seattle, WA, USA,", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "The Pennsylvania State University, Nuclear Engineering Department 231 Sackett Building, University Park, Pennsylvania 16802", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Miami University, Oxford, OH, USA", + "ror_ids": [ + "https://ror.org/05nbqxr67" + ] + }, + { + "affiliation": "Dept. of Physics, California Polytechnic State Univ., San Luis Obispo, CA 93407", + "ror_ids": [ + "https://ror.org/001gpfp45" + ] + }, + { + "affiliation": "Department of Otorhinolaryngology – Head and Neck Surgery, University of Pennsylvania Perelman School of Medicine, Philadelphia, Pennsylvania, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Department of Critical Care Medicine The First Affiliated Hospital of Anhui Medical University Hefei PR China", + "ror_ids": [ + "https://ror.org/03t1yn780" + ] + }, + { + "affiliation": "From the Bulawayo Group of Hospitals, Bulawayo, Rhodesia", + "ror_ids": [] + }, + { + "affiliation": "Department of Nuclear Technology, Far Eastern Federal University, Vladivostok, Russia", + "ror_ids": [ + "https://ror.org/0412y9z21" + ] + }, + { + "affiliation": "University of São Paulo, Brazil; National Institute on Advanced Eco-efficient Cement-based Technologies, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "UCD Dublin, Dublin, UNK, Ireland", + "ror_ids": [ + "https://ror.org/05m7pjf47" + ] + }, + { + "affiliation": "Jet Propulsion Laboratory, California Institute of Technology, Pasadena, Calif.", + "ror_ids": [ + "https://ror.org/027k65916", + "https://ror.org/05dxps055" + ] + }, + { + "affiliation": "Universidade Regional de Blumenau", + "ror_ids": [ + "https://ror.org/01nsn0t21" + ] + }, + { + "affiliation": "Green Catalysis Center College of Chemistry Zhengzhou University Zhengzhou 450001 China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "(Göttingen) Germany", + "ror_ids": [] + }, + { + "affiliation": "1Brigham and Womens Hospital, Cambridge, MA.", + "ror_ids": [ + "https://ror.org/04b6nzv94" + ] + }, + { + "affiliation": "Hyogo Pref. Pl. Prot. Office", + "ror_ids": [ + "https://ror.org/009cg4615" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry, University of California, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Guru Gobind Singh Indraprashtha University", + "ror_ids": [ + "https://ror.org/034q1za58" + ] + }, + { + "affiliation": "University of Utah in Salt Lake City,", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "Department of Electronic Engineering, PLA Rocket Force University of Engineering, Xi'an, China", + "ror_ids": [ + "https://ror.org/00gg5zj35" + ] + }, + { + "affiliation": "Soochow University", + "ror_ids": [] + }, + { + "affiliation": "Universiti Teknologi Malaysia", + "ror_ids": [ + "https://ror.org/026w31v75" + ] + }, + { + "affiliation": "School of Mathematics and Statistics; University of New South Wales; Sydney New South Wales Australia", + "ror_ids": [ + "https://ror.org/03r8z3t63" + ] + }, + { + "affiliation": "Research Platform for Collaboration for Health Faculty of Health Science Kristianstad University Kristianstad Sweden", + "ror_ids": [ + "https://ror.org/00tkrft03" + ] + }, + { + "affiliation": "University of Louisville, Louisville, KY, USA", + "ror_ids": [ + "https://ror.org/01ckdn478" + ] + }, + { + "affiliation": "Program for Ecology, Evolution and Conservation Biology University of Illinois‐Urbana Urbana IL USA", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Northwestern Polytechnical University, Xi’an, China", + "ror_ids": [ + "https://ror.org/01y0j0j86" + ] + }, + { + "affiliation": "Zhejiang Provincial Key Laboratory of Advanced Chemical Engineering Manufacture Technology, College of Chemical and Biological Engineering, Zhejiang University, Hangzhou 310027, P. R. China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "a Waters Corporation , Milford, Massachusetts, USA", + "ror_ids": [ + "https://ror.org/01h8xv021" + ] + }, + { + "affiliation": "Centro de Salud Ambiental, Instituto Nacional de Salud Pública, Cuernavaca, México. ecifuent@correo.insp.mx", + "ror_ids": [ + "https://ror.org/032y0n460" + ] + }, + { + "affiliation": "Department of Telecommunications at the University of Georgia", + "ror_ids": [ + "https://ror.org/00te3t702" + ] + }, + { + "affiliation": "Center for Advanced Imaging Innovation and Research, and Bernard and Irene Schwartz Center for Biomedical Imaging, Department of Radiology; New York University School of Medicine; New York New York USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "National Key Laboratory of Wheat Breeding, Agricultural College, Shandong Agricultural University, Tai’an 271018, China", + "ror_ids": [ + "https://ror.org/02ke8fw32" + ] + }, + { + "affiliation": "University of Manitoba", + "ror_ids": [ + "https://ror.org/02gfys938" + ] + }, + { + "affiliation": "Beijing National Day School, Beijing, China, --- Select a Country ---", + "ror_ids": [] + }, + { + "affiliation": "SAĞLIK BİLİMLERİ ÜNİVERSİTESİ, ANKARA DR. SAMİ ULUS KADIN DOĞUM ÇOCUK SAĞLIĞI VE HASTALIKLARI SAĞLIK UYGULAMA VE ARAŞTIRMA MERKEZİ", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "West Virginia University, P.O. Box 6106, Morgantown, WV 26506-6106.", + "ror_ids": [ + "https://ror.org/011vxgd24" + ] + }, + { + "affiliation": "Department of Physiology, Johns Hopkins University, School of Medicine, Baltimore, MD 21205, USA.", + "ror_ids": [ + "https://ror.org/00za53h95" + ] + }, + { + "affiliation": "College of Nursing, Advancing Chronic Care through Research and Innovation Center (ACORN Center), University of South Carolina, Columbia, SC, USA", + "ror_ids": [ + "https://ror.org/02b6qw903" + ] + }, + { + "affiliation": "Head‐Electron Microscopy Group Defence Metallurgical Research Lab (DMRL) Kanchanbagh Telangana 500058 India", + "ror_ids": [ + "https://ror.org/00jp1zb22" + ] + }, + { + "affiliation": "Osaka University", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "Newcastle University Newcastle upon Tyne United Kingdom", + "ror_ids": [ + "https://ror.org/01kj2bm70" + ] + }, + { + "affiliation": "Technical University of Cluj-Napoca,Department of Automation,Cluj-Napoca,Romania", + "ror_ids": [ + "https://ror.org/03r8nwp71" + ] + }, + { + "affiliation": "Department of Civil Engineering, Indian Institute of Science, Bangalore, 560 012, India", + "ror_ids": [ + "https://ror.org/04dese585" + ] + }, + { + "affiliation": "Massachusetts Department of Public Health, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/050c9qp51" + ] + }, + { + "affiliation": "University Hospital Galway , Galway , Ireland", + "ror_ids": [ + "https://ror.org/04scgfz75" + ] + }, + { + "affiliation": "Institute of Vascular Surgery, “A. Gemelli” Hospital, Catholic University, Rome, Italy", + "ror_ids": [] + }, + { + "affiliation": "Schneider Electric's, Renewable Energies Business, Burnaby, BC, Canada", + "ror_ids": [ + "https://ror.org/02hj7hh93" + ] + }, + { + "affiliation": "City Librarian, Birmingham", + "ror_ids": [] + }, + { + "affiliation": "Baltimore, MD", + "ror_ids": [] + }, + { + "affiliation": "Marburg", + "ror_ids": [] + }, + { + "affiliation": "The Cardiothoracic Institute, Midhurst, West Sussex, U.K.", + "ror_ids": [] + }, + { + "affiliation": "UK Dementia Research Institute at UCL London United Kingdom", + "ror_ids": [ + "https://ror.org/02wedp412" + ] + }, + { + "affiliation": "Department of Orthopedic Surgery, Uijeongbu St. Mary's Hospital, The Catholic University of Korea College of Medicine, Uijeongbu, Korea.", + "ror_ids": [ + "https://ror.org/01fpnj063", + "https://ror.org/02ezaf703" + ] + }, + { + "affiliation": "From the Department of Cell and Molecular Physiology and the McAllister Heart Institute, University of North Carolina at Chapel Hill.", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "All authors: The University of Texas MD Anderson Cancer Center, Houston, TX.", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Department of Pediatrics, University of Arkansas for Medical Sciences, Little Rock", + "ror_ids": [ + "https://ror.org/00xcryt71" + ] + }, + { + "affiliation": "GAZİ ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/054xkpr46" + ] + }, + { + "affiliation": "1Johann Wolfgang Goethe Universität, Frankfurt am Main", + "ror_ids": [ + "https://ror.org/04cvxnb49" + ] + }, + { + "affiliation": "Tribhuvan University", + "ror_ids": [ + "https://ror.org/02rg1r889" + ] + }, + { + "affiliation": "“Carol Davila\" Univesity of Medicine and Pharmacy, Internal Medicine and Nephrology, \"Dr C Davila” Hospital of Nephrology, Bucharest, Romania", + "ror_ids": [ + "https://ror.org/04fm87419" + ] + }, + { + "affiliation": "State Key Laboratory of Lake Science and Environment, Nanjing Institute of Geography and Limnology, Chinese Academy of Sciences, Nanjing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/03k6r8t20" + ] + }, + { + "affiliation": "Department of Advertising and Public Relations, College of Communication Arts and Sciences, Michigan State University, East Lansing, MI, USA", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "Program Studi Manajemen Sumberdaya Perairan, Departemen Sumberdaya Akuatik\nFakultas Perikanan dan Ilmu Kelautan, Universitas Diponegoro", + "ror_ids": [ + "https://ror.org/056bjta22" + ] + }, + { + "affiliation": "School of Biosciences, University of Exeter, Exeter, United Kingdom", + "ror_ids": [ + "https://ror.org/03yghzc09" + ] + }, + { + "affiliation": "Roy & Diana Vagelos Laboratories, Department of Chemistry, University of Pennsylvania, Philadelphia, Pennsylvania 19104-6323", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Institute of Occupational Medicine, Social Medicine, and Environmental Medicine, Goethe University Frankfurt , Theodor-Stern-Kai 7, D-60590 Frankfurt am Main , Germany", + "ror_ids": [ + "https://ror.org/04cvxnb49" + ] + }, + { + "affiliation": "University Hospitals of Derby and Burton NHS Trust , Derby , United Kingdom", + "ror_ids": [ + "https://ror.org/04w8sxm43" + ] + }, + { + "affiliation": "Center of Innovation to Accelerate Discovery and Practice Transformation (ADAPT), Durham Veterans Affairs Medical Center, Durham, North Carolina, USA.", + "ror_ids": [ + "https://ror.org/034adnw64" + ] + }, + { + "affiliation": "Advanced Telecommunications Research Institute International Adaptive Communications Research Laboratories", + "ror_ids": [ + "https://ror.org/01pe1d703" + ] + }, + { + "affiliation": "Department of Materials Science, Uppsala University, S-751 21 Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/048a87296" + ] + }, + { + "affiliation": "Institute for Chemical Plant Physiology, University of Tübingen, 7400 Tübingen, F.R.G.", + "ror_ids": [ + "https://ror.org/03a1kwz48" + ] + }, + { + "affiliation": "Birds Australia415 Riversdale RoadHawthorn EastVictoria 3123Australia", + "ror_ids": [] + }, + { + "affiliation": "Xi’an AMS Center, State Key Laboratory of Loess and Quaternary Geology, Shaanxi Key Laboratory of AMS Technology and Application, Institute of Earth Environment, CAS, Xi’an 710061, China", + "ror_ids": [ + "https://ror.org/04nps9965", + "https://ror.org/03t0yb134" + ] + }, + { + "affiliation": "CENTER FOR INTELLIGENT MATERIAL SYSTEMS AND STRUCTURES, VIRGINIA POLYTECHNIC INSTITUTE AND STATE UNIVERSITY, BLACKSBURG, VA", + "ror_ids": [ + "https://ror.org/02smfhw86" + ] + }, + { + "affiliation": "Department of Chemistry, Wayne State University, Detroit, Michigan 48202, and Department of Chemistry, University of Windsor, Windsor, Ontario N9B 1P4, Canada", + "ror_ids": [ + "https://ror.org/01gw3d370", + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "Oberlin", + "ror_ids": [] + }, + { + "affiliation": "1Earth and Environmental Science Department
 New Mexico Institute of Mining and Technology
 Socorro, New Mexico 87801
 sbilek@nmt.edu", + "ror_ids": [ + "https://ror.org/005p9kw61" + ] + }, + { + "affiliation": "Academician G. Chapidze Emergency Cardiology Centre , Tbilisi , Georgia", + "ror_ids": [] + }, + { + "affiliation": "National Medical Research Center for Therapy and Preventive Medicine", + "ror_ids": [] + }, + { + "affiliation": "Department of Epidemiology, Geisel School of Medicine, Dartmouth College, NH, Lebanon, USA", + "ror_ids": [ + "https://ror.org/049s0rh22" + ] + }, + { + "affiliation": "Department of Medical Biochemistry and Cell Biology, Göteborg University, Box 440, SE-405 30 Göteborg, Sweden", + "ror_ids": [ + "https://ror.org/01tm6cn81" + ] + }, + { + "affiliation": "Texas Univ., Arlington", + "ror_ids": [ + "https://ror.org/019kgqr73" + ] + }, + { + "affiliation": "Hematology and Oncology, Charite University Hospital, Berlin, Germany,", + "ror_ids": [ + "https://ror.org/001w7jn25" + ] + }, + { + "affiliation": "Dalhousie University 1355 Oxford St., P.O. Box 15000 Halifax Nova Scotia Canada B3H 4R2", + "ror_ids": [ + "https://ror.org/01e6qks80" + ] + }, + { + "affiliation": "Principal Lecturer, Faculty of Health and Human Sciences, University of Hertfordshire", + "ror_ids": [ + "https://ror.org/0267vjk41" + ] + }, + { + "affiliation": "Xidian University", + "ror_ids": [ + "https://ror.org/05s92vm98" + ] + }, + { + "affiliation": "b Department of Physics Division of Engineering , Palo Alto , California , USA", + "ror_ids": [] + }, + { + "affiliation": "East China University of Science and Technology, 200237 Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01vyrm377" + ] + }, + { + "affiliation": "Manuro Tech Research Private Limited, Bangalore 560097, Karnataka, India", + "ror_ids": [] + }, + { + "affiliation": "School of Health Sciences, The University of Notre Dame Australia, Fremantle Campus, Fremantle, Australia", + "ror_ids": [ + "https://ror.org/02stey378" + ] + }, + { + "affiliation": "2Monash University, Melbourne", + "ror_ids": [ + "https://ror.org/02bfwt286" + ] + }, + { + "affiliation": "Education Studies (PhD), Biola University.", + "ror_ids": [ + "https://ror.org/02han2n82" + ] + }, + { + "affiliation": "Bundesverband der Arzneimittel-Hersteller e.V. (BAH), Bonn, Deutschland", + "ror_ids": [] + }, + { + "affiliation": "Department of Gynecology, Harbin Medical University Cancer Hospital, Harbin, Heilongjiang 150081, P.R. China", + "ror_ids": [ + "https://ror.org/01f77gp95", + "https://ror.org/05jscf583" + ] + }, + { + "affiliation": "Faculty of Science and Technology, Membrane Surface Science, Membrane Science and Technology, MESA+ Institute of Nanotechnology, University of Twente, 7500 AE Enschede, The Netherlands", + "ror_ids": [ + "https://ror.org/006hf6230" + ] + }, + { + "affiliation": "LabMAg–University of Lisbon Lisbon Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86" + ] + }, + { + "affiliation": "Remote Sensing Center The University of Alabama Tuscaloosa Alabama", + "ror_ids": [ + "https://ror.org/03xrrjk67" + ] + }, + { + "affiliation": "McLean Hospital and Harvard Medical School, Belmont, Massachusetts.", + "ror_ids": [ + "https://ror.org/01kta7d96", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "BURSA TEKNİK ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/03rdpn141" + ] + }, + { + "affiliation": "University of Utah", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "Università Ca' Foscari di Venezia", + "ror_ids": [ + "https://ror.org/04yzxz566" + ] + }, + { + "affiliation": "Fujian Provincial Hospital", + "ror_ids": [ + "https://ror.org/045wzwx52" + ] + }, + { + "affiliation": "Department of Rehabilitation Medicine, Daegu Catholic University School of Medicine, Daegu, Republic of Korea.", + "ror_ids": [ + "https://ror.org/04fxknd68" + ] + }, + { + "affiliation": "School of Economics, Peking University, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Graduate School of Engineering, Kyoto University, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Institute of Catalysis for Energy and Environment, College of Chemistry & Chemical Engineering, Shenyang Normal University, Shenyang, Liaoning 110034, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05cdfgm80" + ] + }, + { + "affiliation": "St. Martin's Lane, W. C.", + "ror_ids": [] + }, + { + "affiliation": "Division of Maternal Fetal Medicine, Mount Sinai South Nassau, Oceanside, New York", + "ror_ids": [] + }, + { + "affiliation": "Hofstra University", + "ror_ids": [ + "https://ror.org/03pm18j10" + ] + }, + { + "affiliation": "Fermi National Accelerator Laboratory, Batavia, IL 60510, USA", + "ror_ids": [ + "https://ror.org/020hgte69" + ] + }, + { + "affiliation": "Division of Pulmonary, Critical Care, and Sleep Medicine, New York University School of Medicine, New York, New York", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "a ARC-Grain Crops Institute , Private Bag X1251, Potchefstroom , 2520 , Republic of South Africa", + "ror_ids": [] + }, + { + "affiliation": "Middle East Technical University, Cankaya, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/014weej12" + ] + }, + { + "affiliation": "University of Tabuk,Department of Information Technology,Tabuk", + "ror_ids": [ + "https://ror.org/04yej8x59" + ] + }, + { + "affiliation": "Biosystematics Research Institute, Agriculture Canada Ottawa K1A 0C6 Canada", + "ror_ids": [ + "https://ror.org/051dzs374" + ] + }, + { + "affiliation": "Harbin Institute of Technology, China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Hirosaki University", + "ror_ids": [ + "https://ror.org/02syg0q74" + ] + }, + { + "affiliation": "Marigold Dairies, Inc., Rochester, Minn.", + "ror_ids": [] + }, + { + "affiliation": "Oxford Transplant Centre", + "ror_ids": [] + }, + { + "affiliation": "Liquid Sunlight Alliance, National Renewable Energy Laboratory, Golden, Colorado 80401, USA", + "ror_ids": [ + "https://ror.org/036266993" + ] + }, + { + "affiliation": "Faculty of Food Engineering, Stefan cel Mare University of Suceava, Suceava, Romania", + "ror_ids": [ + "https://ror.org/035pkj773" + ] + }, + { + "affiliation": "Kaye Implementation & Evaluation LLC, Tacoma, WA, USA", + "ror_ids": [] + }, + { + "affiliation": "Los Alamos National Lab. (LANL), Los Alamos, NM (United States)", + "ror_ids": [ + "https://ror.org/01e41cf67" + ] + }, + { + "affiliation": "UNESP", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Department of Economics and Center for Public Policy and Administration, Thompson Hall, University of Massachusetts, Amherst, MA 01003", + "ror_ids": [ + "https://ror.org/0072zz521" + ] + }, + { + "affiliation": "Area Adviser in Occupational Therapy, Grampian Health Board, Mental Health Services Unit, Royal Cornhill Hospital, Aberdeen", + "ror_ids": [ + "https://ror.org/02gaqn537" + ] + }, + { + "affiliation": "FRE CNRS 2012 Roberval, Département d’Ingénierie Mécanique, Sorbonne Universités, Université de Technologie de Compiègne, France", + "ror_ids": [ + "https://ror.org/04y5kwa70", + "https://ror.org/02en5vm52" + ] + }, + { + "affiliation": "Rolls-Royce Corporation", + "ror_ids": [ + "https://ror.org/03gwgww50" + ] + }, + { + "affiliation": "Department of Material and Life Science, Graduate School of Engineering, Osaka University, 2-1 Yamada-oka, Suita 565-0871, Osaka, Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "1Malaysian Rubber Producers' Research Association, Brickendonbury, SG13 8 NL Hertford, England", + "ror_ids": [] + }, + { + "affiliation": "University of Illinois College of Nursing, Quad-Cities Program, 639-38th Street, Rock Island, IL 61201 USA.", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "NIHON University", + "ror_ids": [ + "https://ror.org/05jk51a88" + ] + }, + { + "affiliation": "School of Economics, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "From the Division of Cardiothoracic Surgery (M.E.M., G.K.K, N.T.K.) and Department of Neurology (Y.W., R.H., J.A.D., M.F.J., C.Y.H.), Washington University School of Medicine, St Louis, Mo.", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Queen Mary Hospital, Department of Medicine , Hong Kong , Hong Kong", + "ror_ids": [ + "https://ror.org/02xkx3e48" + ] + }, + { + "affiliation": "a Thrombosis Research Institute , Emmanuel Kaye Building, Manresa Road, Chelsea, London, SW3 6LR, U.K.", + "ror_ids": [ + "https://ror.org/050r8mq79" + ] + }, + { + "affiliation": "Faculty of Engineering, Tohoku Univ.", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "San Francisco", + "ror_ids": [] + }, + { + "affiliation": "IFP 1 , 1-4 Av. de Bois Préau, 92852 Rueil Malmaison Cedex, France", + "ror_ids": [] + }, + { + "affiliation": "University of Padua", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "University of Massachusetts Amherst, Amherst, MA, USA", + "ror_ids": [ + "https://ror.org/0072zz521" + ] + }, + { + "affiliation": "Department of Anesthesiology and Pain Medicine, School of Medicine, The Catholic University of Korea, Seoul, Korea.", + "ror_ids": [ + "https://ror.org/01fpnj063" + ] + }, + { + "affiliation": "Laboratory Animal Research Center, Qatar University, Doha, Qatar", + "ror_ids": [ + "https://ror.org/00yhnba62" + ] + }, + { + "affiliation": "a Institute of Strength Physics and Materials Science, SB RAS, 2/1 Akademicheskii prospekt, 634021, Tomsk, Russia;, Email: sharkeev@ispms.tsc.ru", + "ror_ids": [ + "https://ror.org/00f4mz521" + ] + }, + { + "affiliation": "Cell Biology and Anatomy Louisiana State University Health Sciences Center New Orleans LA", + "ror_ids": [ + "https://ror.org/01qv8fp92" + ] + }, + { + "affiliation": "Institute Of Human Virology, Nigeria, Lugbe Area, Nigeria", + "ror_ids": [ + "https://ror.org/02e66xy22" + ] + }, + { + "affiliation": "2Wound Healing Research and Glaucoma Units, Institute of Ophthalmology and Moorfields Eye Hospital, London EC1V 9EL, England", + "ror_ids": [ + "https://ror.org/03tb37539" + ] + }, + { + "affiliation": "University of Incheon, Korea", + "ror_ids": [ + "https://ror.org/02xf7p935" + ] + }, + { + "affiliation": "Nizhny Novgorod Academy of the Ministry of Internal Affairs of Russia", + "ror_ids": [ + "https://ror.org/021a3gb32" + ] + }, + { + "affiliation": "Key Lab of Horticultural Plant Biology, Ministry of Education and College of Plant Science and Technology, Huazhong Agricultural University, Wuhan 430070, China", + "ror_ids": [ + "https://ror.org/023b72294" + ] + }, + { + "affiliation": "Wuhan University", + "ror_ids": [ + "https://ror.org/033vjfk17" + ] + }, + { + "affiliation": "Contribution from the Department of Plant Sciences, The Weizmann Institute of Science, 76100 Rehovot, Israel, and the Department of Chemistry, University of California, San Diego, California 92093", + "ror_ids": [ + "https://ror.org/0168r3w48", + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "Aus dem Institut für theoretische Physik der Universität Mainz und den Optischen Werken E. Leitz , Wetzlar", + "ror_ids": [] + }, + { + "affiliation": "University Hospital Waterford Waterford Integrated Care for Older People, , Waterford, Ireland", + "ror_ids": [ + "https://ror.org/007pvy114" + ] + }, + { + "affiliation": "Derby City General Hospital, Derby, UK", + "ror_ids": [ + "https://ror.org/005r9p256" + ] + }, + { + "affiliation": "Laboratory Affiliated with the Institute Pasteur Italy – Cenci Bolognetti Foundation, Department of Drug Chemistry and Technologies Sapienza University of Rome Rome Italy", + "ror_ids": [ + "https://ror.org/02be6w209", + "https://ror.org/051v7w268" + ] + }, + { + "affiliation": "School of Women's and Infants' Health, University of Western Australia, Crawley, Western Australia, Australia.", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "Department of Respiratory Medicine, Faculty of Medicine, University of Thessaly, Larissa, Greece", + "ror_ids": [ + "https://ror.org/04v4g9h31" + ] + }, + { + "affiliation": "55 East 87th Street New York, NY 10128 fax:212–427–3972 E-mail: 75562.510@compuserve.com", + "ror_ids": [] + }, + { + "affiliation": "Food and Drug Administration From the , Washington, D. C.", + "ror_ids": [ + "https://ror.org/034xvzb47" + ] + }, + { + "affiliation": "Department of Psychology Sacred Heart University P.O. Box 6460 Bridgeport, CN 06606", + "ror_ids": [ + "https://ror.org/0085j8z36" + ] + }, + { + "affiliation": "Department of Radiotherapy and Oncology Norfolk and Norwich Hospital", + "ror_ids": [ + "https://ror.org/021zm6p18" + ] + }, + { + "affiliation": "a Leningrad University", + "ror_ids": [] + }, + { + "affiliation": "Instituto Federal do Paraná", + "ror_ids": [ + "https://ror.org/02znfhp50" + ] + }, + { + "affiliation": "Lincoln University\n Department of Tourism\n Sport and Society\n Faculty of Environment\n Society and Design\n P.O. Box 85084\n Lincoln 7647\n New Zealand", + "ror_ids": [ + "https://ror.org/04ps1r162" + ] + }, + { + "affiliation": "Department of Sociology, Duke University, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "East China University of Science and Technology", + "ror_ids": [ + "https://ror.org/01vyrm377" + ] + }, + { + "affiliation": "State University of New York at Old Westbury", + "ror_ids": [ + "https://ror.org/02rrhsz92" + ] + }, + { + "affiliation": "School of Comouting and Communications, The Open University, Milton Keynes MK7 6AA, UK", + "ror_ids": [ + "https://ror.org/05mzfcs16" + ] + }, + { + "affiliation": "School of Electronics Engineering Vellore Institute of Technology Vellore India", + "ror_ids": [ + "https://ror.org/00qzypv28" + ] + }, + { + "affiliation": "ФГОУ ВПО «Омский государственный аграрный университет»", + "ror_ids": [] + }, + { + "affiliation": "The Pennsylvania State University", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "HealthPartners Simulation Center", + "ror_ids": [] + }, + { + "affiliation": "Universität Koblenz-Landau, Germany", + "ror_ids": [ + "https://ror.org/01j9f6752" + ] + }, + { + "affiliation": "Department of Physical Medicine and Rehabilitation; College of Medicine; University of Saskatchewan; Saskatoon Saskatchewan Canada", + "ror_ids": [ + "https://ror.org/010x8gc63" + ] + }, + { + "affiliation": "14476 Potsdam", + "ror_ids": [] + }, + { + "affiliation": "Indira Gandhi Centre for Atomic Research Radiochemistry Program Kalpakkam, Tamil Nadu-603 102, India", + "ror_ids": [ + "https://ror.org/05tkzma19" + ] + }, + { + "affiliation": "Dilip Subramanian is affiliated with the Ecole des Hautes Etudes en Sciences Sociales, Paris.", + "ror_ids": [ + "https://ror.org/02d9dg697" + ] + }, + { + "affiliation": "Monash University, Clayton, Victoria, Australia", + "ror_ids": [ + "https://ror.org/02bfwt286" + ] + }, + { + "affiliation": "Federal State Budgetary Institution of Science \"Kotelnikov Institute of Radioengineering and Electronics of Russian Academy of Sciences\"", + "ror_ids": [ + "https://ror.org/05gbyky62", + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Department of Cardiology, Faculty of Medicine, Recep Tayyip Erdoğan University, Rize, Turkey", + "ror_ids": [ + "https://ror.org/0468j1635" + ] + }, + { + "affiliation": "Centre of Research, Education, Innovation and Intervention in Sport, Faculty of Sport, University of Porto, Portugal.", + "ror_ids": [ + "https://ror.org/043pwc612" + ] + }, + { + "affiliation": "Heller Institute of Medical Research, Sheba Medical Center, Tel-Hashomer, Ramat Gan, Israel", + "ror_ids": [ + "https://ror.org/020rzx487" + ] + }, + { + "affiliation": "Department of Plastic and Reconstructive Surgery, Chang Gung Memorial Hospital, Guei Shan, Taiwan, and Cleft and Craniofacial Centre, Department of Plastic, Reconstructive and Aesthetic Surgery, Kandang Kerbau Women's and Children's Hospital, Singapore.", + "ror_ids": [ + "https://ror.org/02verss31", + "https://ror.org/0228w5t68" + ] + }, + { + "affiliation": "King Abdullah University of Science and Technology , Thuwal, Saudi Arabia", + "ror_ids": [ + "https://ror.org/01q3tbs38" + ] + }, + { + "affiliation": "Department of Medicine, King George’s Medical University, Lucknow, Uttar Pradesh, India", + "ror_ids": [ + "https://ror.org/00gvw6327" + ] + }, + { + "affiliation": "Yarmouk University, Irbid, Jordan", + "ror_ids": [ + "https://ror.org/004mbaj56" + ] + }, + { + "affiliation": "CREST , Japan Science and Technology Agency, 4-3-16, Jonan, Yonezawa-shi, Yamagata-Pref.,992-8510, Japan", + "ror_ids": [ + "https://ror.org/00097mb19" + ] + }, + { + "affiliation": "Inorganic Functional Materials Research Institute, AIST", + "ror_ids": [] + }, + { + "affiliation": "Department of Southern Area Crop Science, National Institute of Crop Science, RDA, Miryang 50424, Korea", + "ror_ids": [] + }, + { + "affiliation": "School of Mechanical Engineering Sungkyunkwan University Suwon 16419 South Korea", + "ror_ids": [ + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Department of Audiology and Speech Pathology University of Arkansas for Medical Sciences Arkansas Children's Hospital Little Rock Arkansas USA", + "ror_ids": [ + "https://ror.org/01t33qq42", + "https://ror.org/00xcryt71" + ] + }, + { + "affiliation": "Univ of Massachusetts Lowell, Lowell, MA", + "ror_ids": [ + "https://ror.org/03hamhx47" + ] + }, + { + "affiliation": "National University of Life and Environmental Sciences of Ukraine, Ukraine", + "ror_ids": [ + "https://ror.org/0441cbj57" + ] + }, + { + "affiliation": "Department of Chemistry, Northwestern University, 2145 Sheridan Road, Evanston, Illinois 60208, United States", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Best-selling author, psychologist and childcare expert", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Science, University of Kyoto", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Department of Psychology Center for Neuroscience Brigham Young University Provo UT USA", + "ror_ids": [ + "https://ror.org/047rhhm47" + ] + }, + { + "affiliation": "Universidade Federal do Paraná, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "Akita University", + "ror_ids": [ + "https://ror.org/03hv1ad10" + ] + }, + { + "affiliation": "Department of Cardiology, Selçuk University, Konya, Turkey", + "ror_ids": [ + "https://ror.org/045hgzm75" + ] + }, + { + "affiliation": "Mech. Eng., Shoan Inst. of Technol., 1-1-25, Tsujido-nishikaigan, Fujisawa, Kanagawa 2518511, Japan, ohtani@mech.shonan-it.ac.jp", + "ror_ids": [ + "https://ror.org/01bawqf59" + ] + }, + { + "affiliation": "Department of Hematology and Hematopoietic Cell Transplantation City of Hope National Medical Center Duarte California USA", + "ror_ids": [ + "https://ror.org/00w6g5w60" + ] + }, + { + "affiliation": "Omsk State Medical University", + "ror_ids": [ + "https://ror.org/04qgykh45" + ] + }, + { + "affiliation": "Department of Radiology, St. Marianna University School of Medicine", + "ror_ids": [ + "https://ror.org/043axf581" + ] + }, + { + "affiliation": "Osaka School of International Public Policy, Osaka University, Toyonaka, Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "Department of Applied Physics, Science University of Tokyo", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Advanced Institute for Medical Sciences Dalian Medical University Dalian China", + "ror_ids": [ + "https://ror.org/04c8eg608" + ] + }, + { + "affiliation": "Department of Biology, Molecular Biology Section, Faculty of Science, Hacettepe University, Ankara, Turkey.", + "ror_ids": [ + "https://ror.org/04kwvgz42" + ] + }, + { + "affiliation": "Beihang University", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Pasteur St. Petersburg Research Institute of Epidemiology and Microbiology", + "ror_ids": [] + }, + { + "affiliation": "1\n aniramonamor@gmail.com", + "ror_ids": [] + }, + { + "affiliation": "Richard Glover (musician, composer, researcher), Department of Music, University of Huddersfield, HD1 3DH, U.K..", + "ror_ids": [ + "https://ror.org/05t1h8f27" + ] + }, + { + "affiliation": "国際医療福祉大学三田病院頭頸部腫瘍センター", + "ror_ids": [] + }, + { + "affiliation": "Pediatric Department, Faculty of Medicine Tanta University Tanta AlGharbia Egypt", + "ror_ids": [ + "https://ror.org/016jp5b92" + ] + }, + { + "affiliation": "Shared Systems Corporation Dallas, Texas", + "ror_ids": [] + }, + { + "affiliation": "University of California, Davis, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Leiden University Centre for Linguistics (LUCL), Leiden University, Reuvensplaats 3, 2311 BE Leiden, The Netherlands", + "ror_ids": [ + "https://ror.org/027bh9e22" + ] + }, + { + "affiliation": "The Pernicious Anaemia Society Bridgend UK", + "ror_ids": [] + }, + { + "affiliation": "National Cancer Institute, Bethesda, MD.", + "ror_ids": [ + "https://ror.org/040gcmg81" + ] + }, + { + "affiliation": "Dept. of Electr. Eng., Tsinghua Univ., Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "SVERI’s College of Engineering, Pandharpur, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurology UCSF/SFVAMC San Francisco CA United States", + "ror_ids": [ + "https://ror.org/049peqw80" + ] + }, + { + "affiliation": "University of California, Santa Cruz, CA, USA", + "ror_ids": [ + "https://ror.org/03s65by71" + ] + }, + { + "affiliation": "Department of Microbiology, University of Pennsylvania School of Medicine, Philadelphia, Pennsylvania 19104", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Hematology Research Group, IIS La Fe, Valencia", + "ror_ids": [ + "https://ror.org/05n7v5997" + ] + }, + { + "affiliation": "Department of Materials Science, Graduate School of Engineering, Tohoku University", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "Aberdeen Centre for Women's Health Research, School of Medicine University of Aberdeen Aberdeen UK", + "ror_ids": [ + "https://ror.org/016476m91" + ] + }, + { + "affiliation": "Department of Radiology, University of Missouri-Columbia, Columbia, MO.", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "The City College of New York (United States)", + "ror_ids": [ + "https://ror.org/00wmhkr98" + ] + }, + { + "affiliation": "University of California, Santa Barbara", + "ror_ids": [ + "https://ror.org/02t274463" + ] + }, + { + "affiliation": "Pharmacology & Pharmacy University of Hong Kong Hong Kong Hong Kong", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "Texas A&M University, United States", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "Department of Geology, Syracuse University", + "ror_ids": [ + "https://ror.org/025r5qe02" + ] + }, + { + "affiliation": "1 Is the K-6 curriculum coordinator at Milton Academy, 170 Centre Street, Milton, MA 02186.", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemistry, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Shell Development Company, Emeryville, Calif.", + "ror_ids": [] + }, + { + "affiliation": "City of Hope, Duarte, CA", + "ror_ids": [ + "https://ror.org/00w6g5w60" + ] + }, + { + "affiliation": "Station de Recherches Avicoles\n INRA Centre de Tours\n 37380 Nouzilly\n France", + "ror_ids": [] + }, + { + "affiliation": "IBM, 20054 Segrate, Italy", + "ror_ids": [ + "https://ror.org/02nc81e13" + ] + }, + { + "affiliation": "Institute for Interdisciplinary Information Sciences, Tsinghua University, Beijing 100084, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Eni SpA", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemical Engineering, ML 171, University of Cincinnati, Cincinnati, Ohio 45221, and Green Chemistry and Engineering Program, U.S. EPA National Risk Management Research Laboratory, 26 West Martin Luther King Drive, Cincinnati, Ohio 45268", + "ror_ids": [ + "https://ror.org/01e3m7079" + ] + }, + { + "affiliation": "Department of Urology; Vita Salute San Raffaele University; Milan Italy", + "ror_ids": [ + "https://ror.org/01gmqr298" + ] + }, + { + "affiliation": "Department of Sanitary Engineering, Faculty of Civil Engineering, Slovak University of Technology, Bratislava, Slovak Republic", + "ror_ids": [ + "https://ror.org/0561ghm58" + ] + }, + { + "affiliation": "Beijing Key Laboratory on MCAACI, School of Mathematics and Statistics, Beijing Institute of Technology, Beijing, People's Republic of China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "(Istituto Nazionale per lo Studio e la Cura dei Tumori, Milano)", + "ror_ids": [] + }, + { + "affiliation": "TRW SYSTEMS GROUP, REDONDO BEACH, CALIF.", + "ror_ids": [] + }, + { + "affiliation": "University of Ballarat", + "ror_ids": [] + }, + { + "affiliation": "ROYAL COLLEGE OF MUSIC, LONDON", + "ror_ids": [ + "https://ror.org/04kwn3124" + ] + }, + { + "affiliation": "Institute for Advanced Study, Technische Universität München 2 , Lichtenbergstr. 2a, D-85748 Garching, Germany", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Department of Civil and Environmental Engineering Birzeit University Birzeit Palestine", + "ror_ids": [ + "https://ror.org/0256kw398" + ] + }, + { + "affiliation": "14319 Auburndale, Livonia, MI 48154, USA,", + "ror_ids": [] + }, + { + "affiliation": "京都光華女子大学こども教育学部", + "ror_ids": [] + }, + { + "affiliation": "Department of Biotechnology Tajen University Yanpu Township Taiwan", + "ror_ids": [ + "https://ror.org/01fvf0d84" + ] + }, + { + "affiliation": "University of Minnesota Crookston,Dept. of Math, Science and Technology,Crookston,MN,USA", + "ror_ids": [ + "https://ror.org/04w6xt508" + ] + }, + { + "affiliation": "PG & Research Department of Commerce, Guru Nanak College, Chennai, Tamil Nadu, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Atomic Physics, Roland Eötvös University, Pázmány Péter sétány 1/A, H–1117 Budapest, Hungary", + "ror_ids": [ + "https://ror.org/01jsq2704" + ] + }, + { + "affiliation": "College of Medicine, King Khaled University, Abha 61421, Saudi Arabia", + "ror_ids": [ + "https://ror.org/052kwzs30" + ] + }, + { + "affiliation": "Department of Oral Biology, State University of New York at Buffalo, 14214, USA.", + "ror_ids": [ + "https://ror.org/01y64my43" + ] + }, + { + "affiliation": "Division of Hematology-oncologyChildren's Hospital of Zhejiang University School of Medicine, Key Laboratory of Reproductive Genetics (Zhejiang University), Ministry of Education, Hangzhou, PR China", + "ror_ids": [ + "https://ror.org/025fyfd20", + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Pacific Northwest National Lab. (PNNL), Richland, WA (United States)", + "ror_ids": [ + "https://ror.org/05h992307" + ] + }, + { + "affiliation": "Kirov Military Medical Academy", + "ror_ids": [ + "https://ror.org/035k4m812" + ] + }, + { + "affiliation": "Department of Electronics and Instrumentation, University of Arkansas, Graduate Institute of Technology, Little Rock, Arkansas", + "ror_ids": [ + "https://ror.org/04fttyv97" + ] + }, + { + "affiliation": "Zhejiang Provincial Key Laboratory of Advanced Chemical Engineering Manufacture Technology, College of Chemical and Biological Engineering, Zhejiang University, Hangzhou 310027, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "University of Nevada", + "ror_ids": [ + "https://ror.org/01keh0577" + ] + }, + { + "affiliation": "San Jose State University", + "ror_ids": [ + "https://ror.org/04qyvz380" + ] + }, + { + "affiliation": "School of Mechanical Engineering, North China University of Science and Technology, Tangshan, Hebei, China", + "ror_ids": [ + "https://ror.org/04z4wmb81" + ] + }, + { + "affiliation": "Hamamatsu University School of Medicine", + "ror_ids": [ + "https://ror.org/00ndx3g44" + ] + }, + { + "affiliation": "Department of Biomedical Engineering and the Julius Silver Institute of Biomedical Engineering, Technion, Israel Institute of Technology, Haifa 32000, Israel", + "ror_ids": [ + "https://ror.org/03qryx823" + ] + }, + { + "affiliation": "Family Service Association of America New York, New York", + "ror_ids": [] + }, + { + "affiliation": "University of Ibadan, Nigeria", + "ror_ids": [ + "https://ror.org/03wx2rr30" + ] + }, + { + "affiliation": "Faculty of Health Sciences Hokkaido University Sapporo Japan", + "ror_ids": [ + "https://ror.org/02e16g702" + ] + }, + { + "affiliation": "Department of Chemical and Biomolecular Engineering, University of California, Berkeley, California 94720, United States", + "ror_ids": [ + "https://ror.org/01an7q238" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Pohang University of Science and Technology, San 31 Hyojadong Pohang, Kyungbook 790–784, Korea", + "ror_ids": [ + "https://ror.org/04xysgw12" + ] + }, + { + "affiliation": "Department of Chemistry & Biochemistry, University of California at San Diego, La Jolla, California 92093-0601", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Immunology Research Institute and Clinic, Nagoya, Japan", + "ror_ids": [] + }, + { + "affiliation": "Università degli Studi di Ferrara", + "ror_ids": [ + "https://ror.org/041zkgm14" + ] + }, + { + "affiliation": "Plessey Research Roke Manor Ltd (United Kingdom)", + "ror_ids": [] + }, + { + "affiliation": "Technical Research Institute, Hibiya Engineering, Ltd.", + "ror_ids": [] + }, + { + "affiliation": "Institute for Quantum Electronics, Eidgenössische Technische Hochschule (ETH) Zürich, 8093 Zürich, Switzerland.", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Departments of Medical Oncology and Bone Marrow Transplantation, Jaslok Hospital and Research Center, Mumbai, Maharashtra, India", + "ror_ids": [ + "https://ror.org/052w06y65" + ] + }, + { + "affiliation": "Nagoya University", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Special Center for Molecular Medicine, Jawaharlal Nehru University , New Delhi , India", + "ror_ids": [ + "https://ror.org/0567v8t28" + ] + }, + { + "affiliation": "McGill University", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Department of Neurology, Cerebrovascular Diseases Unit, Hospital Universitari Mútua de Terrassa, Catalonia, 08227 Terrassa, Spain", + "ror_ids": [ + "https://ror.org/02h74qa12" + ] + }, + { + "affiliation": "Department of Cell Biology, Duke University Medical Center, Durham, NC 27710;", + "ror_ids": [ + "https://ror.org/03njmea73" + ] + }, + { + "affiliation": "Halliburton", + "ror_ids": [ + "https://ror.org/01jn7ba52" + ] + }, + { + "affiliation": "Seattle, Washington", + "ror_ids": [] + }, + { + "affiliation": "1West China Hospital, Sichuan University, Chengdu, China;", + "ror_ids": [ + "https://ror.org/011ashp19", + "https://ror.org/007mrxy13" + ] + }, + { + "affiliation": "Produce for Better Health Foundation5341 Limestone RoadWilmingtonDE19808", + "ror_ids": [] + }, + { + "affiliation": "Bone Res Lab, School of Dentistry of Ribeirao Preto University of São Paulo Ribeirao Preto Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Clinical and Movement Neurosciences, UCL Queen Square Institute of Neurology, Queen Square, London, UK", + "ror_ids": [ + "https://ror.org/048b34d51" + ] + }, + { + "affiliation": "Department of Urology & Dermatology, Sapporo Medical College", + "ror_ids": [] + }, + { + "affiliation": "Division of Bariatric and Minimally Invasive Surgery, Howard University Hospital, Washington, DC 20060, USA", + "ror_ids": [ + "https://ror.org/01w4jxn67" + ] + }, + { + "affiliation": "Professor of English at Simon Fraser University. He has recently published compilations on playwrights Alan Ayckbourn and David Hare in Methuen’s \"Writers on File\" series, and is completing a study of E.M. Forster’s novel, Howards End.", + "ror_ids": [ + "https://ror.org/0213rcc28" + ] + }, + { + "affiliation": "Dipartimento di Chimica “G. Ciamician”, Università di Bologna, Via Selmi, 2, I-40126 Bologna, Italy", + "ror_ids": [ + "https://ror.org/01111rn36" + ] + }, + { + "affiliation": "Department of Biological and Environmental Science, School of Resource Wisdom, P.O. Box 35, FI-40014 University of Jyväskylä, Finland", + "ror_ids": [ + "https://ror.org/05n3dz165" + ] + }, + { + "affiliation": "EGADE Business School, Tecnologico de Monterrey, Mexico", + "ror_ids": [ + "https://ror.org/03ayjn504" + ] + }, + { + "affiliation": "Faculdade de Química, Universidade Federal do Pará, 66075-900 Belém, Pa, Brazil", + "ror_ids": [ + "https://ror.org/03q9sr818" + ] + }, + { + "affiliation": "Harbin Institute of Technology", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "UMR 7179 CNRS/MNHN, Bâtiment d’Anatomie Comparée, Muséum National d’Histoire Naturelle, Paris, France", + "ror_ids": [ + "https://ror.org/03wkt5x30" + ] + }, + { + "affiliation": "Department of Dental and Biomedical Materials Science, Nagasaki University Graduate School of Biomedical Science, Nagasaki 852-8523, Japan e-mail:", + "ror_ids": [ + "https://ror.org/058h74p94" + ] + }, + { + "affiliation": "Department of Epidemiology & Biostatistics,, VU University Medical Center, The Netherlands", + "ror_ids": [ + "https://ror.org/00q6h8f30" + ] + }, + { + "affiliation": "Department of Economics and School of International Affairs, Carleton University, Ottawa.", + "ror_ids": [ + "https://ror.org/02qtvee93" + ] + }, + { + "affiliation": "Lesley Wills Midwife, Médecins Sans Frontières (MSF) / Doctors without Borders", + "ror_ids": [ + "https://ror.org/032mwd808" + ] + }, + { + "affiliation": "Department of Mechanical Systems Engineering, Nagasaki University", + "ror_ids": [ + "https://ror.org/058h74p94" + ] + }, + { + "affiliation": "Department of Mathematics, Indian Institute of Technology, Madras 36, India", + "ror_ids": [ + "https://ror.org/03v0r5n49" + ] + }, + { + "affiliation": "Institute of Biomedical Engineering University of Toronto Toronto ON M5S 3G9 Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "School of Materials Science and Engineering, Central South University, Changsha 410083, Hunan, China", + "ror_ids": [ + "https://ror.org/00f1zfq44" + ] + }, + { + "affiliation": "Autodesk Research, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/01b3dk794" + ] + }, + { + "affiliation": "Anhui Agricultural University", + "ror_ids": [ + "https://ror.org/0327f3359" + ] + }, + { + "affiliation": "Department of Geology & Geological Engineering, Colorado School of Mines, Golden, Colorado 80401, USA", + "ror_ids": [ + "https://ror.org/04raf6v53" + ] + }, + { + "affiliation": "Institute of Biomedicine, University of Southern Switzerland, Lugano, Switzerland", + "ror_ids": [ + "https://ror.org/03c4atk17" + ] + }, + { + "affiliation": "College of Water Sciences", + "ror_ids": [] + }, + { + "affiliation": "University of Sciences and Technology Houari Boumediene, Algiers, Algeria", + "ror_ids": [ + "https://ror.org/02kb89c09" + ] + }, + { + "affiliation": "New York University, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "Department of Sciences and Water Engineering University of Birjand Birjand Iran", + "ror_ids": [ + "https://ror.org/03g4hym73" + ] + }, + { + "affiliation": "University of Namibia, Windhoek, Namibia", + "ror_ids": [ + "https://ror.org/016xje988" + ] + }, + { + "affiliation": "Department of Animal Biology, School of Biology, College of Science, University of Tehran, Tehran, Iran", + "ror_ids": [ + "https://ror.org/05vf56z40" + ] + }, + { + "affiliation": "University of British Columbia, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Biomedical Engineering, Optical Imaging Laboratory, Florida International University, Miami, Florida.", + "ror_ids": [ + "https://ror.org/02gz6gg07" + ] + }, + { + "affiliation": "Wythenshawe Hospital Manchester UK", + "ror_ids": [ + "https://ror.org/05vpsdj37" + ] + }, + { + "affiliation": "Shibaura Institute of Technology", + "ror_ids": [ + "https://ror.org/020wjcq07" + ] + }, + { + "affiliation": "Technical University of Crete", + "ror_ids": [ + "https://ror.org/03f8bz564" + ] + }, + { + "affiliation": "Bell Telephone Laboratories", + "ror_ids": [] + }, + { + "affiliation": "National Research Nuclear University \"Moscow Engineering Physics Institute\" and Centre for Cosmoparticle Physics \"Cosmion\" 115409 Moscow, Russia", + "ror_ids": [ + "https://ror.org/04w8z7f34" + ] + }, + { + "affiliation": "Department of Molecular Physics, Lodz University of Technology, Zeromskiego 116, 90-924 Lodz, Poland", + "ror_ids": [ + "https://ror.org/00s8fpf52" + ] + }, + { + "affiliation": "Pancosma, Geneva, Switzerl", + "ror_ids": [] + }, + { + "affiliation": "Institut für Reaktortechnik, ETH Zürich, CH-5303 Würenlingen, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Department of Theology & Religious Studies Virginia Woolf Building, King's College London, 22 Kingsway London WC2B 6LE UK", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "Centre National de la Recherche Scientifique, Centre de Biologie Moléculaire, Marseille 9e, France", + "ror_ids": [ + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Department of Power Electronics and Energy Control Systems, Faculty of Electrical Engineering, Automatics, Computer Science and Biomedical Engineering, AGH University of Krakow, al. Mickiewicza 30, 30-059 Krakow, Poland", + "ror_ids": [ + "https://ror.org/00bas1c41" + ] + }, + { + "affiliation": "Graduate Student, Dept. of Civil Engineering, Islamic Azad Univ., Najafabad Branch, Esfahan, Iran.", + "ror_ids": [ + "https://ror.org/01kzn7k21" + ] + }, + { + "affiliation": "Univ. of Michigan, Ann Arbor, MI (United States)", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Massachusetts General Hospital, Boston, MA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Universidade Estadual Paulista, Brasil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "The Laboratory of Thrombosis Pharmacology, Istituto di Ricerche Farmacologiche Mario Negri, Consorzio Mario Negri Sud, Santa Maria Imbaro, Italy", + "ror_ids": [ + "https://ror.org/05aspc753" + ] + }, + { + "affiliation": "Departamento de Química Física y Analítica, Universidad de Oviedo, Oviedo, Spain", + "ror_ids": [ + "https://ror.org/006gksa02" + ] + }, + { + "affiliation": "Molecular Genetics, Quest Diagnostics Nichols Institute, San Juan Capistrano, CA, USA", + "ror_ids": [ + "https://ror.org/010g9bb70" + ] + }, + { + "affiliation": "Beijing Institute of Technology", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "University of Central England, Birmingham, UK,", + "ror_ids": [ + "https://ror.org/00t67pt25" + ] + }, + { + "affiliation": "Liver and Immunology Research Center, Daejeon Oriental Hospital, Oriental Medical College, Daejeon University, 176-9 Daeheung-ro, Jung-gu, Daejeon 34929, Republic of Korea", + "ror_ids": [ + "https://ror.org/05vc01a67", + "https://ror.org/02eqchk86" + ] + }, + { + "affiliation": "West Virginia University Morgantown West Virginia USA", + "ror_ids": [ + "https://ror.org/011vxgd24" + ] + }, + { + "affiliation": "TÜV SÜD Product Service GmbH, Munich, Germany", + "ror_ids": [ + "https://ror.org/01k9hhd91" + ] + }, + { + "affiliation": "University of Newcastle, Australia", + "ror_ids": [ + "https://ror.org/00eae9z71" + ] + }, + { + "affiliation": "Alanya Alaaddin Keykubat Üniversitesi", + "ror_ids": [ + "https://ror.org/01zxaph45" + ] + }, + { + "affiliation": "Department of Gynecology and Obstetrics, Peking Union Medical College Hospital, Chinese Academy of Medical Science and Peking Union Medical College, Dongcheng, Beijing 100730, P.R. China", + "ror_ids": [ + "https://ror.org/04jztag35", + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "The Second Artillery Equipment Research Academy, Beijing, China", + "ror_ids": [] + }, + { + "affiliation": "School of Social Sciences, University of Newcastle", + "ror_ids": [] + }, + { + "affiliation": "Adama science and Technology University", + "ror_ids": [ + "https://ror.org/02ccba128" + ] + }, + { + "affiliation": "Department of Chemistry, Purdue University, West Lafayette, Indiana, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Texas A&M University, Texas, USA", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "University of California, Davis, Davis, CA, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "College of Liquor and Food Engineering Guizhou University Guiyang P.R. China", + "ror_ids": [ + "https://ror.org/02wmsc916" + ] + }, + { + "affiliation": "School of Pharmacy, University of Otago (Marra), Dunedin, New Zealand", + "ror_ids": [ + "https://ror.org/01jmxt844" + ] + }, + { + "affiliation": "Department of Pharmacognosy and Organic Medicament, University of Los Andes, Mérida, Venezuela 5101", + "ror_ids": [ + "https://ror.org/02h1b1x27" + ] + }, + { + "affiliation": "National Institute of Advanced Industrial Science and Technology (AIST) Institute for Human Science and Biomedical Engineering, , 1-8-31 Midorigaoka, Ikeda, Osaka 563-8577, Japan", + "ror_ids": [ + "https://ror.org/01703db54" + ] + }, + { + "affiliation": "University of Florida, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Key Lab of Craniocerebral Diseases of Ningxia Hui Autonomous Region Yinchuan China", + "ror_ids": [] + }, + { + "affiliation": "Faculdade de Medicina de São José do Rio Preto, Brasil", + "ror_ids": [ + "https://ror.org/052e6h087" + ] + }, + { + "affiliation": "University of Texas at Austin, TX, USA", + "ror_ids": [ + "https://ror.org/00hj54h04" + ] + }, + { + "affiliation": "StataCorp", + "ror_ids": [ + "https://ror.org/009n4a626" + ] + }, + { + "affiliation": "Department of Surgery, University of Turin, Turin, Italy", + "ror_ids": [ + "https://ror.org/048tbm396" + ] + }, + { + "affiliation": "Yunnan University of Nationalities", + "ror_ids": [ + "https://ror.org/030jhb479" + ] + }, + { + "affiliation": "Faculty of Electronic Engineering, University of Nis", + "ror_ids": [ + "https://ror.org/00965bg92" + ] + }, + { + "affiliation": "Department of Psychology, Queen's University, Kingston,\nOntario, Canada K7L 3N6", + "ror_ids": [ + "https://ror.org/02y72wh86" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, University of Health Sciences, Trabzon Kanuni Health Practice and Research Center, Trabzon, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Proteinic and Man-made Fibres Department, Textile Research and Technology Institute, National Research Centre, Giza, Egypt", + "ror_ids": [ + "https://ror.org/02n85j827" + ] + }, + { + "affiliation": "Department of Biochemistry and Microbiology, Rutgers University, USA", + "ror_ids": [ + "https://ror.org/05vt9qd57" + ] + }, + { + "affiliation": "Stanford University, 579 Serra Mall, Stanford, CA 94305, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Graduate School of Engineering, Fukuoka Institute of Technology", + "ror_ids": [ + "https://ror.org/00bmxak18" + ] + }, + { + "affiliation": "Junior Research Fellow, School of Water Resources Engineering, Jadavpur Univ., Kolkata, West Bengal 700032, India.", + "ror_ids": [ + "https://ror.org/02af4h012" + ] + }, + { + "affiliation": "ETH Zurich Institute of Structural Engineering Zurich Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "ATME College of Engineering,Department of Electronics & Communication Engineering,Mysuru,India", + "ror_ids": [] + }, + { + "affiliation": "Division of Immune Diversity (D150), German Cancer Research Center (DKFZ), 69120 Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/04cdgtt98" + ] + }, + { + "affiliation": "University of Bonn Institute of Physics, , Wegelerstr. 8, 53115 Bonn, Germany", + "ror_ids": [ + "https://ror.org/041nas322" + ] + }, + { + "affiliation": "Division of Cardiovascular Diseases and Internal Medicine, Mayo Clinic, Rochester, Minn.", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Editor, Pipes and Pipelines International, Scientific Surveys Ltd, Beaconsfield, Bucks", + "ror_ids": [] + }, + { + "affiliation": "Department of Oral and Maxillofacial Surgery, College of Dentistry, Wonkwang University, Iksan, Korea.", + "ror_ids": [ + "https://ror.org/006776986" + ] + }, + { + "affiliation": "Fair-port (N. Y.) Central School District", + "ror_ids": [] + }, + { + "affiliation": "Salisbury State University.", + "ror_ids": [] + }, + { + "affiliation": "University of Houston", + "ror_ids": [ + "https://ror.org/048sx0r50" + ] + }, + { + "affiliation": "1 Department of Geotechnology, Delft University of Technology", + "ror_ids": [ + "https://ror.org/02e2c7k09" + ] + }, + { + "affiliation": "Henan Univ", + "ror_ids": [ + "https://ror.org/003xyzq10" + ] + }, + { + "affiliation": "Department of Clinical Veterinary Medicine, Vetsuisse Faculty, University of Bern, Bern, Switzerland (J.D., K.T., P.R., J.H., T.F.); Institute of Animal Pathology, Vetsuisse Faculty, University of Bern, Bern, Switzerland (M.W.); and Clinic for Small Animal Surgery and Reproduction, Veterinary Faculty of the Ludwig-Maximilians-University of Munich, Munich, Germany (A.B.).", + "ror_ids": [ + "https://ror.org/05591te55", + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "Bulgarian National Patients' Organization Sofia Bulgaria", + "ror_ids": [] + }, + { + "affiliation": "Tel Aviv University, Israel", + "ror_ids": [ + "https://ror.org/04mhzgx49" + ] + }, + { + "affiliation": "Clinical Instructor, P D Hinduja Hospital & MRC , College of Nursing.", + "ror_ids": [ + "https://ror.org/00a6fbp85" + ] + }, + { + "affiliation": "Embrapa Recursos Genéticos e Biotecnologia, Brasil", + "ror_ids": [] + }, + { + "affiliation": "Chester and Helen Siess Professor, Director, Ven Te Chow Hydrosystems Laboratory, Dept. of Civil and Environmental Engineering, Univ. of Illinois at Urbana-Champaign, 205 N Mathews Ave., Urbana, IL 61801.", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Population Research Centre, Gokhale Institute of Politics and Economics, Pune, India", + "ror_ids": [ + "https://ror.org/01mksg519" + ] + }, + { + "affiliation": "Department of Preventive Medicine, University of Southern California, Los Angeles, California, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "Present affiliation: Department of Radiology, Division of Interventional Radiology, Boston Medical Center, Boston, MA", + "ror_ids": [ + "https://ror.org/010b9wj87" + ] + }, + { + "affiliation": "Department of Chemical Sciences, Indian Institute of Science Education and Research, Kolkata, Mohanpur, 741 246, West Bengal, India", + "ror_ids": [ + "https://ror.org/00djv2c17" + ] + }, + { + "affiliation": "National University of Singapore (Suzhou) Research Institute, Suzhou 215123, China", + "ror_ids": [ + "https://ror.org/03ebk0c60", + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Interdisciplinary Research Institute for Biosciences, Mukogawa Women's University", + "ror_ids": [ + "https://ror.org/009x65438" + ] + }, + { + "affiliation": "Commune of Scientific Engineers, Institute of Physics, Chinese Academy of Sciences, Beijing 100190, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/05cvf7v30" + ] + }, + { + "affiliation": "PADT, Inc., Tempe, AZ", + "ror_ids": [ + "https://ror.org/02xrvxv47" + ] + }, + { + "affiliation": "Graduate School of Agriculture, Kyoto University", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Mitsubishi electric corporation, Amagasaki-City, Japan", + "ror_ids": [ + "https://ror.org/033y26782" + ] + }, + { + "affiliation": "Fiocruz, Brasil", + "ror_ids": [] + }, + { + "affiliation": "NOAA Atlantic Oceanographic and Meterological Laboratory, Miami, Florida", + "ror_ids": [ + "https://ror.org/042r9xb17" + ] + }, + { + "affiliation": "1 University of Michigan—Dearborn Dearborn, Michigan", + "ror_ids": [ + "https://ror.org/035wtm547" + ] + }, + { + "affiliation": "Department of Population Health London School of Hygiene & Tropical Medicine London UK", + "ror_ids": [ + "https://ror.org/00a0jsq62" + ] + }, + { + "affiliation": "Australian Institute for Bioengineering and Nanotechnology (AIBN) The University of Queensland Brisbane Queensland 4072 Australia", + "ror_ids": [ + "https://ror.org/00rqy9422" + ] + }, + { + "affiliation": "Chemistry Section, Faculty of Education, Toyama University", + "ror_ids": [ + "https://ror.org/0445phv87" + ] + }, + { + "affiliation": "Department of Chemistry, Université de Montréal, C.P. 6128, succursale Centre-ville, Montréal, Québec, Canada H3C 3J7", + "ror_ids": [ + "https://ror.org/0161xgx34" + ] + }, + { + "affiliation": "Schlumberger", + "ror_ids": [ + "https://ror.org/009m79n22" + ] + }, + { + "affiliation": "Department of Rehabilitation, Nagoya University Graduate School of Medicine, Nagoya, Japan", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Laboratoire de Physique Théorique et Hautes Energies, Université Pierre et Marie Curie, Tour 16-1er étage,4 place Jussieu, 75230 Paris Cedex 05, France", + "ror_ids": [ + "https://ror.org/02mph9k76" + ] + }, + { + "affiliation": "1 University of Oxford , Department of Politics and International Relations , Manor Rd, Oxford OX1 3UQ , United Kingdom .", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Bogie Technical Center CRRC Tangshan Co., Ltd Tangshan China", + "ror_ids": [] + }, + { + "affiliation": "Empire State College, State University of New York", + "ror_ids": [ + "https://ror.org/01q1z8k08" + ] + }, + { + "affiliation": "Chiron Corporation, Emeryville, California 94608", + "ror_ids": [] + }, + { + "affiliation": "Shanghai Institute of Organic Chemistry", + "ror_ids": [ + "https://ror.org/01y3hvq34" + ] + }, + { + "affiliation": "Department of Geography, Florida State University, Tallahassee, FL 32306-2050, USA", + "ror_ids": [ + "https://ror.org/05g3dte14" + ] + }, + { + "affiliation": "School of Computing Science and Engineering, School of VIT Bhopal University, Sehore, Madhya Pradesh, India", + "ror_ids": [ + "https://ror.org/02ax13658" + ] + }, + { + "affiliation": "Department of Rehabilitation, Sonodakai Rehabilitation Hospital", + "ror_ids": [] + }, + { + "affiliation": "Department of Heart and Vessels, Cardiac Surgery Unit and Heart Transplantation Center; “S. Camillo-Forlanini” Hospital; Rome Italy", + "ror_ids": [ + "https://ror.org/04z5vy146" + ] + }, + { + "affiliation": "DEPARTMENT OF ANTHROPOLOGY, HARVARD UNIVERSITY, USA", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Tilburg U.", + "ror_ids": [ + "https://ror.org/04b8v1s79" + ] + }, + { + "affiliation": "Department of Neurosurgery, K.J. Somaiya Medical College and Hospital, Mumbai, India", + "ror_ids": [ + "https://ror.org/05f71q776" + ] + }, + { + "affiliation": "Department of Environment and Planning University of Aveiro Portugal", + "ror_ids": [ + "https://ror.org/00nt41z93" + ] + }, + { + "affiliation": "Franklin & Marshall College Lancaster, PA 17604, USA", + "ror_ids": [ + "https://ror.org/04fp4ps48" + ] + }, + { + "affiliation": "Veterans Administration Hospital, San Diego, CA 92161", + "ror_ids": [] + }, + { + "affiliation": "UiT ‐ The Arctic University of Norway Tromsø Norway", + "ror_ids": [ + "https://ror.org/00wge5k78" + ] + }, + { + "affiliation": "National Agri-Food Biotechnology Institute (NABI)", + "ror_ids": [ + "https://ror.org/05nnsek89" + ] + }, + { + "affiliation": "Louisiana State University and Agricultural & Mechanical College", + "ror_ids": [ + "https://ror.org/05ect4e57" + ] + }, + { + "affiliation": "Laboratory of Molecular Epidemiology of Birth Defects, West China Second University Hospital, Sichuan University, Chengdu, Sichuan, 610041, China", + "ror_ids": [ + "https://ror.org/011ashp19", + "https://ror.org/00726et14" + ] + }, + { + "affiliation": "Department of Surgery, Dartmouth Medical School, USA", + "ror_ids": [ + "https://ror.org/049s0rh22" + ] + }, + { + "affiliation": "Concordia University, Canada", + "ror_ids": [ + "https://ror.org/0420zvk78" + ] + }, + { + "affiliation": "Instituto Nacional de Salud, Bogotá, Colombia", + "ror_ids": [ + "https://ror.org/03yxg7206" + ] + }, + { + "affiliation": "Department of Entomology Virginia Polytechnic Institute & State University Blacksburg, VA 24061-0319", + "ror_ids": [ + "https://ror.org/02smfhw86" + ] + }, + { + "affiliation": "University of Oregon, Eugene, Oregon", + "ror_ids": [ + "https://ror.org/0293rh119" + ] + }, + { + "affiliation": "Department of Chemistry", + "ror_ids": [] + }, + { + "affiliation": "The University of Toledo Department of Mechanical, Industrial and Manufacturing Engineering Ohio, USA", + "ror_ids": [ + "https://ror.org/01pbdzh19" + ] + }, + { + "affiliation": "Baruch College of the City University of New York", + "ror_ids": [ + "https://ror.org/023qavy03", + "https://ror.org/00453a208" + ] + }, + { + "affiliation": "Emmett Interdisciplinary Program in Environment and Resources, Stanford University, Stanford, CA 94305, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "School of Nano Technology and Nano Bionics, University of Science and Technology of China, Hefei 230026, China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Universities Space Research Association", + "ror_ids": [ + "https://ror.org/043pgqy52" + ] + }, + { + "affiliation": "Charleston Alcohol Research Center, Center for Drug and Alcohol Programs, Department of Psychiatry and Behavioral Sciences, Medical University of South Carolina, Charleston, South Carolina, USA", + "ror_ids": [ + "https://ror.org/012jban78" + ] + }, + { + "affiliation": "1DiscoveRx Corp., Fremont, CA", + "ror_ids": [ + "https://ror.org/01jtghg16" + ] + }, + { + "affiliation": "Department of Prosthodontics and Implantologist, Government Dental College and Hospital, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/039r0r789" + ] + }, + { + "affiliation": "Laboratoire d’Electronique et Systèmes de Télécommunications (UMR 6165 CNRS), Université de Bretagne Occidentale, 6 Avenue Le Gorgeu, 29285 Brest Cedex, France", + "ror_ids": [ + "https://ror.org/01b8h3982" + ] + }, + { + "affiliation": "Departments of Molecular Biophysics and Biochemistry and Molecular, Cellular and Developmental Biology, Yale University, New Haven, CT 06520-8114; and Laboratory of Microbial Structure and Function, Rocky Mountain Laboratories, National Institute of Allergy and Infectious Diseases, National Institutes of Health, Hamilton, MT 59840", + "ror_ids": [ + "https://ror.org/03v76x132", + "https://ror.org/043z4tv69", + "https://ror.org/01cwqze88" + ] + }, + { + "affiliation": "Department of Engineering and Applied Science, Yale University, New Haven, Connecticut", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Воронежский государственный технический университет, Лаборатория физических исследований, Воронеж, Россия", + "ror_ids": [ + "https://ror.org/01m20f643" + ] + }, + { + "affiliation": "Department of Translational Medicine Science, Graduate School of Biomedical Science and Engineering, Hanyang University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/046865y68" + ] + }, + { + "affiliation": "Emeritus Professor of Gastrointestinal Surgery, University of Glasgow , Glasgow, UK", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "Department of Chemical and\nBiological Engineering, University of Colorado Boulder, Boulder, Colorado 80309, United States", + "ror_ids": [ + "https://ror.org/02ttsq026" + ] + }, + { + "affiliation": "Aerosp. and Mech. Eng. Dept., Boston Univ., 110 Cummington St., Boston, MA 02215", + "ror_ids": [ + "https://ror.org/05qwgg493" + ] + }, + { + "affiliation": "Chalmers University of Technology", + "ror_ids": [ + "https://ror.org/040wg7k59" + ] + }, + { + "affiliation": "Dept. of Biochemistry, Institute of Biology, University of Setif 19000 Algeria", + "ror_ids": [ + "https://ror.org/02rzqza52" + ] + }, + { + "affiliation": "YILDIZ TEKNİK ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/0547yzj13" + ] + }, + { + "affiliation": "NYU Langone Health/NYU Grossman School of Medicine, New York, NY", + "ror_ids": [ + "https://ror.org/005dvqh91" + ] + }, + { + "affiliation": "Institute of World History, RAS", + "ror_ids": [ + "https://ror.org/02e1eph40" + ] + }, + { + "affiliation": "Shiga University", + "ror_ids": [ + "https://ror.org/01vvhy971" + ] + }, + { + "affiliation": "Department of Biology and Ecology Center, Utah State University, Logan, Utah 84322-5305; Email: (MK) ; (SBH) spencerbrucehudson@gmail.com; (EEV) emilyevirgin@gmail.com; (HBP) plylar@aggiemail.usu.edu; (SSF) Susannah.french@usu.edu; and (AHS) savitzky", + "ror_ids": [ + "https://ror.org/00h6set76" + ] + }, + { + "affiliation": "Naval Research Laboratory, Code 6825, 4555 Overlook Avenue SW, Washington, DC 20375", + "ror_ids": [ + "https://ror.org/04d23a975" + ] + }, + { + "affiliation": "1Université de Paris, Institut de physique du globe de Paris, CNRS, Paris, France", + "ror_ids": [ + "https://ror.org/004gzqz66", + "https://ror.org/05f82e368", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Centre for Space Research, North-West University , Potchefstroom 2520, South Africa", + "ror_ids": [ + "https://ror.org/010f1sq29" + ] + }, + { + "affiliation": "Clínica Escola da Universidade Guarulhos (UnG)", + "ror_ids": [ + "https://ror.org/01rx63s97" + ] + }, + { + "affiliation": "Department of Pathology, University of Tennessee, Memphis.", + "ror_ids": [ + "https://ror.org/020f3ap87" + ] + }, + { + "affiliation": "Department of Zoology, University of Hong Kong", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "Faculty of Electrical Engineering and Computer Science, Ningbo University, Ningbo, China", + "ror_ids": [ + "https://ror.org/03et85d35" + ] + }, + { + "affiliation": "Department of Chemistry, University of Aberdeen, Aberdeen AB24 3UE, United Kingdom", + "ror_ids": [ + "https://ror.org/016476m91" + ] + }, + { + "affiliation": "Department of Mathematics, Indian Institute of Technology, Kharagpur 721 302, India", + "ror_ids": [ + "https://ror.org/03w5sq511" + ] + }, + { + "affiliation": "Division\nof Chemical Biology and Medicinal Chemistry, UNC Eshelman School of\nPharmacy, 125 Mason Farm\nRoad, CB 7363, University of North Carolina, Chapel Hill, North Carolina 27599-7363, United States", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Lederle Laboratories, Inc. From the , Pearl River, N. Y.", + "ror_ids": [] + }, + { + "affiliation": "Department of Public Health, Faculty of Health Sciences, Ben-Gurion University of the Negev, Beersheba, Israel.", + "ror_ids": [ + "https://ror.org/05tkyf982" + ] + }, + { + "affiliation": "KAHRAMANMARAŞ SÜTÇÜ İMAM ÜNİVERSİTESİ, TIP FAKÜLTESİ", + "ror_ids": [ + "https://ror.org/03gn5cg19" + ] + }, + { + "affiliation": "Department of Pharmacy The Hospital for Sick Children Toronto Canada", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "Department of Physiology, New York Medical College, Valhalla, New York 10595", + "ror_ids": [ + "https://ror.org/03dkvy735" + ] + }, + { + "affiliation": "Department of Physical Therapy, International University of Health and Welfare Graduate School", + "ror_ids": [ + "https://ror.org/053d3tv41" + ] + }, + { + "affiliation": "Human Nutrition University of Otago Dunedin New Zealand", + "ror_ids": [ + "https://ror.org/01jmxt844" + ] + }, + { + "affiliation": "National Laboratory for Infrared Physics, Shanghai Institute of Technical Physics, Chinese Academy of Sciences, 500 Yu Tian Road, Shanghai 200083, People’s Republic of China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/02txedb84" + ] + }, + { + "affiliation": "MacEwan University", + "ror_ids": [ + "https://ror.org/003s89n44" + ] + }, + { + "affiliation": "Authors' Affiliations: Departments of 1Nuclear Medicine, 2Neuroradiology, 3Neurosurgery, and 4Neurology, 5Division of Neuropathology, University Hospital Leipzig; and 6Translational Centre for Regenerative Medicine, University of Leipzig, Leipzig, Germany", + "ror_ids": [ + "https://ror.org/028hv5492", + "https://ror.org/03s7gtk40" + ] + }, + { + "affiliation": "Department of Journalism and Corporative Communication, University Rey Juan Carlos, Madrid, Spain", + "ror_ids": [ + "https://ror.org/01v5cv687" + ] + }, + { + "affiliation": "School of Computer Science and Engineering, Beijing University of Posts and Telecommunications, Beijing 100876, China", + "ror_ids": [ + "https://ror.org/04w9fbh59" + ] + }, + { + "affiliation": "Department of Clinical PharmacologyRoyal Adelaide HospitalAdelaide S.A. 5000", + "ror_ids": [ + "https://ror.org/00carf720" + ] + }, + { + "affiliation": "Institute of Technical Sciences of the Serbian Academy of Sciences and Arts", + "ror_ids": [ + "https://ror.org/02f2wk572", + "https://ror.org/05m1y4204" + ] + }, + { + "affiliation": "The State Key Laboratory of Refractories and Metallurgy, International Research Institute for Steel Technology, Wuhan University of Science and Technology, Wuhan 430081, China", + "ror_ids": [ + "https://ror.org/00e4hrk88" + ] + }, + { + "affiliation": "Auburn University", + "ror_ids": [ + "https://ror.org/02v80fc35" + ] + }, + { + "affiliation": "Department of Finance, Maastricht University, Maastricht, The Netherlands ()", + "ror_ids": [ + "https://ror.org/02jz4aj89" + ] + }, + { + "affiliation": "Virology and Cellular Immunology Section, Laboratory of Immunogenetics, National Institute of Allergy and Infectious Diseases, National Institutes of Health, Rockville, MD; and", + "ror_ids": [ + "https://ror.org/043z4tv69" + ] + }, + { + "affiliation": "Centre for Biodiversity and Biosecurity, School of Biological Sciences, University of Auckland, Private Bag 92019, Auckland 1142, New Zealand", + "ror_ids": [ + "https://ror.org/03b94tp07" + ] + }, + { + "affiliation": "University and University Hospital Zürich, Raemistrasse 100, 8091 , Zürich, SWITZERLAND; markus.manz@usz.ch", + "ror_ids": [ + "https://ror.org/01462r250" + ] + }, + { + "affiliation": "Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Otolaryngology, University of Mainz School of Medicine, Mainz, Germany", + "ror_ids": [] + }, + { + "affiliation": "School of Electrical Engineering, Xi'an University of Technology, Xi'an, China", + "ror_ids": [ + "https://ror.org/038avdt50" + ] + }, + { + "affiliation": "Department of Biological Sciences and Institute of Microbiology, Seoul National University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Departments of Microbiology and Immunology and of Pediatrics, Vanderbilt University Medical Center, Nashville, Tennessee 37232, USA", + "ror_ids": [ + "https://ror.org/05dq2gs74" + ] + }, + { + "affiliation": "School of Management, University of South Australia, Adelaide, Australia", + "ror_ids": [ + "https://ror.org/01p93h210" + ] + }, + { + "affiliation": "Professor and Chief, Section of Anatomy, Department of Surgery; Chairman, Human Growth and Development Study Unit, Yale University School of Medicine.", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Key Laboratory of Machine Perception Shenzhen Graduate School Peking University Shenzhen China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, University of Washington, Seattle, WA 98195", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "Department of Biochemistry, University of Texas Health Science Center, San Antonio, TX 78229, USA", + "ror_ids": [ + "https://ror.org/02f6dcw23" + ] + }, + { + "affiliation": "Central South University, Chang Sha, China", + "ror_ids": [ + "https://ror.org/00f1zfq44" + ] + }, + { + "affiliation": "Human Development and Family Studies Purdue University West Lafayette Indiana", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Department of Animal and Range Sciences, Montana State University, Bozeman, MT", + "ror_ids": [ + "https://ror.org/02w0trx84" + ] + }, + { + "affiliation": "Department of Internal Medicine , Ghent University , Ghent , Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "The University of Texas MD Anderson Cancer Center, Houston, TX;", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "NamesforLife, LLC", + "ror_ids": [] + }, + { + "affiliation": "Oita University, Faculty of Engineering, Oita University", + "ror_ids": [ + "https://ror.org/01nyv7k26" + ] + }, + { + "affiliation": "Michael Untch, Helios-Klinikum, Berlin-Buch; Jens-Uwe Blohmer, St Gertrauden Krankenhaus, Berlin; Gunter von Minckwitz, Valentina Nekljudova, and Sibylle Loibl, German Breast Group, Neu-Isenburg; Bernd Gerber, Universitäts-Frauenklinik, Rostock; Christian Schem, Mammazentrum am Krankenhaus Jerusalem, Hamburg; Mahdi Rezai, Luisenkrankenhaus; Tanja Fehm, Universitäts-Frauenklinik, Düsseldorf; Peter A. Fasching, Universitätsklinikum Erlangen, Erlangen; Hans Tesch, Hämatologisch-Onkologische...", + "ror_ids": [ + "https://ror.org/0030f2a11" + ] + }, + { + "affiliation": "Institute of Precision Medicine, The Xiangya Hospital, State Key Laboratory of Medical Genetics, Xiangya Medical School, Central South University, Changsha 410078, China", + "ror_ids": [ + "https://ror.org/00f1zfq44", + "https://ror.org/05c1yfj14" + ] + }, + { + "affiliation": "Vels Institute of Science, Technology & Advanced Studies,Department of Computer Applications,Chennai,India", + "ror_ids": [] + }, + { + "affiliation": "Department of Urology, Medical University Innsbruck, Innsbruck, Austria", + "ror_ids": [ + "https://ror.org/03pt86f80" + ] + }, + { + "affiliation": "Institut für Pathologie, Katharinenhospital, Stuttgart", + "ror_ids": [ + "https://ror.org/002n0by50" + ] + }, + { + "affiliation": "Neurosurgery Department, Careggi Hospital, Florence; Italy", + "ror_ids": [] + }, + { + "affiliation": "Assistant Professor, Department of Surgery Government Medical College And Hospital Aurangabad-431001 Maharashtra, India", + "ror_ids": [] + }, + { + "affiliation": "Departments of Pharmacology and Chemistry, University of Virginia School of Medicine, USA", + "ror_ids": [ + "https://ror.org/0153tk833" + ] + }, + { + "affiliation": "Assistant Professor of Anesthesiology.", + "ror_ids": [] + }, + { + "affiliation": "Exxon Research and Engineering Company, Annandale, New Jersey 08801", + "ror_ids": [ + "https://ror.org/01xcepn55" + ] + }, + { + "affiliation": "Department of Primary and Community Care, Radboud University Medical Center, Nijmegen, the Netherlands", + "ror_ids": [ + "https://ror.org/05wg1m734" + ] + }, + { + "affiliation": "University Medical Center Groningen\nand University of Groningen, A. Deusinglaan\n1, 9713 AV Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287", + "https://ror.org/03cv38k47" + ] + }, + { + "affiliation": "Institut für Journalistik und Kommunikationsforschung, Hochschule für Musik und Theater Hannover", + "ror_ids": [ + "https://ror.org/00x67m532" + ] + }, + { + "affiliation": "San Diego State University,Computational Science,San Diego,USA", + "ror_ids": [ + "https://ror.org/0264fdx42" + ] + }, + { + "affiliation": "Centers for Disease Control and Prevention", + "ror_ids": [] + }, + { + "affiliation": "Department of Computer Science and Engineering, University, Visvesvaraya College of Engineering, Bangalore University Bangalore, K R Circle, 560001, India. Tel.: ; Fax: ; E-mails: kgsrinivas@msrit.edu, shenoypd@yahoo.com, vkrajuk@vsnl.com", + "ror_ids": [ + "https://ror.org/050j2vm64" + ] + }, + { + "affiliation": "Department of Mathematics, West Bengal State University , Barasat , Kolkata, 700126 , India", + "ror_ids": [ + "https://ror.org/04qs5en05" + ] + }, + { + "affiliation": "Department of Surgery, University of Washington, Seattle, Washington", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "The University of Western Australia, Centre for Exploration Targeting, Crawley, Geological Survey of Western Australia, Mineral House, 100 Plain Street, East Perth, and Macquarie University, Australian Research Council Centre of Excellence for Core to Crust Fluid Systems (CCFS), Department of Earth and Planetary Sciences, Sydney, Australia..", + "ror_ids": [ + "https://ror.org/05h2dda38", + "https://ror.org/03nk9pp38", + "https://ror.org/01sf06y89", + "https://ror.org/05mmh0f86" + ] + }, + { + "affiliation": "Department of Chemical Engineering, University of California, Davis, California 95616, United States", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Association for Business Development and Non-Profit Initiatives «Holding-Spektr»", + "ror_ids": [] + }, + { + "affiliation": "Centre Roland Mousnier, France", + "ror_ids": [ + "https://ror.org/01gapzp55" + ] + }, + { + "affiliation": "From the Institute of Immunology, Department of Medicine I, and Department of Surgery, Medical Faculty, Technical University of Dresden, Germany.", + "ror_ids": [ + "https://ror.org/042aqky30" + ] + }, + { + "affiliation": "Molecular Oncology", + "ror_ids": [ + "https://ror.org/04rtkc841" + ] + }, + { + "affiliation": "Faculty of Engineering, Kyushu University", + "ror_ids": [ + "https://ror.org/00p4k0j84" + ] + }, + { + "affiliation": "National Institute for Interdisciplinary Science and Technology;, India", + "ror_ids": [ + "https://ror.org/05bkc5375" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Indian Institute of Technology Guwahati, Guwahati, Assam 781039, India", + "ror_ids": [ + "https://ror.org/0022nd079" + ] + }, + { + "affiliation": "University of Oslo, Oslo, Norway", + "ror_ids": [ + "https://ror.org/01xtthb56" + ] + }, + { + "affiliation": "The Open University of Japan", + "ror_ids": [ + "https://ror.org/03jyr9x65" + ] + }, + { + "affiliation": "Department of Mathematics, University of Minnesota, Minneapolis, MN 55455", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "U434 Institut National de la Santé et de la Recherche Médicale-Centre d'Étude du Polymorphisme Humain-Fondation Jean Dausset, 27 rue Juliette Dodu, 75010, Paris, France; and Unité Mixte de Recherche 146 Centre National de la Recherche Scientifique, Institut Curie, Bat 110, Centre Universitaire, 91405 Orsay Cedex, France", + "ror_ids": [ + "https://ror.org/02feahw73", + "https://ror.org/01rje3r53", + "https://ror.org/02vjkv261", + "https://ror.org/04t0gwh46" + ] + }, + { + "affiliation": "Department of Biotechnology, Sri Guru Granth Sahib World University, Fatehgarh Sahib, Punjab 140406, India", + "ror_ids": [ + "https://ror.org/02c2her03" + ] + }, + { + "affiliation": "Universidad Pública de Navarra, Spain", + "ror_ids": [ + "https://ror.org/02z0cah89" + ] + }, + { + "affiliation": "University of Mons, Rue de Houdain 9, 7000 Mons,Belgium", + "ror_ids": [ + "https://ror.org/02qnnz951" + ] + }, + { + "affiliation": "ETH Zurich", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Universidade Federal da Bahia, Brasil", + "ror_ids": [ + "https://ror.org/03k3p7647" + ] + }, + { + "affiliation": "Faculty of Earth Sciences , Nicolaus Copernicus University in Toruń , Lwowska 1, 87-100 Toruń , Poland", + "ror_ids": [ + "https://ror.org/0102mm775" + ] + }, + { + "affiliation": "German Center for Lung ResearchHeidelberg, Germany", + "ror_ids": [ + "https://ror.org/03dx11k66" + ] + }, + { + "affiliation": "Museo de Zoología, Escuela de Biología, Pontificia Universidad Católica del Ecuador (PUCE), Quito, Ecuador", + "ror_ids": [ + "https://ror.org/02qztda51" + ] + }, + { + "affiliation": "State Key Laboratory of Electroanalytical\nChemistry, Changchun Institute of Applied Chemistry, Chinese Academy of Sciences, Changchun, Jilin, 130022,\nChina", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/00h52n341" + ] + }, + { + "affiliation": "Institute of Physical Chemistry of the Polish Academy of Sciences, Department of Complex Systems and Chemical Processing of Information, ul. Niezapominajek 8, 30-239 Cracow, Poland, and Institute of Teleinformatics, Faculty of Electrical and Computer Engineering, Cracow University of Technology, ul. Warszawska 24, 31-155 Cracow, Poland", + "ror_ids": [ + "https://ror.org/01dr6c206", + "https://ror.org/00pdej676", + "https://ror.org/05e830h62" + ] + }, + { + "affiliation": "a Department of Production Engineering and Management , Technical University of Crete, University Campus , GR-73100 Chania, Greece", + "ror_ids": [ + "https://ror.org/03f8bz564" + ] + }, + { + "affiliation": "Marine Science Inst. Univ. of California Santa Barbara Santa Barbara CA USA", + "ror_ids": [ + "https://ror.org/02t274463" + ] + }, + { + "affiliation": "Department of Physics, Tripura University, Suryamaninagar – 799130, India", + "ror_ids": [ + "https://ror.org/05xqycm14" + ] + }, + { + "affiliation": "Institute for Cancer and Genomic Sciences, College of Medical and Dental Sciences, University of Birmingham, Birmingham, UK", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "Department of Plant Breeding, Cornell University, Ithaca NY 14853, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Ocean Engineering, University of Rhode Island , Narragansett, Rhode Island 02882, USA", + "ror_ids": [ + "https://ror.org/013ckk937" + ] + }, + { + "affiliation": "Elizabeth Eakin, PhD; Wendy Brown, PhD; and Marina Reeves, PhD, are with the University of Queensland, Brisbane, Queensland, Australia. Kerry Mummery, PhD, is with Central Queensland University, Rockhampton, Queensland, Australia. Grant Schofield, PhD, is with Auckland University of Technology, Auckland, New Zealand", + "ror_ids": [ + "https://ror.org/00rqy9422", + "https://ror.org/023q4bk22", + "https://ror.org/01zvqw119" + ] + }, + { + "affiliation": "Lijiang Teachers College", + "ror_ids": [] + }, + { + "affiliation": "5Integrated Department of Immunology, National Jewish Hlth., Denver, CO", + "ror_ids": [ + "https://ror.org/016z2bp30" + ] + }, + { + "affiliation": "School of Electronic and Information Engineering, South China University of Technology, Guangzhou, China", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Electrical and Control Engineering DepartmentArab Academy for Science Technology and Maritime Transport Alexandria Egypt", + "ror_ids": [ + "https://ror.org/0004vyj87" + ] + }, + { + "affiliation": "Royal Hallamshire Hospital, Sheffield", + "ror_ids": [ + "https://ror.org/00514rc81" + ] + }, + { + "affiliation": "Hospital of Gynecology and Obstetrics No. One of the Mexican Institute of Social Security (IMSS)", + "ror_ids": [] + }, + { + "affiliation": "ABB Seatec", + "ror_ids": [] + }, + { + "affiliation": "Laboratorio de Automática e Inteligencia Computacional, Universidad Distrital Francisco Jose de Caldas, Carrera 8 No. 40-62, Piso 7, Bogota, Colombia", + "ror_ids": [ + "https://ror.org/02jsxd428" + ] + }, + { + "affiliation": "Department of African Language Studies, University of the Western Cape, Cape Town, South Africa", + "ror_ids": [ + "https://ror.org/00h2vm590" + ] + }, + { + "affiliation": "School of Automation, China University of Geosciences, Wuhan, China", + "ror_ids": [ + "https://ror.org/04gcegc37" + ] + }, + { + "affiliation": "Northwestern University", + "ror_ids": [] + }, + { + "affiliation": "Shimane University Hospital, Izumo, Japan;", + "ror_ids": [ + "https://ror.org/03nvpm562" + ] + }, + { + "affiliation": "Laboratory of Computing, University of Jinan, China", + "ror_ids": [ + "https://ror.org/02mjz6f26" + ] + }, + { + "affiliation": "Max-Planck-Institut für Polymerforschung, Postfach 3148, D-6500 Mainz, West Germany", + "ror_ids": [ + "https://ror.org/00sb7hc59" + ] + }, + { + "affiliation": "Henan University of Technology, China", + "ror_ids": [ + "https://ror.org/05sbgwt55" + ] + }, + { + "affiliation": "From the Department of Neurology, University of Massachusetts Memorial Health Care, Worcester, Mass.", + "ror_ids": [ + "https://ror.org/0260j1g46" + ] + }, + { + "affiliation": "Center for Biostatistics, The Ohio State University, Columbus, OH, USA", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Unit of Experimental Biology, Department of Biomedicine, Faculty of Medicine of Porto University, Portugal", + "ror_ids": [ + "https://ror.org/043pwc612" + ] + }, + { + "affiliation": "Soricimed Biopharma Inc, Sackville, New Brunswick, Canada.", + "ror_ids": [] + }, + { + "affiliation": "Department of Preventive Medicine, Chung-Ang University College of Medicine, Korea.", + "ror_ids": [ + "https://ror.org/01r024a98" + ] + }, + { + "affiliation": "UCLA Medical Center Los Angeles California", + "ror_ids": [ + "https://ror.org/04k3jt835" + ] + }, + { + "affiliation": "Department of Health Sciences, Faculty of Medicine, Health and Human Sciences Macquarie University Sydney New South Wales Australia", + "ror_ids": [ + "https://ror.org/01sf06y89" + ] + }, + { + "affiliation": "The Affiliated Hospital of Shandong University of Traditional Chinese Medicine, Yantai Hospital of Traditional Chinese Medicine, Yantai, Shandong, China", + "ror_ids": [ + "https://ror.org/052q26725" + ] + }, + { + "affiliation": "China Academy of Transportation Science, Beijing, P.R. China.", + "ror_ids": [ + "https://ror.org/012f3dh63" + ] + }, + { + "affiliation": "Universidade Estadual de Londrina, Brazil", + "ror_ids": [ + "https://ror.org/01585b035" + ] + }, + { + "affiliation": "School of Metallurgy", + "ror_ids": [] + }, + { + "affiliation": "Indiana University School of Medicine", + "ror_ids": [ + "https://ror.org/02ets8c94" + ] + }, + { + "affiliation": "Dep. of Agronomy Iowa State Univ. Ames IA 50011", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "a Lehigh University , Bethlehem , Pa. , USA", + "ror_ids": [ + "https://ror.org/012afjb06" + ] + }, + { + "affiliation": "400-C 10th Street, East Tuscaloosa, AL 35401", + "ror_ids": [] + }, + { + "affiliation": "Sverdrup Technology, Inc., Arnold AFB, TN", + "ror_ids": [] + }, + { + "affiliation": "Guest Editors and Symposium Organizers", + "ror_ids": [] + }, + { + "affiliation": "Natural Resources\nCanada", + "ror_ids": [ + "https://ror.org/05hepy730" + ] + }, + { + "affiliation": "Department of Thoracic Surgery, Tokyo Medical University Hospital, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/012e6rh19" + ] + }, + { + "affiliation": "Key Laboratory of Intelligent Analysis and Decision on Complex Systems Chongqing University of Posts and Telecommunications Chongqing China", + "ror_ids": [ + "https://ror.org/03dgaqz26" + ] + }, + { + "affiliation": "Jiangsu Hefeng Grain and Oil Industry Co., Ltd.", + "ror_ids": [] + }, + { + "affiliation": "Mayo Clinic and Foundation Rochester MN USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "LIST Saclay, Laboratoire Capteurs et Architectures Électroniques, CEA, F-91191, Gif-sur-Yvette Cedex, France", + "ror_ids": [] + }, + { + "affiliation": "Sunninghill", + "ror_ids": [] + }, + { + "affiliation": "Division of Cardiology Sahlgrenska Academy at Sahlgrenska University Hospital Göteborg Sweden", + "ror_ids": [ + "https://ror.org/04vgqjj36" + ] + }, + { + "affiliation": "Greifswald", + "ror_ids": [] + }, + { + "affiliation": "Massachusetts Institute of Technology Laboratory for Computer Science, Cambridge 02139, USA.", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "National Cattlemen’s Beef Association", + "ror_ids": [ + "https://ror.org/04s498a57" + ] + }, + { + "affiliation": "Centre for Special Educational Needs and Youth Care, Faculty of Behavioural and Social Sciences, University of Groningen, Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "University Institute of Technology, India", + "ror_ids": [] + }, + { + "affiliation": "Departamento de Química Orgánica, Universidad Autónoma de Madrid, Cantoblanco, E-28049 Madrid, Spain", + "ror_ids": [ + "https://ror.org/01cby8j38" + ] + }, + { + "affiliation": "Vaccine and Gene Therapy Institute, Oregon Health and Science University, USA", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "City University of Hong Kong, Hong Kong, Hong Kong", + "ror_ids": [ + "https://ror.org/03q8dnn23" + ] + }, + { + "affiliation": "Professor, Dept. of Civil Engineering, Central South Univ., Changsha, Hunan Province, 410075, People’s Republic of China and Professor, Dept. of Civil. Engineering, Fuzhou Univ., Fuzhou, Fujian Province, 350002, People’s Republic of China; (corresponding author).", + "ror_ids": [ + "https://ror.org/011xvna82", + "https://ror.org/00f1zfq44" + ] + }, + { + "affiliation": "Grupo de Química\nInorgánica y Materiales Moleculares, Universidad Autonoma de Chile, El Llano\nSubercaseaux 2801, Santiago, Chile", + "ror_ids": [ + "https://ror.org/010r9dy59" + ] + }, + { + "affiliation": "Queen Mary University of London, London, UK", + "ror_ids": [ + "https://ror.org/026zzn846" + ] + }, + { + "affiliation": "Hybrigenics Services, Paris, France", + "ror_ids": [] + }, + { + "affiliation": "School of Public Health, University of Michigan, Ann Arbor", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Faculty of Chemistry, Department of Organic Chemistry, University of Kashan, Kashan, I.R. Iran", + "ror_ids": [ + "https://ror.org/015zmr509" + ] + }, + { + "affiliation": "IIT Kharagpur India", + "ror_ids": [ + "https://ror.org/03w5sq511" + ] + }, + { + "affiliation": "Sumy National Agrarian University", + "ror_ids": [ + "https://ror.org/00vnaf984" + ] + }, + { + "affiliation": "Department of Physics, University of South Florida, Tampa, Florida", + "ror_ids": [ + "https://ror.org/032db5x82" + ] + }, + { + "affiliation": "159 London Road, Temple Ewell, Kent CT16 3DA", + "ror_ids": [] + }, + { + "affiliation": "Department of Ophthalmology (S.F., Y.H., Y.Z., S.Z., X.Li., P.G., H.Z., X.F.), Shanghai Ninth People's Hospital, Shanghai JiaoTong University School of Medicine, Shanghai 200011", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/010826a91" + ] + }, + { + "affiliation": "Department of Biological Sciences (m/c 066), University of Illinois at Chicago, 845 W. Taylor Street, Chicago, IL 60607, USA", + "ror_ids": [ + "https://ror.org/02mpq6x41" + ] + }, + { + "affiliation": "Inria and LIX/Ecole Polytechnique", + "ror_ids": [ + "https://ror.org/05hy3tk52", + "https://ror.org/02kvxyf05" + ] + }, + { + "affiliation": "Slippery Rock University, USA", + "ror_ids": [ + "https://ror.org/0369st156" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Faculty of Engineering, Diponegoro University, Postal Code 50239, Semarang, Indonesia", + "ror_ids": [ + "https://ror.org/056bjta22" + ] + }, + { + "affiliation": "\"George Emil Palade\" University of Medicine, Pharmacy, Sciences and Technology from Târgu Mureș / Romania", + "ror_ids": [ + "https://ror.org/03gwbzf29" + ] + }, + { + "affiliation": "Capital Medical University", + "ror_ids": [ + "https://ror.org/013xs5b60" + ] + }, + { + "affiliation": "Center for Systems Neurobiology, Departments of Pharmacology and Biomedical Engineering, Boston University, Boston, MA 02118; Shanghai Institute of Brain Functional Genomics, East China Normal University, Shanghai 200062, China; and Department of Molecular Biology, Princeton University, Princeton, NJ 08544-1014", + "ror_ids": [ + "https://ror.org/00hx57361", + "https://ror.org/05qwgg493", + "https://ror.org/02n96ep67" + ] + }, + { + "affiliation": "Key Laboratory of Coal Gasification and Energy Chemical Engineering of Ministry of Education, East China University of Science and Technology, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01vyrm377" + ] + }, + { + "affiliation": "Department of Biochemistry and Applied Biosciences, Faculty of Agriculture University of Miyazaki Miyazaki Japan", + "ror_ids": [ + "https://ror.org/0447kww10" + ] + }, + { + "affiliation": "National Research University Higher School of Economics 1 , 25/12 Bolshaya Pecherskaya Ulitsa, 603155 Nizhny Novgorod, Russia", + "ror_ids": [ + "https://ror.org/055f7t516" + ] + }, + { + "affiliation": "Division of Energy and Furnace Technology, Department of Materials Science and Engineering, School of Industrial Engineering and Management, Royal Institute of Technology, SE 100 44 Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Guy's Hospital, London, England.", + "ror_ids": [ + "https://ror.org/04r33pf22" + ] + }, + { + "affiliation": "National Chemical Laboratory for Industry", + "ror_ids": [] + }, + { + "affiliation": "Nanjing University,Key Laboratory of Modern Acoustics Institute of Acoustics,Nanjing,China,210093", + "ror_ids": [ + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "The Bucharest University of Economic Studies, Bucharest, Romania", + "ror_ids": [ + "https://ror.org/04yvncj21" + ] + }, + { + "affiliation": "Johns Hopkins University Bloomberg School of Public Health", + "ror_ids": [ + "https://ror.org/00za53h95" + ] + }, + { + "affiliation": "Institute of Forest Management, Center of Life and Food Sciences Weihenstephan, Technische Universität München, Hans-Carl-von-Carlowitz-Platz 2, 85354 Freising, Germany.", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Department of Human Molecular Genetics, Institute of Human Genetics University Hospital Heidelberg and Interdisciplinary Center for Neurosciences (IZN), University of Heidelberg Heidelberg Germany", + "ror_ids": [ + "https://ror.org/013czdx64", + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Verhaltensneurobiologie MPI für Ornithologie Seewiesen Germany", + "ror_ids": [] + }, + { + "affiliation": "Center for Phage Technology, Texas A&M University, College Station, Texas, USA", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "Max Planck for Structure and Dynamics of Matter", + "ror_ids": [ + "https://ror.org/0411b0f77" + ] + }, + { + "affiliation": "Department of Physical Chemistry and the Farkas Center for Light Induced Processes, The Hebrew University of Jerusalem, Jerusalem, Israel 91904", + "ror_ids": [ + "https://ror.org/03qxff017" + ] + }, + { + "affiliation": "Museu de Entomologia, Departamento de Entomologia, Universidade Federal de Viçosa, Av. P. H. Rolfs, s/n, Campus Universitário, CEP 36570‐900 Viçosa, Minas Gerais Brazil", + "ror_ids": [ + "https://ror.org/0409dgb37" + ] + }, + { + "affiliation": "Hokkaido University Division of Electronics for Informatics, , Sapporo 060-0814, Japan", + "ror_ids": [ + "https://ror.org/02e16g702" + ] + }, + { + "affiliation": "Department of Physical Therapy, Hokkaido Chitose Institute of Rehabilitation Technology: 10 Satomi 2-chome, Chitose 066-0055, Japan", + "ror_ids": [ + "https://ror.org/05rxe5g18" + ] + }, + { + "affiliation": "International Health Policy Program, Ministry of Public Health, Tivanond Road, Nonthaburi 11000, Thailand.", + "ror_ids": [ + "https://ror.org/03rn0z073" + ] + }, + { + "affiliation": "Hangzhou Dianzi University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/0576gt767" + ] + }, + { + "affiliation": "University of Alberta, Edmonton, AB, Canada", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Wuhan Institute of Technology,Engineering Research Center for Intelligent Production Line Equipment of Hubei Province School of Computer Science & Engineering,Wuhan,China", + "ror_ids": [ + "https://ror.org/04jcykh16" + ] + }, + { + "affiliation": "University of Portsmouth", + "ror_ids": [ + "https://ror.org/03ykbk197" + ] + }, + { + "affiliation": "ECC DepartmentCKPCETSuratIndia", + "ror_ids": [] + }, + { + "affiliation": "Department of Anaesthesia, Westmead Hospital, Sydney, New South Wales, Australia", + "ror_ids": [ + "https://ror.org/04gp5yv64" + ] + }, + { + "affiliation": "Arizona State University, Tempe, AZ, USA", + "ror_ids": [ + "https://ror.org/03efmqc40" + ] + }, + { + "affiliation": "From the Divisions of Cardiology and Social Medicine, Brigham & Women’s Hospital, Harvard Medical School, Boston, Mass.", + "ror_ids": [ + "https://ror.org/04b6nzv94", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Department of Pharmacognosy, State University, Utrecht", + "ror_ids": [] + }, + { + "affiliation": "Institute of Spectroscopy, Russian Academy of Sciences, 142190 Troitsk, Moscow Region, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25", + "https://ror.org/01nmpe263" + ] + }, + { + "affiliation": "National Taiwan University, Taiwan", + "ror_ids": [ + "https://ror.org/05bqach95" + ] + }, + { + "affiliation": "From the Sections of Ophthalmology and2Department of Ophthalmology and the", + "ror_ids": [] + }, + { + "affiliation": "HealthPartners Center for Memory & Aging Saint Paul MN USA", + "ror_ids": [] + }, + { + "affiliation": "University of Venice,Ca’ Foscari", + "ror_ids": [ + "https://ror.org/04yzxz566" + ] + }, + { + "affiliation": "Massachusetts General Hospital and Harvard Medical School, USA hzheng1@partners.org", + "ror_ids": [ + "https://ror.org/002pd6e78", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Solicitor in Trowers & Hamlins Employment Group, Sceptre Court, 40 Tower Hill, London EC3N 4DX", + "ror_ids": [] + }, + { + "affiliation": "University of Pittsburgh, Pittsburgh, PA, United States", + "ror_ids": [ + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Albany Medical Center Hospital, Albany, New York", + "ror_ids": [ + "https://ror.org/0307crw42" + ] + }, + { + "affiliation": "Department of Bridge Engineering, Tongji University, Shanghai, China", + "ror_ids": [ + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "Van Yüzüncü Yıl Üniversitesi, Eğitim Bilimleri Enstitüsü, Eğitim Bilimleri ABD", + "ror_ids": [ + "https://ror.org/041jyzp61" + ] + }, + { + "affiliation": "UNSW,School of Electrical Engineering and Telecommunications,Sydney,Australia", + "ror_ids": [ + "https://ror.org/03r8z3t63" + ] + }, + { + "affiliation": "Gunma National College of Technology", + "ror_ids": [] + }, + { + "affiliation": "Department of Biophysical Chemistry, NIZO, Ede, The Netherlands.", + "ror_ids": [] + }, + { + "affiliation": "Dnipro State Agrarian and Economic University", + "ror_ids": [ + "https://ror.org/01s5n0596" + ] + }, + { + "affiliation": "Professor, Key Laboratory of Performance Evolution and Control for Engineering Structures of the Ministry of Education, Tongji Univ., Siping Rd., 1239, Shanghai 200092, China; Professor, Dept. of Structural Engineering, Tongji Univ., Siping Rd., 1239, Shanghai 200092, China (corresponding author). ORCID: .", + "ror_ids": [ + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "West Baden College", + "ror_ids": [] + }, + { + "affiliation": "SAKARYA UYGULAMALI BİLİMLER ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/01shwhq58" + ] + }, + { + "affiliation": "Department of Chemistry, Purdue University, West Lafayette, Indiana 47907", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Neurology, Carilion Clinic-Virginia Tech school of medicine", + "ror_ids": [ + "https://ror.org/02smfhw86", + "https://ror.org/02rsjh069" + ] + }, + { + "affiliation": "School of Life Sciences, Arizona State University, Tempe, AZ 85287-4601, USA", + "ror_ids": [ + "https://ror.org/03efmqc40" + ] + }, + { + "affiliation": "TU Ilmenau, Germany", + "ror_ids": [ + "https://ror.org/01weqhp73" + ] + }, + { + "affiliation": "The University of Sheffield, UK", + "ror_ids": [ + "https://ror.org/05krs5044" + ] + }, + { + "affiliation": "H Lundbeck A/S, Valby, Denmark", + "ror_ids": [] + }, + { + "affiliation": "Zoological Institute, University of Lund, Lund, Sweden", + "ror_ids": [ + "https://ror.org/012a77v79" + ] + }, + { + "affiliation": "Normandie Université UMR 6273 Craham 14032 Caen France", + "ror_ids": [ + "https://ror.org/01k40cz91" + ] + }, + { + "affiliation": "JDM College, University of Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "The Department of Electrical Engineering, Faculty of Science and Technology, Tokyo University of Science", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Subfaculty of Pharmacy, University of Amsterdam, Plantage Muidergracht 24, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463" + ] + }, + { + "affiliation": "Central Institute for the Deaf, 818 S. Euclid Avenue, St. Louis, MO 63110", + "ror_ids": [ + "https://ror.org/04ymee833" + ] + }, + { + "affiliation": "Palo Alto, CA", + "ror_ids": [] + }, + { + "affiliation": "Jiangsu University", + "ror_ids": [ + "https://ror.org/03jc41j30" + ] + }, + { + "affiliation": "Department of Control Science and Engineering, Harbin Institute of Technology, PR China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "KIT-Kalaignarkarunanidhi Institute of Technology,Department of Electrical and Electronics Engineering,Coimbatore,India", + "ror_ids": [] + }, + { + "affiliation": "Institute of Biomedical Sciences, Uberlândia Federal University (UFU), 1720 Pará Avenue, Uberlândia, MG 38400-902, Brazil", + "ror_ids": [ + "https://ror.org/04x3wvr31" + ] + }, + { + "affiliation": "b Department of Theoretical Chemistry, Chemical Center , P.O.B. 124, S-221 00, Lund, Sweden", + "ror_ids": [] + }, + { + "affiliation": "Transfusion Technology Assessment Department Sanquin Research Amsterdam The Netherlands", + "ror_ids": [] + }, + { + "affiliation": "Universidade Anhembi Morumbi, Brasil", + "ror_ids": [ + "https://ror.org/00ay50243" + ] + }, + { + "affiliation": "BDS, MDS (Prosthodontics), PhD (Pursuing), Professor, Department of Prosthodontics and Crown and Bridge, Faculty of Dentistry Jamia Millia Islamia, New Delhi, India", + "ror_ids": [ + "https://ror.org/00pnhhv55" + ] + }, + { + "affiliation": "VICKERS INCORPORATED,", + "ror_ids": [] + }, + { + "affiliation": "Massachusetts General Hospital and Harvard Medical School Boston Massachusetts", + "ror_ids": [ + "https://ror.org/002pd6e78", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Division of Cardiology, Department of Advanced Biomedical Sciences, Federico II University, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Chiba University Graduate School of Nursing (Center) Chiba Japan", + "ror_ids": [ + "https://ror.org/01hjzeq58" + ] + }, + { + "affiliation": "Infertility Medical CentreEpworth Hospital 34 Erin Street Richmond VIC 3121", + "ror_ids": [ + "https://ror.org/02ett6548" + ] + }, + { + "affiliation": "Department of Mechanical Engineering and Materials Science, Rice University, Houston, TX 77251", + "ror_ids": [ + "https://ror.org/008zs3103" + ] + }, + { + "affiliation": "Chinese University of Hong Kong, Hong Kong , Hong Kong", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "From the Department of Neurology, PGIMER, Chandigarh, India.", + "ror_ids": [] + }, + { + "affiliation": "Key Laboratory of Functional Small Organic Molecule of Ministry of Education, Jiangxi Normal University, Nanchang Jiangxi, China", + "ror_ids": [ + "https://ror.org/05nkgk822" + ] + }, + { + "affiliation": "Gazi University", + "ror_ids": [ + "https://ror.org/054xkpr46" + ] + }, + { + "affiliation": "Hankuk University of Foreign Studies", + "ror_ids": [ + "https://ror.org/051q2m369" + ] + }, + { + "affiliation": "Auburn University, Auburn, Ala.", + "ror_ids": [ + "https://ror.org/02v80fc35" + ] + }, + { + "affiliation": "Johannes Gutenberg-Universität Mainz, Graduiertenkolleg 2304 “Byzanz und die euromediterranen Kriegskulturen. Austausch, Abgrenzung und Rezeption”, Hegelstraße 59, D-55122 Mainz , Germany", + "ror_ids": [ + "https://ror.org/023b0x485" + ] + }, + { + "affiliation": "Universidade Federal do Rio Grande do Sul, Brazil", + "ror_ids": [ + "https://ror.org/041yk2d64" + ] + }, + { + "affiliation": "Hospital for Sick Children, 555 University Avenue, Room S229, Toronto", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "Sungkyunkwan University, Korea", + "ror_ids": [ + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Norwegian Environment Agency, Sluppen Trondheim Norway", + "ror_ids": [ + "https://ror.org/023jta124" + ] + }, + { + "affiliation": "Department of Epidemiology and Public Health Genetics Interdepartmental Concentration, School of Public Health, University of Michigan, Ann Arbor, Michigan 48109;", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "JPT Technology Editor", + "ror_ids": [] + }, + { + "affiliation": "Institute of Scientific and Industrial Research, Osaka University", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "Syracuse University", + "ror_ids": [ + "https://ror.org/025r5qe02" + ] + }, + { + "affiliation": "Emory University", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Genomics Core Facility, European Molecular Biology Laboratory (EMBL), 69117 Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/03mstc592" + ] + }, + { + "affiliation": "*Institute of Archaeology, Research Centre for the Humanities 4 Tóth Kálmán Str., H-1097 Budapest, Hungary", + "ror_ids": [ + "https://ror.org/03wxxbs05", + "https://ror.org/02wg15j65" + ] + }, + { + "affiliation": "Department\nof Chemical and Biomolecular Engineering, §Department of Materials Science, and ∥Frederick Seitz\nMaterials Research Laboratory, University of Illinois, 1304 West Green Street, Urbana, Illinois\n61801, United States", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Iowa City Veterans Affairs Health Care System, Research Service (151), 601 Highway 6 West, Iowa City, IA 52246, USA", + "ror_ids": [ + "https://ror.org/04hgm3062" + ] + }, + { + "affiliation": "Jiangsu Co-Innovation Centre of Efficient Processing and Utilization of Forest Resources, International Innovation Center for Forest Chemicals and Materials, College of Chemical Engineering, Nanjing Forestry University, Nanjing 210037, China", + "ror_ids": [ + "https://ror.org/03m96p165" + ] + }, + { + "affiliation": "University of Tunis El Manar, National Engineering School of Tunis, Civil Engineering Laboratory, Tunis, Tunisia", + "ror_ids": [ + "https://ror.org/03b1zjt31", + "https://ror.org/029cgt552" + ] + }, + { + "affiliation": "Department of Animal Ecology and Tropical Biology, University of Würzburg, Biocentre, 97074 Würzburg, Germany", + "ror_ids": [ + "https://ror.org/00fbnyb24" + ] + }, + { + "affiliation": "Department of Urology, Ankara Cankaya Hospital, Ankara, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Department of Cell Biology, Scripps Research Institute, La Jolla, California 92037.", + "ror_ids": [ + "https://ror.org/02dxx6824" + ] + }, + { + "affiliation": "U.S. Coast Guard", + "ror_ids": [ + "https://ror.org/00zyc7969" + ] + }, + { + "affiliation": "Department of Physics, University of Vermont, Burlington VT 05405", + "ror_ids": [ + "https://ror.org/0155zta11" + ] + }, + { + "affiliation": "Department of Anthropology, Saint Mary's University, Halifax, NS B3H 3C3, Canada", + "ror_ids": [ + "https://ror.org/010zh7098" + ] + }, + { + "affiliation": "Beijing Key Laboratory of Nonlinear Vibrations and Strength of Mechanical Engineering, College of Mechanical Engineering, Beijing University of Technology, Beijing, China 100124", + "ror_ids": [ + "https://ror.org/037b1pp87" + ] + }, + { + "affiliation": "GM Technical Center India Pvt Ltd, International Tech Park Ltd., Bangalore, India", + "ror_ids": [] + }, + { + "affiliation": "Physical Sciences\nDivision, Pacific Northwest National Laboratory, Richland, Washington 93352, United States", + "ror_ids": [ + "https://ror.org/05h992307" + ] + }, + { + "affiliation": "Department of Neuroscience, Reproductive and Dentistry Sciences University Federico II Naples Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Department of Molecular, Cellular & Developmental Biology, University of California, Santa Barbara, USA", + "ror_ids": [ + "https://ror.org/02t274463" + ] + }, + { + "affiliation": "MGIMO of the MFA of Russia", + "ror_ids": [] + }, + { + "affiliation": "University of Wisconsin-Madison, USA", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Samara National Research University", + "ror_ids": [ + "https://ror.org/05ggagb37" + ] + }, + { + "affiliation": "Department of Recreation and Leisure Studies, Brock University, Saint Catharines, ON, Canada", + "ror_ids": [ + "https://ror.org/056am2717" + ] + }, + { + "affiliation": "North China Electric Power University, Beijing, China", + "ror_ids": [ + "https://ror.org/04qr5t414" + ] + }, + { + "affiliation": "Cattedra e Divisione Clinicizzata di Urologia - Ospedale Policlinico - Verona", + "ror_ids": [] + }, + { + "affiliation": "School of Materials and Energy", + "ror_ids": [] + }, + { + "affiliation": "Department\nof Chemistry, University of Illinois at Urbana—Champaign, 600 South Mathews Avenue, Urbana, Illinois 61801, United States", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Center for Oral Rehabilitation, FTV Östergötland, Norrköping, Sweden;", + "ror_ids": [] + }, + { + "affiliation": "Ann Arbor, MI", + "ror_ids": [] + }, + { + "affiliation": "1Department of Chemistry, National Taiwan University, Taipei 106, Taiwan", + "ror_ids": [ + "https://ror.org/05bqach95" + ] + }, + { + "affiliation": "University of Pennsylvania 2 Cell Center, Department of Genetics , , Philadelphia, PA 19104-6145, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Department of Applied Chemistry, Muroran Institute of Technology", + "ror_ids": [ + "https://ror.org/04rymkk69" + ] + }, + { + "affiliation": "University of Mining and Geology \"St. Ivan Rilsky\",Department of Automation of Production Systems,Sofia,Bulgaria", + "ror_ids": [ + "https://ror.org/01z014940" + ] + }, + { + "affiliation": "Dermatology Unit, San Bortolo Hospital, Vicenza, Italy", + "ror_ids": [ + "https://ror.org/05wd86d64" + ] + }, + { + "affiliation": "Department of Organic Biomaterials; Institute of Biomaterials and Bioengineering; Tokyo Medical and Dental University; 2-3-10 Kanda-Surugadai Chiyoda Tokyo 101-0062 Japan", + "ror_ids": [ + "https://ror.org/051k3eh31" + ] + }, + { + "affiliation": "Software Systems Design, 3627 Padua Avenue, Claremont California", + "ror_ids": [] + }, + { + "affiliation": "Centre for Social Research and Methods, ANU College of Arts and Social Sciences, Australian National University, Canberra, ACT, Australia", + "ror_ids": [ + "https://ror.org/019wvm592" + ] + }, + { + "affiliation": "Biomedical science and environmental biology Kaohsiung Medical University Kaohsiung Taiwan", + "ror_ids": [ + "https://ror.org/03gk81f96" + ] + }, + { + "affiliation": "NASA Marshall Space Flight Center, SD-50 Space Plasma Physics Group, Space Science Department, Huntsville, Alabama 35812", + "ror_ids": [ + "https://ror.org/02epydz83" + ] + }, + { + "affiliation": "National Laboratory of Solid State Microstructures Jiangsu Key Laboratory of Artificial Functional Materials Department of Materials Science and Engineering College of Engineering and Applied Sciences Nanjing University Nanjing 210093 China", + "ror_ids": [ + "https://ror.org/01rxvg760", + "https://ror.org/05ryc2b20" + ] + }, + { + "affiliation": "Institute of Cognitive Systems, Technical University of Munich,Department of Electrical and Computer Engineering,Munich,Germany,80333", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Charles University, Faculty of Mathematics and Physics, V Holešovičkách 2, 18000 Prague 8, Czech Republic", + "ror_ids": [ + "https://ror.org/024d6js02" + ] + }, + { + "affiliation": "International Centre for Wavelet Analysis and Its Applications, Logistical Engineering University, Chongqing 400016, P.R. China", + "ror_ids": [ + "https://ror.org/02syyrn67" + ] + }, + { + "affiliation": "Department of Mathematics; Cornell University; Ithaca New York 14853-7901 U.S.A.", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Surgery, Washington University School of Medicine in St. Louis, St. Louis, Missouri.", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Department of Psychology, Universitat Jaume I, Castellón de la Plana, Spain", + "ror_ids": [ + "https://ror.org/02ws1xc11" + ] + }, + { + "affiliation": "ONDOKUZ MAYIS ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/028k5qw24" + ] + }, + { + "affiliation": "Department of Otolaryngology, School of Medicine, Kyung Hee University, Seoul, Korea.", + "ror_ids": [ + "https://ror.org/01zqcg218" + ] + }, + { + "affiliation": "Department of Electronic Engineering, Iwaki-Meisei University, Iwaki, Fukushima 970", + "ror_ids": [ + "https://ror.org/04v5axh10" + ] + }, + { + "affiliation": "Duke NUS Medical School, Singapore.", + "ror_ids": [ + "https://ror.org/02j1m6098" + ] + }, + { + "affiliation": "Institut für Physikalische Chemie der Universität München, D-8000 München 2", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "University of Florence, Department of Industrial Engineering", + "ror_ids": [ + "https://ror.org/04jr1s763" + ] + }, + { + "affiliation": "Atmospheric, Oceanic and Planetary Physics, University of Oxford, Oxford, United Kingdom", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Department of Chemistry, Texas Christian University, Fort Worth, TX 76129", + "ror_ids": [ + "https://ror.org/054b0b564" + ] + }, + { + "affiliation": "NIT Silchar,Department of E&I,Silchar,Assam", + "ror_ids": [ + "https://ror.org/001ws2a36" + ] + }, + { + "affiliation": "School of Information and Electronic, Beijing Institute of Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "Núcleo Milenio Paleoclima Centro de Estudios del Clima y la Resiliencia, and Departamento de Ciencias Ecológicas Santiago Universidad de Chile Chile", + "ror_ids": [ + "https://ror.org/047gc3g35" + ] + }, + { + "affiliation": "Norman Bridge Laboratory of Physics, Pasadena, Cal.", + "ror_ids": [] + }, + { + "affiliation": "Key Laboratory of Molecular Epigenetics of the Ministry of Education (MOE), Northeast Normal University, Changchun 130024, People's Republic of China", + "ror_ids": [ + "https://ror.org/02rkvz144" + ] + }, + { + "affiliation": "Jardim Botânico do Rio de Janeiro: Jardim Botanico do Rio de Janeiro", + "ror_ids": [ + "https://ror.org/033xtdz52" + ] + }, + { + "affiliation": "GeoForschungsZentrum Potsdam (GFZ), Department Geodesy and Remote Sensing", + "ror_ids": [ + "https://ror.org/04z8jg394" + ] + }, + { + "affiliation": "Department of Otolaryngology-Head and Neck Surgery; National Defense Medical College; Saitama Japan", + "ror_ids": [ + "https://ror.org/02e4qbj88" + ] + }, + { + "affiliation": "HOSPITAL FOR SICK CHILDREN, Neonatology, TORONTO, Canada", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "Midland Counties Dairy Ltd., Birmingham", + "ror_ids": [] + }, + { + "affiliation": "ICI Pharmaceuticals Division, Alderley Park, Macclesfield, Cheshire, SK10 2TG, UK", + "ror_ids": [] + }, + { + "affiliation": "IK4-Ikerlan Research Center, Arrasate, Spain", + "ror_ids": [ + "https://ror.org/03hp1m080" + ] + }, + { + "affiliation": "University of Edinburgh Edinburgh United Kingdom", + "ror_ids": [ + "https://ror.org/01nrxwf90" + ] + }, + { + "affiliation": "UWA School of Agriculture & Environment, and the UWA Institute of Agriculture, The University of Western Australia, Perth, Australia", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "Department of Plant and Environmental Sciences Weizmann Institute of Science Rehovot Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "From the Department of Medicine, David Geffen School of Medicine at UCLA.", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Centre for Sociological Research, Leuven, Belgium", + "ror_ids": [] + }, + { + "affiliation": "School of Human Kinetics, University of Ottawa, Ottawa, Canada", + "ror_ids": [ + "https://ror.org/03c4mmv16" + ] + }, + { + "affiliation": "Universidad Complutense de Madrid", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Mexico", + "ror_ids": [] + }, + { + "affiliation": "University of Turin, Istituto di Chimica Agraria, via Pietro Giuria 15,10126 Turin, Italy", + "ror_ids": [ + "https://ror.org/048tbm396" + ] + }, + { + "affiliation": "Richard Stockton State College", + "ror_ids": [ + "https://ror.org/0442n1j98" + ] + }, + { + "affiliation": "Matin Kholmatov is an economist in World Bank.", + "ror_ids": [ + "https://ror.org/00ae7jd04" + ] + }, + { + "affiliation": "Politecnico di Milano Dipartimento di Ingegneria Civile e Ambientale", + "ror_ids": [ + "https://ror.org/01nffqt88" + ] + }, + { + "affiliation": "Blackebergs Gymnasium, Wergelandsgatan 22, SE 168 48 Bromma, Sweden", + "ror_ids": [] + }, + { + "affiliation": "Department of Internal Medicine, Faculty of Medicine, University of Prishtina, Prishtina, Kosovo", + "ror_ids": [ + "https://ror.org/05t3p2g92" + ] + }, + { + "affiliation": "Industrial University of Tyumen", + "ror_ids": [ + "https://ror.org/02kyh9583" + ] + }, + { + "affiliation": "The Institute for the Study of Rate Processes, University of Utah, Salt Lake City, Utah", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "1 Syracuse University, Syracuse, New York", + "ror_ids": [ + "https://ror.org/025r5qe02" + ] + }, + { + "affiliation": "Innovation Academy for Precision Measurement Science and Technology, Chinese Academy of Sciences", + "ror_ids": [ + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "University of Leeds", + "ror_ids": [ + "https://ror.org/024mrxd33" + ] + }, + { + "affiliation": "London", + "ror_ids": [] + }, + { + "affiliation": "Michigan Technological University", + "ror_ids": [ + "https://ror.org/0036rpn28" + ] + }, + { + "affiliation": "Idaho National Laboratory (INL), Idaho Falls, ID (United States)", + "ror_ids": [ + "https://ror.org/00ty2a548" + ] + }, + { + "affiliation": "Dipartimento di Chimica e Biologia, Università degli Studi di Salerno, via Giovanni Paolo II 132, 84084 Fisciano, Salerno, Italy", + "ror_ids": [ + "https://ror.org/0192m2k53" + ] + }, + { + "affiliation": "TAIYO YUDEN CO., LTD.", + "ror_ids": [ + "https://ror.org/001m9wh67" + ] + }, + { + "affiliation": "1Uz Leuven, Leuven, Vlaams Brabant, Belgium; Interuniversity Centre for Biostatistics and Statistical Bioinformatics, Hasselt, Limburg, Belgium", + "ror_ids": [ + "https://ror.org/0424bsv16" + ] + }, + { + "affiliation": "Centre for Agriculture and Biosciences International (CABI) Nairobi Kenya", + "ror_ids": [ + "https://ror.org/00zy1mb15" + ] + }, + { + "affiliation": "Pediatric Post-Graduate School, University of Modena and Reggio Emilia, 41125 Modena, Italy", + "ror_ids": [ + "https://ror.org/02d4c4y02" + ] + }, + { + "affiliation": "Department of Medicine, University of Maryland at Baltimore, USA.", + "ror_ids": [ + "https://ror.org/04rq5mt64" + ] + }, + { + "affiliation": "College of Information Engineering, Weifang Vocational College, Weifang 261041, P. R. China", + "ror_ids": [] + }, + { + "affiliation": "Corporate Solid State Laboratory, Varian Associates, Palo Alto, California 94303", + "ror_ids": [ + "https://ror.org/05yab6874" + ] + }, + { + "affiliation": "Department of Public Health and Primary Care Leiden University Medical Centre Leiden the Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17", + "https://ror.org/027bh9e22" + ] + }, + { + "affiliation": "b Cooperative Research Centre for Contamination Assessment and Remediation of Environments, Mawson Lakes Boulevard , Mawson Lakes , Australia", + "ror_ids": [ + "https://ror.org/02nadej66" + ] + }, + { + "affiliation": "Universidade Federal de Mato Grosso do Sul, Brazil", + "ror_ids": [ + "https://ror.org/0366d2847" + ] + }, + { + "affiliation": "Cellular and Molecular Biochemistry Research Laboratory (151), Minneapolis Veterans Affairs Medical Center, and Department of Laboratory Medicine and Pathology and Masonic Cancer Center, University of Minnesota, Minneapolis, Minnesota 55417", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "Brigham and Women's Hosp, Boston, MA", + "ror_ids": [ + "https://ror.org/04b6nzv94" + ] + }, + { + "affiliation": "National Research Tomsk Polytechnic University", + "ror_ids": [ + "https://ror.org/00a45v709" + ] + }, + { + "affiliation": "Division of Digestive Health and Liver Diseases Miller School of Medicine University of Miami Miami Florida USA", + "ror_ids": [ + "https://ror.org/02dgjyy92" + ] + }, + { + "affiliation": "Community and Regional Planning, University of Nebraska-Lincoln, Lincoln, NE", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "School of Health and Rehabilitation Sciences, The University of Queensland, Brisbane, Australia", + "ror_ids": [ + "https://ror.org/00rqy9422" + ] + }, + { + "affiliation": "Onderwijsontw & Onderwijsresearch", + "ror_ids": [] + }, + { + "affiliation": "1Professor Emeritus of Celtic, University of Glasgow", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "Department of Thyroid Surgery, Henan Provincial People's Hospital, Zhengzhou, Henan 450000, P.R. China", + "ror_ids": [ + "https://ror.org/03f72zw41" + ] + }, + { + "affiliation": "Neutron Science Center Songshan Lake Materials Laboratory Dongguan Guangdong 523800 China", + "ror_ids": [ + "https://ror.org/020vtf184" + ] + }, + { + "affiliation": "International Islamic University Malaysia", + "ror_ids": [ + "https://ror.org/03s9hs139" + ] + }, + { + "affiliation": "Graduate Institute of Clinical Medical Sciences, College of Medicine, Chang Gung University, Taoyuan, Taiwan; and", + "ror_ids": [ + "https://ror.org/00d80zx46" + ] + }, + { + "affiliation": "Department of Biological Sciences, Purdue University, West Lafayette, Indiana 47907-1392", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Department of Life Sciences, Natural History Museum, London, SW7 5BD, United Kingdom.", + "ror_ids": [ + "https://ror.org/039zvsn29" + ] + }, + { + "affiliation": "University of Tasmania School of Pharmacy, Hobart, Australia", + "ror_ids": [ + "https://ror.org/01nfmeh72" + ] + }, + { + "affiliation": "Institute of Experimental Gas Dynamics and Explosion Physics", + "ror_ids": [] + }, + { + "affiliation": "Department of Internal Medicine and Endocrinology, Herlev University Hospital, DK 2730, Herlev, Denmark", + "ror_ids": [] + }, + { + "affiliation": "Department of Rheumatology, Sheffield Teaching Hospitals, Sheffield, UNITED KINGDOM", + "ror_ids": [] + }, + { + "affiliation": "Federal State-Financed Educational Institution of Higher Learning \"Komsomolsk-na-Amure State University\"", + "ror_ids": [ + "https://ror.org/03fws8b96" + ] + }, + { + "affiliation": "Department of Medicine, Ninewells Hospital and Medical School, Dundee, Scotland, U.K.", + "ror_ids": [ + "https://ror.org/039c6rk82" + ] + }, + { + "affiliation": "Institute of Education, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Specialist Registrar, Department of Otorhinolaryngology and Head and Neck Surgery, John Radcliffe Hospital, Oxford", + "ror_ids": [ + "https://ror.org/0080acb59" + ] + }, + { + "affiliation": "Department of Anatomy, University of California, San Francisco, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Universitat Politecnica de Catalunya, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/03mb6wj31" + ] + }, + { + "affiliation": "Michelson Laboratory, Lake, U. S. Naval Ordnance Test Station, Inyokern, China Lake, Calif.", + "ror_ids": [] + }, + { + "affiliation": "Technical University of Ostrava", + "ror_ids": [ + "https://ror.org/05x8mcb75" + ] + }, + { + "affiliation": "State Key Laboratory of Crop Biology College of Agronomy Shandong Agricultural University Tai an Shandong PR China", + "ror_ids": [ + "https://ror.org/02ke8fw32", + "https://ror.org/04axhqr63" + ] + }, + { + "affiliation": "Naval Undersea Warfare Center, 1176 Howell Street, Newport, Rhode Island 02841", + "ror_ids": [ + "https://ror.org/04bnxa153" + ] + }, + { + "affiliation": "HARRAN ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/057qfs197" + ] + }, + { + "affiliation": "School of Electrical and Computer Engineering, Purdue University, West Lafayette, IN, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Computer & System Section, Electrical Engineering Department, Aswan Faculty of Engineering, South Valley University, Aswan 81542, Egypt", + "ror_ids": [ + "https://ror.org/00jxshx33" + ] + }, + { + "affiliation": "1College of Life Sciences, National Chung Hsing University, Taichung, Taiwan.", + "ror_ids": [ + "https://ror.org/05vn3ca78" + ] + }, + { + "affiliation": "Bachelor’s Degree in Animal Science, Federal University of Technology–Parana, Dois Vizinhos 85660-000, Brazil", + "ror_ids": [ + "https://ror.org/002v2kq79" + ] + }, + { + "affiliation": "University Department of Pharmacology, Oxford University, Oxford OX1 3QT, U.K.", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Institut für Anorganische Chemie der Universität Göttingen, Tammannstrasse 4, D-37077 Göttingen, Germany", + "ror_ids": [ + "https://ror.org/01y9bpm73" + ] + }, + { + "affiliation": "Key Laboratory of Recycling and Eco-Treatment of Waste Biomass of Zhejiang Province, School of Environment and Natural Resources, Zhejiang University of Science and Technology, Hangzhou 310023, China", + "ror_ids": [ + "https://ror.org/05mx0wr29" + ] + }, + { + "affiliation": "Centre for Nutrition, Prevention and Health Services, National Institute for Public Health and the Environment, Bilthoven, The Netherlands", + "ror_ids": [ + "https://ror.org/01cesdt21" + ] + }, + { + "affiliation": "philadelphia, PA", + "ror_ids": [] + }, + { + "affiliation": "Dipartimento di Fisica dell’Universitá−Corso Italia, 57-I95129, Catania, Italy", + "ror_ids": [] + }, + { + "affiliation": "Key Laboratory of Horticultural Plant Biology (Ministry of Education), College of Horticulture and Forestry Science Huazhong Agricultural University Wuhan, 430070 China", + "ror_ids": [ + "https://ror.org/023b72294" + ] + }, + { + "affiliation": "Medical Oncology, Santa Chiara Hospital, Trento, Italy", + "ror_ids": [ + "https://ror.org/007x5wz81" + ] + }, + { + "affiliation": "St. Petersburg State University, 198504 St. Petersburg, Russia", + "ror_ids": [ + "https://ror.org/023znxa73" + ] + }, + { + "affiliation": "Department of Mathematics [Univ California San Diego]", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Department of Plant and Microbial Biology University of Zürich Zollikerstrasse 107 Zürich 8008 Switzerland", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "c UNESCO-ICIWaRM, Institute for Water Resources , Alexandria, Virginia, 22315, USA", + "ror_ids": [] + }, + { + "affiliation": "Texas Transportation Institute, Texas A&M University System, College Station, TX 77843-3135", + "ror_ids": [ + "https://ror.org/0034eay46" + ] + }, + { + "affiliation": "Laboratory of Physiology, University of Leuven, Campus Gasthuisberg, Belgium.", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "National Innovation Institute of Defense Technology, China", + "ror_ids": [] + }, + { + "affiliation": "Department of Biological Chemistry and Molecular Pharmacology, Harvard Medical School, Boston, Massachusetts 02115, and Center for Hemostasis and Thrombosis Research, Division of Hematology/Oncology, New England Medical Center, and Departments of Medicine and Biochemistry, Tufts University School of Medicine, Boston, Massachusetts 02111", + "ror_ids": [ + "https://ror.org/05wvpxv85", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, National University of Singapore , Singapore 117583", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Leibnizstr. 23, D-41061 Mönchengladbach", + "ror_ids": [] + }, + { + "affiliation": "Biblical Studies, University of Sheffield", + "ror_ids": [ + "https://ror.org/05krs5044" + ] + }, + { + "affiliation": "Biotechnology Laboratory, University of British Columbia, Vancouver, British Columbia, Canada V6T 1Z3", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "PROFESSOR OF EDUCATION, TEACHERS COLLEGE", + "ror_ids": [] + }, + { + "affiliation": "Cons. Engr., Wargon, Chapman & Assocs., Sydney, New South Wales, Australia.", + "ror_ids": [] + }, + { + "affiliation": "Department of Pediatrics (E.C.K., P.C.W.), University of Texas Southwestern Medical Center, Dallas, Texas 75390", + "ror_ids": [ + "https://ror.org/05byvp690" + ] + }, + { + "affiliation": "Basque Center for Materials, Applications & Nanostructures (BCMaterials), Technological Park of Zamudio, Camino de Ibaizabal, Bndg. 500-first, 48160 Derio, Spain", + "ror_ids": [ + "https://ror.org/005hdgp31" + ] + }, + { + "affiliation": "Department of Pathology, Bacteriology and Avian Diseases, Faculty of Veterinary Medicine, Ghent University, Salisburylaan 133, B9820 Merelbeke, Belgium.", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Universidad Técnica de Machala, Programa de maestría en Medicina Veterinaria, mención Clínica y Cirugía de Pequeñas Especies. Machala, El Oro, Ecuador - RenatoVetDerm. Davie, Florida, Estados Unidos de América", + "ror_ids": [ + "https://ror.org/036zk8k10" + ] + }, + { + "affiliation": "Parsons Brinckerhoff, New York, NY, USA", + "ror_ids": [ + "https://ror.org/00cyfck94" + ] + }, + { + "affiliation": "Director, Professional Engineering Practice Liaison Program, Univ. of Washington, Box 532700, Seattle, WA 98195-2700.", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "The Norwegian University of Science and Technology and The Norwegian Public Roads Administration", + "ror_ids": [ + "https://ror.org/05xg72x27", + "https://ror.org/009kqch10" + ] + }, + { + "affiliation": "La Trobe University", + "ror_ids": [ + "https://ror.org/01rxfrp27" + ] + }, + { + "affiliation": "UPF: Universitat Pompeu Fabra", + "ror_ids": [ + "https://ror.org/04n0g0b29" + ] + }, + { + "affiliation": "University of California Davis, Davis, CA, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Huazhong University of Science and Technology,State Key Laboratory of Advanced Electromagnetic Engineering and Technology School of Electrical and Electronic Engineering,Wuhan,China", + "ror_ids": [ + "https://ror.org/00p991c53", + "https://ror.org/01mr5b726" + ] + }, + { + "affiliation": "SOITEC, Bernin, France", + "ror_ids": [ + "https://ror.org/00s730510" + ] + }, + { + "affiliation": "University of Lincoln", + "ror_ids": [ + "https://ror.org/03yeq9x20" + ] + }, + { + "affiliation": "Ruhr-University Bochum", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "EEUSP, Brasil", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurobiology, Care Sciences and Society Divison of Physiotherapy Karolinska Institutet Stockholm Sweden", + "ror_ids": [ + "https://ror.org/056d84691" + ] + }, + { + "affiliation": "Department of Social Welfare Ghent University, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Department of Bacteriology and Immunology, Harvard Medical School From the , and the , Boston, Mass.", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Indiana University, Bloomington, IN 47405", + "ror_ids": [ + "https://ror.org/01kg8sb98", + "https://ror.org/02k40bc56" + ] + }, + { + "affiliation": "Department of Chemistry, Westmont College, Santa Barbara, California 93108", + "ror_ids": [ + "https://ror.org/00xhcz327" + ] + }, + { + "affiliation": "Department of Chemistry Massachusetts Institute of Technology Cambridge MA 02139 USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Departments of Computer Science, University of Hertfordshire, College Lane, Hatfield, AL10 9AB, United Kingdom", + "ror_ids": [ + "https://ror.org/0267vjk41" + ] + }, + { + "affiliation": "Department of Neurology Aarhus University Hospital Aarhus Denmark", + "ror_ids": [ + "https://ror.org/040r8fr65" + ] + }, + { + "affiliation": "University of California, Los Angeles", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Saitama Prefectural Institute of Public Health", + "ror_ids": [ + "https://ror.org/03ykm7q16" + ] + }, + { + "affiliation": "University of Bahrain, Bahrain", + "ror_ids": [ + "https://ror.org/0317ekv86" + ] + }, + { + "affiliation": "Biological Laboratory, Fordham University, New York City", + "ror_ids": [ + "https://ror.org/03qnxaf80" + ] + }, + { + "affiliation": "Department of Medical Genetics, School of Medicine, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Faculty of Social Sciences, University of Helsinki Helsinki, Finland", + "ror_ids": [ + "https://ror.org/040af2s02" + ] + }, + { + "affiliation": "Institut für Molekulare Mikrobiologie und Biotechnologie, Westfälische Wilhelms-Universität Münster, Corrensstrasse 3, 48149 Münster, Germany", + "ror_ids": [ + "https://ror.org/00pd74e08" + ] + }, + { + "affiliation": "Professor of Marketing, College of Business Administration, University of Denver.", + "ror_ids": [ + "https://ror.org/04w7skc03" + ] + }, + { + "affiliation": "Department of Management and Marketing The University of Melbourne VIC 3010 Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Metallographischen Laboratorium der Universität Göttingen; Göttingen", + "ror_ids": [ + "https://ror.org/01y9bpm73" + ] + }, + { + "affiliation": "Lehrstuhl für Experimentelle Physik EIIb, Universität Dortmund, Otto-Hahn-Str. 4, 44221 Dortmund, Germany", + "ror_ids": [ + "https://ror.org/01k97gp34" + ] + }, + { + "affiliation": "University of Tuebingen, 70376 Stuttgart, Germany;", + "ror_ids": [ + "https://ror.org/03a1kwz48" + ] + }, + { + "affiliation": "P. R. China", + "ror_ids": [] + }, + { + "affiliation": "Thinking Machines Corp., Cambridge, MA 02142, USA", + "ror_ids": [] + }, + { + "affiliation": "Intelligent Modelling and Analysis Group, School of Computer Science, University of Nottingham, Nottingham, UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Division of Plastic and Reconstructive Surgery, Northwestern University, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "The University of Texas MD Anderson Cancer Center, Houston, TX", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Centre for Sleep Research, The University of South Australia, The Queen Elizabeth Hospital, Woodville, South Australia 5011; and", + "ror_ids": [ + "https://ror.org/01p93h210", + "https://ror.org/00x362k69" + ] + }, + { + "affiliation": "Department of Chemistry and Chemical Biology, Harvard University, Cambridge, Massachusetts 02138;", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "School of Mathematical Sciences Huaqiao University Quanzhou 362021 Fujian China", + "ror_ids": [ + "https://ror.org/03frdh605" + ] + }, + { + "affiliation": "Laboratoire de pédagogie expérimentale, Université de Liège", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "Changchun Institute of Applied Chemistry State Key Laboratory of Polymer Physics and Chemistry, , Chinese Academy of Sciences, Graduate School of the Chinese Academy of Sciences, Changchun 130022, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05vy7se14", + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "Sound ID and SoundHawk 2595 East Bayshore Rd., Palo Alto, CA 94303", + "ror_ids": [] + }, + { + "affiliation": "University of Szeged Department of Mineralogy, Geochemistry and Petrology H‐6701 Szeged P.O. Box 651 Hungary", + "ror_ids": [ + "https://ror.org/01pnej532" + ] + }, + { + "affiliation": "Boston Children's Hospital Division of Immunology", + "ror_ids": [ + "https://ror.org/00dvg7y05" + ] + }, + { + "affiliation": "SANKEN (The Institute of Scientific and Industrial Research), Osaka University, 8-1 Mihogaoka, Ibaraki, Osaka 567-0047, Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "Escola Superior de Ciências da Saúde, Brazil", + "ror_ids": [ + "https://ror.org/04qjmsq15" + ] + }, + { + "affiliation": "Multi‐Functional Nano/Bio Electronics Laboratory Kyung Hee University Gyeonggi 17104 Korea", + "ror_ids": [ + "https://ror.org/01zqcg218" + ] + }, + { + "affiliation": "Institute for Infocomm Research, Singapore", + "ror_ids": [ + "https://ror.org/053rfa017" + ] + }, + { + "affiliation": "Contribution from the Department of Chemistry, The Pennsylvania State University, University Park, Pennsylvania 16802", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Associate Professor, Department of Neurosurgery, Tohoku University, School of Medicine; Sendai, Japan", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "Thomas Jefferson University, Philadelphia, PA;", + "ror_ids": [ + "https://ror.org/00ysqcn41" + ] + }, + { + "affiliation": "National Clinical Research, 2809 Emerywood Parkway, Suite 140, Richmond, VA 23294", + "ror_ids": [ + "https://ror.org/03ddkvp86" + ] + }, + { + "affiliation": "NYS Institute for Basic Research Staten Island NY USA", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurosurgery, Lianyungang Hospital of Xuzhou Medical College; Jiang Su, China", + "ror_ids": [ + "https://ror.org/04fe7hy80" + ] + }, + { + "affiliation": "Nanyang Technological University", + "ror_ids": [ + "https://ror.org/02e7b5302" + ] + }, + { + "affiliation": "Xi'an University of Science and Technology", + "ror_ids": [ + "https://ror.org/046fkpt18" + ] + }, + { + "affiliation": "Shenzhen Urban Public Safety and Technology Institute, Shenzhen 518046, Guangdong, China", + "ror_ids": [] + }, + { + "affiliation": "Liverpool John Moores University", + "ror_ids": [ + "https://ror.org/04zfme737" + ] + }, + { + "affiliation": "Centro Andaluz de Medio Ambiente, Universidad de Granada, Avda. del Mediterráneo s/n, Granada, 18006, Spain", + "ror_ids": [ + "https://ror.org/04njjy449" + ] + }, + { + "affiliation": "Universidad Nacional, Colombia", + "ror_ids": [ + "https://ror.org/059yx9a68" + ] + }, + { + "affiliation": "Department of Biomaterials, Faculty of Materials Science and Ceramics, AGH University of Science and Technology, Krakow, Poland", + "ror_ids": [ + "https://ror.org/00bas1c41" + ] + }, + { + "affiliation": "China Ship Scientific Research Center, Wuxi, China", + "ror_ids": [] + }, + { + "affiliation": "Department of Cardiology, NuHealth, Nassau University Medical Center, East Meadow, NY, USA.", + "ror_ids": [ + "https://ror.org/03cc0mm23" + ] + }, + { + "affiliation": "Canviro Consultants, Division of CH2M-Hill Eng. Ltd., Waterloo, Ontario N2J 1P8, Canada", + "ror_ids": [] + }, + { + "affiliation": "University of Connecticut", + "ror_ids": [ + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "Centre for Health Services Research, Builiding 33, Princess Alexandra Hospital, The University of Queensland, Brisbane, Australia", + "ror_ids": [ + "https://ror.org/00rqy9422", + "https://ror.org/04mqb0968" + ] + }, + { + "affiliation": "Rochester Inst. of Technology, NY", + "ror_ids": [ + "https://ror.org/00v4yb702" + ] + }, + { + "affiliation": "Department of Biology, 258 Science Building, Eastern Washington University, Cheney, WA 99004", + "ror_ids": [ + "https://ror.org/002g57a93" + ] + }, + { + "affiliation": "The Gene and Linda Voiland School of Chemical Engineering and Bioengineering, Washington State University, Pullman, Washington, USA", + "ror_ids": [ + "https://ror.org/05dk0ce17" + ] + }, + { + "affiliation": "Division of Pulmonary and Critical Care Medicine, Department of Medicine, and", + "ror_ids": [] + }, + { + "affiliation": "a Faculty of Engineering, Yamagata University , Jonan 4-3-16, Yonezawa , 992-8510 , Japan", + "ror_ids": [ + "https://ror.org/00xy44n04" + ] + }, + { + "affiliation": "Department of Chemistry and\nBiochemistry, Florida State University, 95 Chieftan Way, 310 DLC, Tallahassee, Florida 32306, United States", + "ror_ids": [ + "https://ror.org/05g3dte14" + ] + }, + { + "affiliation": "Hi-Tec Systems, Inc.", + "ror_ids": [] + }, + { + "affiliation": "Minneapolis, MN", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemistry, Saint Louis University, 3501 Laclede Avenue, Saint\nLouis, Missouri 63103, United States", + "ror_ids": [ + "https://ror.org/01p7jjy08" + ] + }, + { + "affiliation": "Carbide and Carbon Chemicals Corporation, Oak Ridge, Tennessee", + "ror_ids": [] + }, + { + "affiliation": "Internistische Praxengemeinschaft, Gastroenterology, Oldenburg, Germany", + "ror_ids": [] + }, + { + "affiliation": "Gastroenterology Hospital Exequiel Gonzalez Cortes Santiago Chile", + "ror_ids": [] + }, + { + "affiliation": "Arizona Cancer Center, Tucson, AZ", + "ror_ids": [] + }, + { + "affiliation": "Charles River Associates, John Hancock Tower, 200 Clarendon Street, Boston, Massachusetts 02116, USA", + "ror_ids": [ + "https://ror.org/04enbdd69" + ] + }, + { + "affiliation": "First Saint Petersburg State Medical University n. a. I. P. Pavlov; Institute for Experimental Medicine", + "ror_ids": [ + "https://ror.org/04g525b43" + ] + }, + { + "affiliation": "University North, Jurja Krizanica 31b, 42000 Varazdin, Croatia", + "ror_ids": [ + "https://ror.org/01afbkc02" + ] + }, + { + "affiliation": "Stagiaire postdoctorale, Département de psychologie, Université du Québec à Trois-Rivières, elisabeth.godbout@uqtr.ca", + "ror_ids": [ + "https://ror.org/02xrw9r68" + ] + }, + { + "affiliation": "Department of Psychology, 2Department of Pediatrics, 3Neuroscience Program, 4Department of Human Genetics, University of Michigan, Ann Arbor, MI, USA, 5Department of Psychiatry, Weill Cornell Medical College, New York, NY, USA, and 6Department of Psychiatry and 7Center for Human Growth and Development, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Technology Development Department, Bioprocess Division Asahi Kasei Medical Co. Ltd. Nobeoka Miyazaki Prefecture Japan", + "ror_ids": [ + "https://ror.org/018wp0236" + ] + }, + { + "affiliation": "Emory University and Georgia Institute of Technology", + "ror_ids": [ + "https://ror.org/01zkghx44", + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Division of Economics of Agricultural Cooperatives Humboldt‐Universitat zu Berlin Germany", + "ror_ids": [ + "https://ror.org/01hcx6992" + ] + }, + { + "affiliation": "School of Civil Engineering, The University of Sydney, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Graduate School of Energy and Environment Seoul National University of Science and Technology Seoul Republic of Korea", + "ror_ids": [ + "https://ror.org/00chfja07" + ] + }, + { + "affiliation": "Laboratory of Oncology, IRCCS “Casa Sollievo della Sofferenza” Hospital, San Giovanni Rotondo, Italy", + "ror_ids": [ + "https://ror.org/00md77g41", + "https://ror.org/04tfzc498" + ] + }, + { + "affiliation": "Department of Applied Chemistry, National Chi Nan University, No. 302 University Road, Puli, Nantou 54561, Taiwan, R.O.C", + "ror_ids": [ + "https://ror.org/03ha6v181" + ] + }, + { + "affiliation": "Hubei Key Laboratory for Heavy Rain Monitoring and Warning Research Institute of Heavy Rain, China Meteorological Administration Wuhan China", + "ror_ids": [ + "https://ror.org/00bx3rb98" + ] + }, + { + "affiliation": "Department of MedicineUniversity of California San DiegoLa Jolla, CA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Engineering Services, M. E. Simpson Company, Valparaiso, IN.", + "ror_ids": [] + }, + { + "affiliation": "Technical and Macromolecular Chemistry Paderborn University Warburger Str. 100 33098 Paderborn Germany", + "ror_ids": [ + "https://ror.org/058kzsd48" + ] + }, + { + "affiliation": "Astrodynamics and Control Laboratory, Department of Astronomy, Yonsei University, Seoul 03722, Republic of Korea", + "ror_ids": [ + "https://ror.org/01wjejq96" + ] + }, + { + "affiliation": "YEDİTEPE ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/025mx2575" + ] + }, + { + "affiliation": "Laboratory of Animal Germplasm Conservation–LCGA, Department of Animal Sciences, Universidade Federal Rural do Semi-Árido (UFERSA), Mossoró, Brazil", + "ror_ids": [ + "https://ror.org/05x2svh05" + ] + }, + { + "affiliation": "Beijing University of Posts and Telecommunications,Beijing,China,100876", + "ror_ids": [ + "https://ror.org/04w9fbh59" + ] + }, + { + "affiliation": "Janssen Research & Development, Spring House, PA.", + "ror_ids": [] + }, + { + "affiliation": "Department of Anthropology, University of Wisconsin-Milwaukee, USA", + "ror_ids": [ + "https://ror.org/031q21x57" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology Hyogo College of Medicine Hyogo Japan", + "ror_ids": [ + "https://ror.org/001yc7927" + ] + }, + { + "affiliation": "LG Electronics", + "ror_ids": [ + "https://ror.org/02b948n83" + ] + }, + { + "affiliation": "Drexel University School of Public Health, Philadelphia, United States of America", + "ror_ids": [ + "https://ror.org/04bdffz58" + ] + }, + { + "affiliation": "Department of Pharmaceutical Outcomes and Policy, University of Florida College of Pharmacy, Gainesville", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Washington University in St. Louis", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Department of ECEThiagarajar College of EngineeringMaduraiTamil NaduIndia", + "ror_ids": [] + }, + { + "affiliation": "Department of Molecular Bacteriology, Helmholtz Centre for Infection Research (HZI), Braunschweig, Germany", + "ror_ids": [ + "https://ror.org/03d0p2685" + ] + }, + { + "affiliation": "University of Miami Rosenstiel School of Marine and Atmospheric Science, 4600 Rickenbacker Causeway, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/02dgjyy92" + ] + }, + { + "affiliation": "Department of Applied Mathematics, Delhi Technological University, Rohini, New Delhi 110042, India.", + "ror_ids": [ + "https://ror.org/01ztcvt22" + ] + }, + { + "affiliation": "Vascular Cognitive Impairment and Neurodegeneration Program, Center for Geroscience and Healthy Brain Aging/Reynolds Oklahoma Center on Aging, Department of Biochemistry and Molecular Biology, University of Oklahoma Health Sciences Center, Oklahoma City, OK, USA", + "ror_ids": [ + "https://ror.org/0457zbj98" + ] + }, + { + "affiliation": "a University of Maryland , College Park, Maryland, USA", + "ror_ids": [ + "https://ror.org/047s2c258" + ] + }, + { + "affiliation": "Pathology, Louisiana State University Health Sciences Center, and", + "ror_ids": [ + "https://ror.org/05ect4e57", + "https://ror.org/01qv8fp92" + ] + }, + { + "affiliation": "Ospedale San Raffaele, Neuroimaging Research Unit Milan Italy", + "ror_ids": [ + "https://ror.org/039zxt351" + ] + }, + { + "affiliation": "College of Computer Science and Information Technology, Jazan University,Department of Computer Science,Jizan,Kingdom of Saudi Arabia", + "ror_ids": [ + "https://ror.org/02bjnq803" + ] + }, + { + "affiliation": "Concordia University Wisconsin", + "ror_ids": [ + "https://ror.org/04k83g518" + ] + }, + { + "affiliation": "Tokyo Metropolitan University", + "ror_ids": [ + "https://ror.org/00ws30h19" + ] + }, + { + "affiliation": "Graduate School of Business and Law, RMIT University, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/04ttjf776" + ] + }, + { + "affiliation": "University of Central Florida,Center for Research in Computer Vision", + "ror_ids": [ + "https://ror.org/036nfer12" + ] + }, + { + "affiliation": "GAMMA Remote Sensing Research and Consulting AG, Gümligen, Switzerland", + "ror_ids": [ + "https://ror.org/05spbxe41" + ] + }, + { + "affiliation": "Department of Clinical Immunology, University Hospital Alexandrovska, Bulgaria", + "ror_ids": [ + "https://ror.org/04b8y3f13" + ] + }, + { + "affiliation": "From the Department of Surgery, Division of Pediatric Urology, Hospital for Sick Children, Toronto, Ontario, Canada", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "Institute of Endocrinology and Diabetes, The Children's Hospital at Westmead, Sydney, NSW.", + "ror_ids": [ + "https://ror.org/05k0s5494" + ] + }, + { + "affiliation": "Immunoallergology Department Hospital de Santa Maria Lisbon Portugal", + "ror_ids": [ + "https://ror.org/05bz1tw26" + ] + }, + { + "affiliation": "Wright State University, Dayton, Ohio", + "ror_ids": [ + "https://ror.org/04qk6pt94" + ] + }, + { + "affiliation": "Department of Gynecology, Obstetrics & Reproductive Health Bangabandhu Sheikh Mujibur Rahman Agricultural University Gazipur Bangladesh", + "ror_ids": [ + "https://ror.org/04tgrx733" + ] + }, + { + "affiliation": "Federal Reserve Bank of Cleveland", + "ror_ids": [ + "https://ror.org/01wxdvj03" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Manchester University. Graduate of the Institution.", + "ror_ids": [ + "https://ror.org/027m9bs27" + ] + }, + { + "affiliation": "Swedish Institute of Space Physics Uppsala Sweden", + "ror_ids": [ + "https://ror.org/043kppn11" + ] + }, + { + "affiliation": "Institute of Pharmacy, Faculty of Pharmaceutical and Allied Health Sciences, Lahore College for Women University, Lahore 54000, Pakistan", + "ror_ids": [ + "https://ror.org/02bf6br77" + ] + }, + { + "affiliation": "State Key Laboratory of Supramolecular Structure and Materials, College of Chemistry, Jilin University, 130012, Changchun, People’s Republic of China, and Physikalisches Institut and Center for Nanotechnology (CeNTech), Westfälische Wilhelms-Universität, D-48149 Münster, Germany", + "ror_ids": [ + "https://ror.org/00wk05f95", + "https://ror.org/00js3aw79", + "https://ror.org/02xf8rf51" + ] + }, + { + "affiliation": "Autonomic Laboratory, Department of Neurology and Clinical Neurophysiology, HELIOS‐Klinikum Wuppertal University of Witten/Herdecke Witten Germany", + "ror_ids": [ + "https://ror.org/02r8sh830" + ] + }, + { + "affiliation": "Dept. of Architecture, Grad. Sch. of Eng., The University of Tokyo.", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Professor Emeritus Mental Health and Cultural Diversity, Kings College London, London, UK", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "1101 17th Street, NW, Suite 310, Washington, DC 20036,\nUSA", + "ror_ids": [] + }, + { + "affiliation": "California State University, Northern California Consortium Doctor of Nursing Practice", + "ror_ids": [ + "https://ror.org/020qm1538" + ] + }, + { + "affiliation": "1UT M.D. Anderson Cancer Center, Houston, TX", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "CIRES Climate Diagnostics Center, Boulder, Colorado", + "ror_ids": [ + "https://ror.org/00bdqav06" + ] + }, + { + "affiliation": "1Cancer Research Institute, Seoul National University, Seoul, Korea,", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "University of Calgary and CMC", + "ror_ids": [ + "https://ror.org/03yjb2x39" + ] + }, + { + "affiliation": "Solomon Mahlangu College of Science and Education, Sokoine University of Agriculture, Tanzania", + "ror_ids": [ + "https://ror.org/00jdryp44" + ] + }, + { + "affiliation": "University of Denver", + "ror_ids": [ + "https://ror.org/04w7skc03" + ] + }, + { + "affiliation": "Information Technology Institute, Centre for Research and Technology Hellas, Greece", + "ror_ids": [ + "https://ror.org/03bndpq63" + ] + }, + { + "affiliation": "Ural Federal University named after first President of Russia B.N. Yeltsin", + "ror_ids": [ + "https://ror.org/00hs7dr46" + ] + }, + { + "affiliation": "Zoology Department, Faculty of Science, Cairo University, Giza, Egypt", + "ror_ids": [ + "https://ror.org/03q21mh05" + ] + }, + { + "affiliation": "Historisches Institut Justus-Liebig-Universität Gießen Mittelalterliche Geschichte Otto-Behaghel-Straße 10c 35394 Gießen Deutschland", + "ror_ids": [ + "https://ror.org/033eqas34" + ] + }, + { + "affiliation": "Associate Professor of Management, Marquette University", + "ror_ids": [ + "https://ror.org/04gr4te78" + ] + }, + { + "affiliation": "U. of Illinois at Urbana-Champaign", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Universidade Federal de Pernambuco, Brasil", + "ror_ids": [ + "https://ror.org/047908t24" + ] + }, + { + "affiliation": "Department of Neurology, Philipp University of Marburg, Germany", + "ror_ids": [ + "https://ror.org/01rdrb571" + ] + }, + { + "affiliation": "S.M. Stoller Corporation, Broomfield, CO (United States)", + "ror_ids": [] + }, + { + "affiliation": "Wegener Center for Climate and Global Change University of Graz Graz Austria", + "ror_ids": [ + "https://ror.org/01faaaf77" + ] + }, + { + "affiliation": "Division of Cardiothoracic Surgery, University of California, San Diego, San Diego, CA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Construction Engineering Department, Ecole de Technologie Superieure, University of Quebec, Montreal, Quebec H3C 1K3, Canada", + "ror_ids": [ + "https://ror.org/0020snb74", + "https://ror.org/010gxg263" + ] + }, + { + "affiliation": "a University of Tampere, Seinajoki Unit for Regional Management Studies , PO Box 147, FIN‐60101 Seinajoki, Finland", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemical Engineering and Chemistry, Eindhoven University of Technology, P.O. Box 513, 5600 MB Eindhoven, The Netherlands; DSM Research, P.O. Box 18, 6160 MD, Geleen, The Netherlands; and State Key Laboratory of Chemical Fibers and Polymer Materials, College of Materials Science and Engineering, Donghua University, Shanghai 200051, P. R. China", + "ror_ids": [ + "https://ror.org/02c2kyt77", + "https://ror.org/035psfh38" + ] + }, + { + "affiliation": "Department of Physics, Chiba University, Chiba 263-8522, Japan", + "ror_ids": [ + "https://ror.org/01hjzeq58" + ] + }, + { + "affiliation": "a Department of Inorganic and Analytical Chemistry, Faculty of Pharmacy , K. Marcinkowski University of Medical Sciences in Poznań , Ul. Grunwaldzka 6, Poznań , 60-780 , Poland", + "ror_ids": [ + "https://ror.org/02zbb2597" + ] + }, + { + "affiliation": "Faculty of Education, Shaanxi Normal University, Xi'an, China", + "ror_ids": [ + "https://ror.org/0170z8493" + ] + }, + { + "affiliation": "Tabriz University of Medical Sciences", + "ror_ids": [ + "https://ror.org/04krpx645" + ] + }, + { + "affiliation": "FSBEI HE Altai State Agrarian University", + "ror_ids": [] + }, + { + "affiliation": "Second Department of Internal of Medicine, Hiraka General Hospital", + "ror_ids": [ + "https://ror.org/05mgn5w61" + ] + }, + { + "affiliation": "School of Resource and Environmental Management Simon Fraser University Burnaby British Columbia Canada", + "ror_ids": [ + "https://ror.org/0213rcc28" + ] + }, + { + "affiliation": "INSERM U409, Genetique et Pathologie Moleculaires de l'Hematopoiese, Faculte Xavier Bichat, Paris, France.", + "ror_ids": [ + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "University of New Hampshire", + "ror_ids": [ + "https://ror.org/01rmh9n78" + ] + }, + { + "affiliation": "Isotope and Radiation Application Division, Bhabha Atomic Research Centre, Mumbai, India", + "ror_ids": [ + "https://ror.org/05w6wfp17" + ] + }, + { + "affiliation": "Institute of Material Medica Integration and Transformation for Brain Disorders, Chengdu University of Traditional Chinese Medicine, Chengdu, 611137, PR China", + "ror_ids": [ + "https://ror.org/00pcrz470" + ] + }, + { + "affiliation": "Professor, Department of Preventive Medicine, College of Medicine · Research Institute for Medical Sciences, Chungnam National University, Daejeon, Korea.", + "ror_ids": [ + "https://ror.org/0227as991" + ] + }, + { + "affiliation": "University of Washington, Seattle, Washington 98195", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "School of Economics and Management, Wuhan University of Engineering Science, Wuhan, Hubei, China, --- Select a Country ---", + "ror_ids": [ + "https://ror.org/03bps0m03" + ] + }, + { + "affiliation": "NSF International", + "ror_ids": [ + "https://ror.org/02azqtm75" + ] + }, + { + "affiliation": "a Department of Physics and Astrophysics , University of Delhi , Delhi, 110 007, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery,college of Medicine, Ewha Womans University, Seoul, Korea.", + "ror_ids": [ + "https://ror.org/053fp5c05" + ] + }, + { + "affiliation": "Cornell University Section of Neurobiology and Behavior , Division of Biological Sciences , , Ithaca, NY 14853-2702, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Exxon Production Research Company", + "ror_ids": [] + }, + { + "affiliation": "Department of Physical Chemistry, University of Cambridge, Cambridge, CB2 1EP, England", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, University of Illinois at Urbana–Champaign, Urbana, IL 61801;", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Department of Biochemistry, Shivaji University, Kolhapur, India", + "ror_ids": [ + "https://ror.org/01bsn4x02" + ] + }, + { + "affiliation": "Healthy-Lipids Group, Sección\nDepartamental de Ciencias de la Alimentación, Faculty of Sciences, Universidad Autónoma de Madrid, 28049 Madrid, Spain", + "ror_ids": [ + "https://ror.org/01cby8j38" + ] + }, + { + "affiliation": "College of Food Science and Engineering Northwest A&F University Yangling 712100 China", + "ror_ids": [ + "https://ror.org/0051rme32" + ] + }, + { + "affiliation": "(Czechoslovakia)", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Mathematics and Natural Sciences, University of Bergen, Bergen, Norway", + "ror_ids": [ + "https://ror.org/03zga2b32" + ] + }, + { + "affiliation": "Department of Cognitive Sciences, School of Social Sciences, University of California, Irvine, California;", + "ror_ids": [ + "https://ror.org/04gyf1771" + ] + }, + { + "affiliation": "Department of Radiology, Yamaguchi University Graduate School of Medicine", + "ror_ids": [ + "https://ror.org/03cxys317" + ] + }, + { + "affiliation": "School of Science and Engineering The Chinese University of Hong Kong,Shenzhen,China", + "ror_ids": [ + "https://ror.org/00t33hh48", + "https://ror.org/02d5ks197" + ] + }, + { + "affiliation": "ESKİŞEHİR OSMANGAZİ ÜNİVERSİTESİ, EĞİTİM FAKÜLTESİ", + "ror_ids": [ + "https://ror.org/01dzjez04" + ] + }, + { + "affiliation": "Department of Gerontology Medicine, General Hospital of Hainan Land Reclamation", + "ror_ids": [] + }, + { + "affiliation": "School of Dentistry, College of Medicine, China Medical University, Taichung, Taiwan 404, ROC", + "ror_ids": [ + "https://ror.org/00v408z34" + ] + }, + { + "affiliation": "National Honor Society Hannibal High School, Hannibal, Missouri", + "ror_ids": [] + }, + { + "affiliation": "Discipline of Anatomy and Histology The University of Sydney Sydney New South Wales Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Department of Agricultural Economics Cornell University", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "School of Pharmacy and Pharmacology, University of Bath, Claverton Down, Bath, BA2 7 AY, UK", + "ror_ids": [ + "https://ror.org/002h8g185" + ] + }, + { + "affiliation": "Department of Molecular Biology, Princeton University, Princeton, New Jersey, USA", + "ror_ids": [ + "https://ror.org/00hx57361" + ] + }, + { + "affiliation": "University of Dalian Nationalities", + "ror_ids": [] + }, + { + "affiliation": "Department of Applied and Computational Mathematics and Statistics , University of Notre Dame , Notre Dame , IN 46556 ., USA", + "ror_ids": [ + "https://ror.org/00mkhxb43" + ] + }, + { + "affiliation": "Google Research, United States. kristout@google.com", + "ror_ids": [ + "https://ror.org/00njsd438" + ] + }, + { + "affiliation": "Political Science, Stanford University", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "African Centre for Crop Improvement, School of Agricultural, Earth and Environmental Sciences, University of KwaZulu-Natal, Pietermaritzburg, South Africa", + "ror_ids": [ + "https://ror.org/04qzfn040" + ] + }, + { + "affiliation": "Universidad de Málaga, Faculty of Health Sciences, Instituto de Investigación Biomédica (IBIMA), Málaga, Spain.", + "ror_ids": [ + "https://ror.org/036b2ww28", + "https://ror.org/05n3asa33" + ] + }, + { + "affiliation": "Department of Chemistry, University of Tennessee, Knoxville, TN 37996-1600", + "ror_ids": [ + "https://ror.org/020f3ap87" + ] + }, + { + "affiliation": "Mr Baral is a research scholar in the Centre for American and West European Studies at the School", + "ror_ids": [] + }, + { + "affiliation": "Peoples‘ friendship University of Russia", + "ror_ids": [ + "https://ror.org/02dn9h927" + ] + }, + { + "affiliation": "Department of Physics, University of Helsinki, Helsinki, Finland", + "ror_ids": [ + "https://ror.org/040af2s02" + ] + }, + { + "affiliation": "Division of Allergy Pulmonary and Critical Care Medicine, Department of Medicine, School of Medicine and Public Health, University of Wisconsin, Madison", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Institute for Enzyme Research and Department of Biochemistry, College of Agricultural and Life Sciences, University of Wisconsin, Madison, WI 53705, U.S.A.", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Ph.D. Department of Pakistan Studies, Bahuddian Zakariya University, Multan, Punjab, Pakistan.", + "ror_ids": [ + "https://ror.org/05x817c41" + ] + }, + { + "affiliation": "Department of Sciences John Jay College and PhD in Chemistry Program The Graduate Center of City University of New York 10019 New York NY USA", + "ror_ids": [ + "https://ror.org/00453a208" + ] + }, + { + "affiliation": "University of Missouri", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "Department of Mechanical and Industrial Engineering, Indian Institute of Technology Roorkee, Roorkee, India", + "ror_ids": [ + "https://ror.org/00582g326" + ] + }, + { + "affiliation": "School of Nuclear Engineering, Purdue University", + "ror_ids": [ + "https://ror.org/05p8z3f47" + ] + }, + { + "affiliation": "Department of Biology, 286 Gilmer Hall, University of Virginia,Charlottesville, VA 22903, USA", + "ror_ids": [ + "https://ror.org/0153tk833" + ] + }, + { + "affiliation": "Student at Graduate School of Science & Technology, Kumamoto University, absent from the Faculty of Engineering, Sam Ratulangi University, Indonesia.", + "ror_ids": [ + "https://ror.org/01cn6ph21" + ] + }, + { + "affiliation": "Doctor of Business Administration Trophy Club", + "ror_ids": [] + }, + { + "affiliation": "Alcoa of Australia, Australia", + "ror_ids": [ + "https://ror.org/03pqjm879" + ] + }, + { + "affiliation": "Department of Organic Chemistry, NSR-Institute for Molecular Structure, Design and Synthesis, University of Nijmegen, Toernooiveld, 6525 ED Nijmegen, The Netherlands", + "ror_ids": [] + }, + { + "affiliation": "Massachusetts Institute of Technology", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Saint Vincent's Hospital and Prince Henry's HospitalMelbourne", + "ror_ids": [] + }, + { + "affiliation": "Center for Discovery and Innovation, Nutley, New Jersey", + "ror_ids": [] + }, + { + "affiliation": "Brown University", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "*Microbiology and", + "ror_ids": [] + }, + { + "affiliation": "Materials Research Institute, The Pennsylvania State University, University Park, Pennsylvania 16802", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Office of the Quartermaster General", + "ror_ids": [] + }, + { + "affiliation": "Department of Electrical & Computer Engineering and Waterloo Institute for Nanotechnology, University of Waterloo, 200 University Avenue West, Waterloo, Ontario N2L 3G1, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "KTH Mechanics, Royal Institute of Technology", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Полярный геофизический институт КНЦ РАН", + "ror_ids": [ + "https://ror.org/00bbt0744" + ] + }, + { + "affiliation": "Department of Chemistry, University of Idaho, Moscow, ID 83844-2343", + "ror_ids": [ + "https://ror.org/03hbp5t65" + ] + }, + { + "affiliation": "School Psychology Program, Wichita State University", + "ror_ids": [ + "https://ror.org/00c4e7y75" + ] + }, + { + "affiliation": "Khristianovich Institute of Theoretical and Applied Mechanics SB RAS Novosibirsk, Russian Federation", + "ror_ids": [ + "https://ror.org/02azz6x90" + ] + }, + { + "affiliation": "STMicroelectronics,Crolles,France", + "ror_ids": [ + "https://ror.org/01c74sd89" + ] + }, + { + "affiliation": "Department of Biology; University of Sussex; Falmer Brighton Sussex BN1 9QG England", + "ror_ids": [ + "https://ror.org/00ayhx656" + ] + }, + { + "affiliation": "Department of Chemistry University of Nebraska-Lincoln Lincoln NE 68588 USA", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "Beijing Information Science and Technology University,School of Computer Science,Beijing,China", + "ror_ids": [ + "https://ror.org/04xnqep60" + ] + }, + { + "affiliation": "Department of Neurology and Weill Institute for Neurosciences University of California, San Francisco San Francisco California USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "School of Electronics and Information Engineering, Beihang University, Beijing 100191, China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Department of Applied Mathematics, Science University of Tokyo", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Changsha, People's Republic of China", + "ror_ids": [] + }, + { + "affiliation": "Department of Gynecology, the First Affiliated Hospital, Sun Yat-sen University, Guangzhou 510080, Province Guangdong, P.R. China", + "ror_ids": [ + "https://ror.org/0064kty71", + "https://ror.org/037p24858" + ] + }, + { + "affiliation": "Prince of Songkla University", + "ror_ids": [ + "https://ror.org/0575ycz84" + ] + }, + { + "affiliation": "Department of Epileptology, University Bonn Medical Center, Sigmund-Freud-Str. 25, D 53105 Bonn, Germany", + "ror_ids": [ + "https://ror.org/041nas322" + ] + }, + { + "affiliation": "Michigan State University", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "University College of Swansea, formerly Director of Electrical Research, British Railways Board, London", + "ror_ids": [] + }, + { + "affiliation": "INSERM, Centre de Recherche Cardio-Thoracique de Bordeaux, U1045, CIC 1401, F-33604 Pessac, France", + "ror_ids": [ + "https://ror.org/04vgc9p51", + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "School of Chemistry and Materials Science, Ludong University, Yantai 264025, China", + "ror_ids": [ + "https://ror.org/028h95t32" + ] + }, + { + "affiliation": "Department of Computer Science, Columbia University, New York, New York, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "Department of Periodontology Research Institute for Periodontal Regeneration Yonsei University College of Dentistry Seoul South Korea", + "ror_ids": [ + "https://ror.org/01wjejq96", + "https://ror.org/00tfaab58" + ] + }, + { + "affiliation": "Centro de Estudos Florestais (CEF), Instituto Superior de Agronomia (ISA) Universidade de Lisboa (ULisboa) 1349‐017 Lisboa Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86" + ] + }, + { + "affiliation": "Emeritus Professor of Psychiatry, St Christopher's Hospice, London", + "ror_ids": [ + "https://ror.org/01zkhn749" + ] + }, + { + "affiliation": "Universidade Estadual de Maringá 4 Departamento de Física, , Av. Colombo 5790, 87020-900, Maringá, PR, Brazil", + "ror_ids": [ + "https://ror.org/04bqqa360" + ] + }, + { + "affiliation": "Department of Orthopaedics and Rehabilitation, Oregon Health & Science University, Portland, Oregon", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Nueva Granada Military University, Cajicá, Cundinamarca, Colombia", + "ror_ids": [ + "https://ror.org/05n0gsn30" + ] + }, + { + "affiliation": "Harrogate", + "ror_ids": [] + }, + { + "affiliation": "Uniwersytet Warmińsko-Mazurski w Olsztynie", + "ror_ids": [ + "https://ror.org/05s4feg49" + ] + }, + { + "affiliation": "Department of Civil, Construction, and Environmental Engineering University of Alabama Tuscaloosa Alabama USA", + "ror_ids": [ + "https://ror.org/03xrrjk67" + ] + }, + { + "affiliation": "Ibaraki University", + "ror_ids": [ + "https://ror.org/00sjd5653" + ] + }, + { + "affiliation": "Associate Professor, Centre for Policy Research, Dharma marg, Chanakyapuri New Delhi - 110021, India", + "ror_ids": [ + "https://ror.org/04jzegn30" + ] + }, + { + "affiliation": "Royal Postgraduate Medical School", + "ror_ids": [] + }, + { + "affiliation": "Bioprocess Engineering", + "ror_ids": [] + }, + { + "affiliation": "Department of Health and Social Behavior, School of Public Health, The University of Tokyo", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Department of Microbiology and Immunology, University of Michigan Medical School, Ann Arbor, Michigan, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Personalleiterin St. Vincenz-Krankenhaus Am Stein 24 D-58706 Menden", + "ror_ids": [] + }, + { + "affiliation": "University of Ilorin,Department of Mechanical Engineering,Ilorin,Nigeria", + "ror_ids": [ + "https://ror.org/032kdwk38" + ] + }, + { + "affiliation": "AGEISS Environmental, 1617 Ontario Street SE, Olympia, WA 98501, USA", + "ror_ids": [] + }, + { + "affiliation": "Changchun Institute of Applied Chemistry University of Chinese Academy of Sciences 100039 Beijing PR China", + "ror_ids": [ + "https://ror.org/00h52n341", + "https://ror.org/05qbk4x57", + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "Department of Epidemiology and Cancer Control, St. Jude Children's Research Hospital , Memphis, Tennessee , USA", + "ror_ids": [ + "https://ror.org/02r3e0967" + ] + }, + { + "affiliation": "Butler University, USA,", + "ror_ids": [ + "https://ror.org/05gq3a412" + ] + }, + { + "affiliation": "Osaka Respiratory symposium Research Group - (Japan), Osaka, Japan", + "ror_ids": [] + }, + { + "affiliation": "Federal University of Para", + "ror_ids": [ + "https://ror.org/03q9sr818" + ] + }, + { + "affiliation": "Technical University of Liberec", + "ror_ids": [ + "https://ror.org/02jtk7k02" + ] + }, + { + "affiliation": "Jagiellonian University", + "ror_ids": [ + "https://ror.org/03bqmcz70" + ] + }, + { + "affiliation": "Division of Hematology and Oncology, Ann & Robert H. Lurie Children's Hospital of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/03a6zw892" + ] + }, + { + "affiliation": "Department of Cell Differentiation, the Sakaguchi Laboratory, Keio University School of Medicine, Shinjuku, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/02kn6nx58" + ] + }, + { + "affiliation": "Laboratory of Metabolic Regulation and Genetics, The Rockefeller University, New York, NY 10065, USA.", + "ror_ids": [ + "https://ror.org/0420db125" + ] + }, + { + "affiliation": "Академия будущего «Профессориум»", + "ror_ids": [] + }, + { + "affiliation": "Department of Veterinary Pharmacology and Toxicology College of Veterinary Science Guru Angad Dev Veterinary and Animal Sciences University Ludhiana Punjab India", + "ror_ids": [ + "https://ror.org/00bbeqy02" + ] + }, + { + "affiliation": "Department of Medical Microbiology and Infectious Diseases, Gelre Hospitals, Apeldoorn, The Netherlands", + "ror_ids": [ + "https://ror.org/05275vm15" + ] + }, + { + "affiliation": "Computer Engineering, University of Alcala, Alcalá de Henares, Madrid, Spain", + "ror_ids": [ + "https://ror.org/04pmn0e78" + ] + }, + { + "affiliation": "Dipartimento di Chimica e Biologia “A. Zambelli”, Università di Salerno, Via Giovanni Paolo II 132, I-84084 Fisciano, Salerno, Italy", + "ror_ids": [ + "https://ror.org/0192m2k53" + ] + }, + { + "affiliation": "Centrum Wiskunde & Informatica", + "ror_ids": [ + "https://ror.org/00x7ekv49" + ] + }, + { + "affiliation": "North Wales Centre for Primary Care, Bangor University Research, Wrexham, UK", + "ror_ids": [ + "https://ror.org/006jb1a24" + ] + }, + { + "affiliation": "Université de Montréal", + "ror_ids": [ + "https://ror.org/0161xgx34" + ] + }, + { + "affiliation": "Université de Toronto", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "New School for Social Research, New York City", + "ror_ids": [ + "https://ror.org/02tvcev59" + ] + }, + { + "affiliation": "Department of Mathematics and Statistics, Faculty of Science, Imam Mohammad Ibn Saud Islamic University (IMSIU), P.O. Box 90950, Riyadh 11623, Saudi Arabia", + "ror_ids": [ + "https://ror.org/05gxjyb39" + ] + }, + { + "affiliation": "Sapienza University of Rome,Department of Mechanical and Aerospace Engineering (DIMA),Rome,Italy", + "ror_ids": [ + "https://ror.org/02be6w209" + ] + }, + { + "affiliation": "Department of Pharmaceutical Technology, Jadavpur University, Kolkata 700 032, India", + "ror_ids": [ + "https://ror.org/02af4h012" + ] + }, + { + "affiliation": "a Philips Semiconductors, Nijmegen, The Netherlands", + "ror_ids": [] + }, + { + "affiliation": "School of Journalism and Communication, Shanghai University, Shanghai, China;", + "ror_ids": [ + "https://ror.org/006teas31" + ] + }, + { + "affiliation": "Clausthal University of Technology", + "ror_ids": [ + "https://ror.org/04qb8nc58" + ] + }, + { + "affiliation": "USAF, Phillips Lab., Kirtland AFB, NM", + "ror_ids": [] + }, + { + "affiliation": "Inland Norway University of Applied Sciences Lillehammer Norway", + "ror_ids": [ + "https://ror.org/02dx4dc92" + ] + }, + { + "affiliation": "Tan Tock Seng Hospital, Singapore", + "ror_ids": [ + "https://ror.org/032d59j24" + ] + }, + { + "affiliation": "Department of Haematology, Royal Perth Hospital Western Australia", + "ror_ids": [ + "https://ror.org/00zc2xc51" + ] + }, + { + "affiliation": "Solar Energy Research Institute, Solar Electric Conversion Research Division, 1617 Cole Boulevard, Golden, Colorado 80401", + "ror_ids": [] + }, + { + "affiliation": "Embrapa Agroindústria Tropical", + "ror_ids": [] + }, + { + "affiliation": "Centre for Medical Image Computing, University College London , London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Ministry of Health, Singapore", + "ror_ids": [ + "https://ror.org/00mrhvv69" + ] + }, + { + "affiliation": "Department of Theoretical Chemistry, Maria-Curie Skłodowska University, Pl. M. C. Skłodowskiej\n3, 20-031 Lublin, Poland", + "ror_ids": [ + "https://ror.org/015h0qg34" + ] + }, + { + "affiliation": "Duke UniversityUSA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Department of Chemistry and Chemical Engineering, Jining University, Qufu, Shandong 273155, P.R. China", + "ror_ids": [ + "https://ror.org/037rvh518" + ] + }, + { + "affiliation": "Maritime University in Szczecin , Faculty of Navigation, Department of Ocean Engineering and Shipbuilding , Poland", + "ror_ids": [ + "https://ror.org/02sj9tq04" + ] + }, + { + "affiliation": "School of Chemistry, Cardiff University, Park Place, Cardiff CF10 3AT, Wales, UK, and Division of Organic Chemistry, National Chemical Laboratory, Pune 411 008, India", + "ror_ids": [ + "https://ror.org/057mn3690", + "https://ror.org/03kk7td41" + ] + }, + { + "affiliation": "School of Mathematics and Statistics, Henan University of Science and Technology, Luoyang 471023, China", + "ror_ids": [ + "https://ror.org/05d80kz58" + ] + }, + { + "affiliation": "Hughes Aircraft Company Mail Station R7/P549 P.O. Box 92426 Los Angeles CA 90009", + "ror_ids": [] + }, + { + "affiliation": "Lebanese University", + "ror_ids": [ + "https://ror.org/05x6qnc69" + ] + }, + { + "affiliation": "College of Science, State Key Laboratory of Agricultural Microbiology, Huazhong Agricultural University, Wuhan 430070, China", + "ror_ids": [ + "https://ror.org/023b72294" + ] + }, + { + "affiliation": "University of Alberta", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Instituto de Virología-IVIT (INTA-CONICET), Buenos Aires, Argentina.", + "ror_ids": [] + }, + { + "affiliation": "College of Veterinary Medicine University of Florida Gainesville FL USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Chemistry, Post Graduate Govt. College for Girls, Sec-11, Chandigarh, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Microbiology, College of Medicine, Pennsylvania State University, Hershey 17033.", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "CVML Laboratory, Computer Science Department, University of Geneva, Route de Drize 7, Carouge (Geneva) CH–1227, Switzerland", + "ror_ids": [ + "https://ror.org/01swzsf04" + ] + }, + { + "affiliation": "407 Brentwood Drive, Carrcroft, Wilmington, Delaware 19803", + "ror_ids": [] + }, + { + "affiliation": "St Paul's College, Grahamstown", + "ror_ids": [] + }, + { + "affiliation": "1Ningbo University, Chemistry Department, Institute for Solid State Chemistry, Ningbo, Zhejiang, 315211 P. R. China", + "ror_ids": [ + "https://ror.org/03et85d35" + ] + }, + { + "affiliation": "Chemical Research Department, American Viscose Corporation, Marcus Hook, Pennsylvania", + "ror_ids": [] + }, + { + "affiliation": "National Institute of Technology Jamshedpur", + "ror_ids": [ + "https://ror.org/01sebzx27" + ] + }, + { + "affiliation": "The University of Alabama", + "ror_ids": [ + "https://ror.org/03xrrjk67" + ] + }, + { + "affiliation": "Mahidol University", + "ror_ids": [ + "https://ror.org/01znkr924" + ] + }, + { + "affiliation": "Институт цитологии РАН", + "ror_ids": [ + "https://ror.org/00wfve797" + ] + }, + { + "affiliation": "National Physical Laboratory", + "ror_ids": [ + "https://ror.org/015w2mp89" + ] + }, + { + "affiliation": "Universidade Federal de Sergipe, Brasil", + "ror_ids": [ + "https://ror.org/028ka0n85" + ] + }, + { + "affiliation": "University of Victoria, British Columbia", + "ror_ids": [ + "https://ror.org/04s5mat29" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry, Rose-Hulman Institute of Technology, Terre Haute, Indiana, Department of Medicinal Chemistry and Molecular Pharmacology, Purdue University, West Lafayette, Indiana, and Medical Sciences and the Department of Cellular and Integrative Physiology, Indiana University School of Medicine, Bloomington, Indiana", + "ror_ids": [ + "https://ror.org/00mp6e841", + "https://ror.org/02dqehb95", + "https://ror.org/02ets8c94", + "https://ror.org/01kg8sb98" + ] + }, + { + "affiliation": "Philosophy, University of Waterloo", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "bHospital Medicine", + "ror_ids": [] + }, + { + "affiliation": "Department of Electrical Power and Machines Engineering, Faculty of Engineering, South Valley University", + "ror_ids": [ + "https://ror.org/00jxshx33" + ] + }, + { + "affiliation": "Universidade Federal Fluminense, Brazil", + "ror_ids": [ + "https://ror.org/02rjhbb08" + ] + }, + { + "affiliation": "Department of Community Dentistry, Faculty of Health Sciences, University of Pretoria, South Africa", + "ror_ids": [ + "https://ror.org/00g0p6g84" + ] + }, + { + "affiliation": "Tianjin University", + "ror_ids": [ + "https://ror.org/012tb2g32" + ] + }, + { + "affiliation": "CMU", + "ror_ids": [] + }, + { + "affiliation": "National Institute of Animal Science", + "ror_ids": [ + "https://ror.org/02ty3a980" + ] + }, + { + "affiliation": "University of Health Sciences and Pharmacy, Saint Louis, Missouri, United States", + "ror_ids": [ + "https://ror.org/01btzz102" + ] + }, + { + "affiliation": "Institut für Verwaltungsrecht und Verwaltungslehre, Universität Linz", + "ror_ids": [] + }, + { + "affiliation": "Ondokuz Mayıs University,Dept. of Electrical-Electronic Engineering,Samsun,Turkey", + "ror_ids": [ + "https://ror.org/028k5qw24" + ] + }, + { + "affiliation": "National Mobile Communications Research Laboratory, Southeast University, China", + "ror_ids": [ + "https://ror.org/04ct4d772" + ] + }, + { + "affiliation": "LabRI-SBA Laboratory, Ecole Superieure en Informatique, Sidi Bel Abbes, Algeria", + "ror_ids": [ + "https://ror.org/04dj1dn66" + ] + }, + { + "affiliation": "Федеральное государственное бюджетное образовательное учреждение высшего образования Санкт-Петербургский политехнический университет Петра Великого", + "ror_ids": [ + "https://ror.org/02x91aj62" + ] + }, + { + "affiliation": "Universidad Nacional de General Sarmiento, Argentina", + "ror_ids": [ + "https://ror.org/01k6h2m87" + ] + }, + { + "affiliation": "Laboratoire de Spectrometrie Physique associé au CNRS, Université Joseph Fourier, Grenoble I, B. P. 87, 38402 St. Martin d’ Hères Cedex, France", + "ror_ids": [ + "https://ror.org/02feahw73", + "https://ror.org/02rx3b187" + ] + }, + { + "affiliation": "Universidade Federal de Pernambuco, Brazil", + "ror_ids": [ + "https://ror.org/047908t24" + ] + }, + { + "affiliation": "Neuropsychopharmacology Unit, 12 de Octubre Hospital, Research Institute (i+12), Madrid, Spain", + "ror_ids": [ + "https://ror.org/002x1sg85" + ] + }, + { + "affiliation": "Departments of Organic Chemistry and of Pharmacology, University of Leeds", + "ror_ids": [ + "https://ror.org/024mrxd33" + ] + }, + { + "affiliation": "College of Computer Science, Chongqing University,Chongqing,China", + "ror_ids": [ + "https://ror.org/023rhb549" + ] + }, + { + "affiliation": "Physical Medicine and Rehabilitation Research Center; Clinical research development center of Shahid Modarres hospital; Shahid Beheshti University of Medical Sciences; Tehran Iran", + "ror_ids": [ + "https://ror.org/034m2b326" + ] + }, + { + "affiliation": "Laboratoire de Phonologie, Universit Libre de Bruxelles, 50 av. F. D. Roosevelt, 1050 Brussels, Belgium", + "ror_ids": [ + "https://ror.org/01r9htc13" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry and Institute for Nonlinear Science, University of California, San Diego, La Jolla, California 92093-0341", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Kozminski University, Poland", + "ror_ids": [ + "https://ror.org/033wpf256" + ] + }, + { + "affiliation": "University of Ljubljana, Faculty of Mathematics and Physics, Jadranska 19, 1000 Ljubljana, Slovenia", + "ror_ids": [ + "https://ror.org/05njb9z20" + ] + }, + { + "affiliation": "École de psychoéducation, Université de Montréal", + "ror_ids": [ + "https://ror.org/0161xgx34" + ] + }, + { + "affiliation": "Keele University", + "ror_ids": [ + "https://ror.org/00340yn33" + ] + }, + { + "affiliation": "Universiti Putra Malaysia, Malaysia", + "ror_ids": [ + "https://ror.org/02e91jd64" + ] + }, + { + "affiliation": "Department of Cancer and Inflammation Research Institute of Molecular Medicine University of Southern Denmark Odense Denmark", + "ror_ids": [ + "https://ror.org/03yrrjy16" + ] + }, + { + "affiliation": "University of Miami", + "ror_ids": [ + "https://ror.org/02dgjyy92" + ] + }, + { + "affiliation": "Department of Public Health, Clinical Pharmacology, Pharmacy and Environmental Medicine, SDU, Denmark", + "ror_ids": [] + }, + { + "affiliation": "School of Journalism&Communication, Lanzhou University, Lanzhou, 730107, China", + "ror_ids": [ + "https://ror.org/01mkqqe32" + ] + }, + { + "affiliation": "aDeNu Research Group, Artificial Intelligence Department, UNED, Calle Juan del Rosal 16, 28040 Madrid, Spain", + "ror_ids": [] + }, + { + "affiliation": "University of Saskatchewan", + "ror_ids": [ + "https://ror.org/010x8gc63" + ] + }, + { + "affiliation": "Central Michigan University Saginaw Michigan USA", + "ror_ids": [ + "https://ror.org/02xawj266" + ] + }, + { + "affiliation": "Present Address: Woldsenweg 7, 20249, Hamburg, Germany", + "ror_ids": [] + }, + { + "affiliation": "School of Nursing and Rehabilitation, Shandong University, Jinan, Shandong Province, China", + "ror_ids": [ + "https://ror.org/0207yh398" + ] + }, + { + "affiliation": "MINES ParisTech", + "ror_ids": [ + "https://ror.org/04y8cs423" + ] + }, + { + "affiliation": "Department of Ororhinolaryngology, State University of New York, Upstate Medical Center, Syracuse, New York 13210", + "ror_ids": [ + "https://ror.org/040kfrw16", + "https://ror.org/01q1z8k08" + ] + }, + { + "affiliation": "International Centre for Genetic Engineering and Biotechnology, Aruna Asaf Ali Marg, New Delhi 110067, India", + "ror_ids": [ + "https://ror.org/03j4rrt43" + ] + }, + { + "affiliation": "From the Department of Internal Medicine (S.-G.W., Y.Y., Z.-H.Z., R.M.W., R.B.F.) and Neuroscience Program (S.-G.W., R.B.F.), University of Iowa Carver College of Medicine, Iowa City; and the Veterans Affairs Medical Center (R.M.W., R.B.F.), Iowa City, Iowa.", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "Northwestern University, Robert H. Lurie Comprehensive Cancer Center, Chicago, IL", + "ror_ids": [ + "https://ror.org/02p4far57", + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Department of Pediatrics Perelman School of Medicine of the University of Pennsylvania Philadelphia Pennsylvania USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "b U.S. Geological Survey, Woods Hole, Massachusetts", + "ror_ids": [ + "https://ror.org/035a68863" + ] + }, + { + "affiliation": "Department of Chemistry and Department of Anatomy, Physiology, and Pharmacology, Auburn University, Auburn, Alabama 36849", + "ror_ids": [ + "https://ror.org/02v80fc35" + ] + }, + { + "affiliation": "Zhejiang Sci-Tech University", + "ror_ids": [ + "https://ror.org/03893we55" + ] + }, + { + "affiliation": "1P.Universidad Catolica de Chile, Santiago, Chile", + "ror_ids": [ + "https://ror.org/04teye511" + ] + }, + { + "affiliation": "University of Texas at Austin, Hildebrand Department of Petroleum and Geosystems Engineering, Austin, Texas, USA..", + "ror_ids": [ + "https://ror.org/00hj54h04" + ] + }, + { + "affiliation": "c Desert Research Institute , Reno , NV", + "ror_ids": [ + "https://ror.org/02vg22c33" + ] + }, + { + "affiliation": "Department of Dermatology, The Second Xiangya Hospital of Central South University, Changsha 410011, Hunan Province, China", + "ror_ids": [ + "https://ror.org/053v2gh09", + "https://ror.org/00f1zfq44" + ] + }, + { + "affiliation": "Assistant Professor of Family Medicine, Queen's University, Kingston, Ontario; Psychiatrist, Rideau Regional Centre, Smiths Falls, Ontario", + "ror_ids": [ + "https://ror.org/02y72wh86" + ] + }, + { + "affiliation": "DeVry University, USA", + "ror_ids": [ + "https://ror.org/02z38kp20" + ] + }, + { + "affiliation": "Saudi Electronic University", + "ror_ids": [ + "https://ror.org/05ndh7v49" + ] + }, + { + "affiliation": "Gastroenterology Unit Woden Valley Hospital", + "ror_ids": [] + }, + { + "affiliation": "The Third Department of Internal Medicine Okayama University Medical School", + "ror_ids": [ + "https://ror.org/02pc6pc55" + ] + }, + { + "affiliation": "MD Anderson Cancer Center, Houston, TX.", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Fachbereich\nPhysik, Universität Osnabrück, Barbarastrasse 7, D-49069 Osnabrück, Germany", + "ror_ids": [ + "https://ror.org/04qmmjx98" + ] + }, + { + "affiliation": "Michigan State Univ, East Lansing, MI", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "Marshall UniversityHuntingtonWV", + "ror_ids": [ + "https://ror.org/02erqft81" + ] + }, + { + "affiliation": "Springborn Laboratories, Inc., Enfield, CT 06082", + "ror_ids": [] + }, + { + "affiliation": "Centre for Translation Studies, University of Vienna, Vienna, Austria", + "ror_ids": [ + "https://ror.org/03prydq77" + ] + }, + { + "affiliation": "University of Koblenz-Landau, Germany", + "ror_ids": [ + "https://ror.org/01j9f6752" + ] + }, + { + "affiliation": "Frimley Health NHS Foundation Trust, Camberley, Surrey GU16 7UJ, UK", + "ror_ids": [ + "https://ror.org/00mrq3p58" + ] + }, + { + "affiliation": "İNÖNÜ ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/04asck240" + ] + }, + { + "affiliation": "Department of Medical Education, School of Medicine, California University of Science and Medicine, Colton, California.", + "ror_ids": [ + "https://ror.org/008a6s711" + ] + }, + { + "affiliation": "Assoc. Prof. of Civ. Engrg., Univ. of Alberta, Edmonton, Alberta, Canada, T6G 2E1", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Google", + "ror_ids": [ + "https://ror.org/00njsd438" + ] + }, + { + "affiliation": "College of Physics, Jilin University, Changchun, China", + "ror_ids": [ + "https://ror.org/00js3aw79" + ] + }, + { + "affiliation": "George Washington University Medical Center, Washington, DC20037.", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "College of Science, Shandong University of Science and Technology Qingdao Key Laboratory of Terahertz Technology, , Qingdao 266510, China", + "ror_ids": [ + "https://ror.org/04gtjhw98" + ] + }, + { + "affiliation": "Institute of Computer Technologies, Automation and Metrology, Lviv Polytechnic National University, Lviv, Ukraine", + "ror_ids": [ + "https://ror.org/0542q3127" + ] + }, + { + "affiliation": "University of North Carolina at Chapel Hill", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Indiana University School of Medicine, South Bend Center, South Bend, Indiana.", + "ror_ids": [ + "https://ror.org/02ets8c94" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry University of Wisconsin–La Crosse La Crosse WI USA", + "ror_ids": [ + "https://ror.org/00x8ccz20" + ] + }, + { + "affiliation": "Lecturer in Civ. Engrg., Univ. of the Witwatersrand, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/03rp50x72" + ] + }, + { + "affiliation": "PUC-RS, Brasil", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemistry and Biochemistry, Department of Biological Chemistry, University of California, UCLA/DOE Institute for Genomics and Proteomics, Los Angeles, 90095, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Research Center for Advanced Energy Conversion, Nagoya University", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Central Middlesex Hospital", + "ror_ids": [ + "https://ror.org/03mq8zc85" + ] + }, + { + "affiliation": "Departamento de Física, Facultad de Ciencias, Universidad Nacional de Colombia – Bogotá 1 , Carrera 30 Calle 45-03, C.P. 111321, Bogotá, Colombia", + "ror_ids": [ + "https://ror.org/059yx9a68" + ] + }, + { + "affiliation": "Razi Drug Research Center, Iran University of Medical Sciences, Tehran 14496-14535, Iran", + "ror_ids": [ + "https://ror.org/03w04rv71" + ] + }, + { + "affiliation": "Department of Information Engineering and Mathematics, University of Siena, 53100 Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "University of Bonn, Bonn, Germany", + "ror_ids": [ + "https://ror.org/041nas322" + ] + }, + { + "affiliation": "Laboratoire de Physiologie Neurosensorielle, Universite ClaudeBernard, Lyon, France.", + "ror_ids": [ + "https://ror.org/029brtt94" + ] + }, + { + "affiliation": "Department of Materials Engineering Indian Institute of Science (IISc) C V Raman Avenue Bangalore Karnataka 560012 India", + "ror_ids": [ + "https://ror.org/04dese585" + ] + }, + { + "affiliation": "Lund University Division of Mathematical Physics, Department of Physics, , P.O. Box 118, 22100 Lund, Sweden", + "ror_ids": [ + "https://ror.org/012a77v79" + ] + }, + { + "affiliation": "Universidad Politécnica de Madrid, 28031 Madrid, Spain", + "ror_ids": [ + "https://ror.org/03n6nwv02" + ] + }, + { + "affiliation": "Corporate Research, Robert Bosch GmbH, Hildesheim, Germany", + "ror_ids": [] + }, + { + "affiliation": "National Engineering Research Center for Process Development of Active Pharmaceutical Ingredients, Collaborative Innovation Center of Yangtze River Delta Region Green Pharmaceuticals, Zhejiang University of Technology, Hangzhou 310014, P.R. China", + "ror_ids": [ + "https://ror.org/02djqfd08" + ] + }, + { + "affiliation": "Space Telescope Science Institute (ret.)", + "ror_ids": [ + "https://ror.org/036f5mx38" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Roskilde County Hospital in Koege, University of Copenhagen, Department of Orthopaedic Surgery, County Hospital in Herlev, Steno Diabetic Center, University of Copenhagen, Gentofte and Copenhagen Wound Healing Center, Department of Dermatology and Copenhagen Wound Healing Center, Bispebjerg Hospital, University of Copenhagen", + "ror_ids": [ + "https://ror.org/035b05819", + "https://ror.org/00td68a17" + ] + }, + { + "affiliation": "Molecular Biology Section, Lederle Laboratories, American Cyanamid Company, Pearl River, NY 10965.", + "ror_ids": [] + }, + { + "affiliation": "From the Department of Biophysics, University of Colorado Medical Center, Denver", + "ror_ids": [ + "https://ror.org/02hh7en24" + ] + }, + { + "affiliation": "Cutaneous Biology Research Center, Massachusetts General Hospital, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Smart Vehicle Technology Research Center, Korea Automotive Technology Institute, 74 Yongjeong-Ri, Poongse-Myun, Dongnam-go, Cheonan-si, Chungnam 330-912, Republic of Korea", + "ror_ids": [ + "https://ror.org/00sc3t321" + ] + }, + { + "affiliation": "Beijing\nNational Laboratory for Molecular Sciences (BNLMS), CAS Key Laboratory\nof Organic Solids, Institute of Chemistry, Chinese Academy of Sciences, Beijing 100190, People’s Republic of China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/02601yx74" + ] + }, + { + "affiliation": "Institute for Education Strategy and Development of Russian Academy of Education", + "ror_ids": [ + "https://ror.org/026s4j722" + ] + }, + { + "affiliation": "Institute of Geology, Ufa Federal Research Centre of the Russian Academy of Sciences", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Oregon Health & Science University Portland Oregon", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Departments of Chemistry and Materials Science and Engineering, Northwestern University, Evanston, Illinois 60208, and Department of Medicine and Institute for BioNanotechnology in Medicine, Northwestern University, Chicago, Illinois 60611", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Universidad Autònoma del Estado de México,Faculty of Engineering,Toluca,Mexico", + "ror_ids": [ + "https://ror.org/0079gpv38" + ] + }, + { + "affiliation": "Office of Electric Power Regulations, Federal Energy Regulatory Commission, Washington DC, USA", + "ror_ids": [ + "https://ror.org/05v7gv656" + ] + }, + { + "affiliation": "Universiti Teknologi Petronas", + "ror_ids": [ + "https://ror.org/048g2sh07" + ] + }, + { + "affiliation": "NASA, Marshall Space Flight Center, Huntsville, AL", + "ror_ids": [ + "https://ror.org/02epydz83" + ] + }, + { + "affiliation": "Institute of Computer Science, Academy of Sciences of the Czech Republic, Praha, Czech Republic", + "ror_ids": [ + "https://ror.org/053avzc18", + "https://ror.org/0496n6574" + ] + }, + { + "affiliation": "Department of Mathematics, University of Würzburg, Emil-Fischer-Str. 40, 97074 Würzburg, Germany", + "ror_ids": [ + "https://ror.org/00fbnyb24" + ] + }, + { + "affiliation": "Dublin", + "ror_ids": [] + }, + { + "affiliation": "Department of Speech, Language and Hearing Sciences, Boston University, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/05qwgg493" + ] + }, + { + "affiliation": "b Department of Psychology , University of Haifa , Israel", + "ror_ids": [ + "https://ror.org/02f009v59" + ] + }, + { + "affiliation": "Kagoshima Univ.", + "ror_ids": [ + "https://ror.org/03ss88z23" + ] + }, + { + "affiliation": "Medizinische Universitätsklinik I, Eberhard-Karls-Universität Tübingen, Otfried-Müller Str. 10, 72076 Tübingen, Germany", + "ror_ids": [ + "https://ror.org/03a1kwz48" + ] + }, + { + "affiliation": "University of Warwick, UK", + "ror_ids": [ + "https://ror.org/01a77tt86" + ] + }, + { + "affiliation": "From the Clinical Pharmacology Unit, University of Cambridge, Centre for Clinical Investigation, Addenbrooke’s Hospital, Cambridge, UK (A.L.B., J.J.M., P.Y., J.C., I.B.W., A.P.D.); Bloomsbury Institute of Intensive Care Medicine, University College London, London, UK (A.D., M.S.); and Unilever Centre for Molecular Sciences Informatics, Department of Chemistry, University of. Cambridge, Cambridge, UK (R.T., R.C.G.).", + "ror_ids": [ + "https://ror.org/013meh722", + "https://ror.org/02jx3x895", + "https://ror.org/055vbxf86" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Boğaziçi University, Istanbul 34342, Turkey", + "ror_ids": [ + "https://ror.org/03z9tma90" + ] + }, + { + "affiliation": "Centre National de la Recherche Scientifique (CNRS) Centre de Recherche sur l’Hétéro-Epitaxie et ses Applications (CRHEA), , Rue Bernard Gregory, F-06560 Valbonne, France", + "ror_ids": [ + "https://ror.org/03y8mpv07", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Alibaba Group, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00k642b80" + ] + }, + { + "affiliation": "School of Civil Engineering and Geomatics; Del Valle University; Santiago de Cali Colombia", + "ror_ids": [ + "https://ror.org/00jb9vg53" + ] + }, + { + "affiliation": "Department of Chemistry, University of Connecticut, 55 North Eagleville Road, Storrs, CT 06269-3060, USA.", + "ror_ids": [ + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "State Key Laboratory of Chemo/Biosensing and Chemometrics College of Chemistry and Chemical Engineering Hunan University Changsha 410082 PR China", + "ror_ids": [ + "https://ror.org/05vg20182", + "https://ror.org/05htk5m33" + ] + }, + { + "affiliation": "Department of Cardiac SurgeryGorodskaja bol'nitsa No 40 Saint‐Petersburg Russian Federation", + "ror_ids": [] + }, + { + "affiliation": "Mechanical and Manufacturing Engineering, Loughborough University, Loughborough, Leicestershire, LE11 3TU, United Kingdom", + "ror_ids": [ + "https://ror.org/04vg4w365" + ] + }, + { + "affiliation": "Department of Textile Engineering, Faculty of Engineering, University of Guilan, Rasht, Guilan, Iran", + "ror_ids": [ + "https://ror.org/01bdr6121" + ] + }, + { + "affiliation": "Kocaeli University, Kocaeli Vocational School, Department of Chemistry and Chemical Processing Technologies, Kocaeli, Turkey", + "ror_ids": [ + "https://ror.org/0411seq30" + ] + }, + { + "affiliation": "Department of Hematology and Oncology Graduate School of Medicine Osaka University Suita Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "Department of Geography Education, University of Education, Winneba, Ghana", + "ror_ids": [ + "https://ror.org/00y1ekh28" + ] + }, + { + "affiliation": "From the Department of Endocrinology and Thyroid Research, Institute of Nuclear Medicine and Allied Sciences, Delhi, India (RKM, RA, BS, and SS); the Departments of Endocrinology and Metabolism (NT, DHKR, and MAG) and Biostatistics (RS), All India Institute Medical Sciences, New Delhi, India; and the Department of Endocrinology, Defence Institute of Physiological Sciences, Delhi, India (RCS)", + "ror_ids": [ + "https://ror.org/029g42942", + "https://ror.org/02dwcqs71" + ] + }, + { + "affiliation": "Laboratoire de Linguistique Formelle , Université de Paris, CNRS , Paris , France", + "ror_ids": [ + "https://ror.org/05f82e368", + "https://ror.org/0223bz716", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Department of Cell and Developmental Biology, University of Michigan Medical School Ann Arbor MI USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "From the Department of Orthopaedic Surgery (Division of Hand Surgery), Nagoya University School of Medicine, Japan", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Institute of Biodiversity, One Health and Veterinary Medicine, University of Glasgow , Glasgow , United Kingdom", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "Vidya Jyothi Institute of Technology", + "ror_ids": [] + }, + { + "affiliation": "Department of Cardiovascular Surgery, Hospital Christus Muguerza Alta Especialidad, Nuevo Leon, México", + "ror_ids": [ + "https://ror.org/016b66y19" + ] + }, + { + "affiliation": "Medizinische Universitätsklinik, Onkologie, Kantonsspital Baselland, Liestal", + "ror_ids": [ + "https://ror.org/00b747122" + ] + }, + { + "affiliation": "School of Systems EngineeringThe University of ReadingReadingRG6 6AYUK", + "ror_ids": [ + "https://ror.org/05v62cm79" + ] + }, + { + "affiliation": "a Laboratoire de Recherches en Optique et Laser, Département de Physique, Faculté des Sciences et de Génie, Université Laval, Québec, Canada G1K 7P4", + "ror_ids": [ + "https://ror.org/04sjchr03" + ] + }, + { + "affiliation": "2 U.S. Geological Survey, Menlo Park, California 94025", + "ror_ids": [ + "https://ror.org/035a68863" + ] + }, + { + "affiliation": "MAKAUT, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Horticulture, Kangwon National University, Chuncheon 200-701, Korea", + "ror_ids": [ + "https://ror.org/01mh5ph17" + ] + }, + { + "affiliation": "Department of Urology, Aarhus University Hospital, Aarhus, Denmark", + "ror_ids": [ + "https://ror.org/040r8fr65" + ] + }, + { + "affiliation": "Transcultural Psychosocial Organization Nepal, Kathmandu, Nepal", + "ror_ids": [] + }, + { + "affiliation": "Warsaw University of Technology, Faculty of Transport", + "ror_ids": [ + "https://ror.org/00y0xnp53" + ] + }, + { + "affiliation": "Department of Macromolecules, “Gh. Asachi” Technical University, 6600 Jassy, Romania", + "ror_ids": [ + "https://ror.org/014zxnz40" + ] + }, + { + "affiliation": "Central Queensland University, Australia", + "ror_ids": [ + "https://ror.org/023q4bk22" + ] + }, + { + "affiliation": "School of Economic and Business Sciences and AMERU, University of the Witwatersrand, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/03rp50x72" + ] + }, + { + "affiliation": "Centre de recherche Cardio-Thoracique de Bordeaux, Université Bordeaux, Bordeaux, France", + "ror_ids": [ + "https://ror.org/04vgc9p51", + "https://ror.org/057qpr032" + ] + }, + { + "affiliation": "Leiden Institute of Chemistry, Leiden University 1 , P.O. Box 9502, Leiden 2300 RA, The Netherlands", + "ror_ids": [ + "https://ror.org/027bh9e22" + ] + }, + { + "affiliation": "Moscow State University of Technology and Management named after K. G. Razumovsky (First Cossack University)", + "ror_ids": [ + "https://ror.org/05c4crv67" + ] + }, + { + "affiliation": "Paisley College of Technology", + "ror_ids": [] + }, + { + "affiliation": "Biospheric Theory and Modelling, Max Planck Institute for Biogeochemistry, D-07701 Jena, Germany", + "ror_ids": [ + "https://ror.org/051yxp643" + ] + }, + { + "affiliation": "U. S. Geol. Surv.", + "ror_ids": [ + "https://ror.org/035a68863" + ] + }, + { + "affiliation": "Department of Dermatology Amsterdam UMC University of Amsterdam Meibergdreef 9 NL‐1105 AZ Amsterdam The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463" + ] + }, + { + "affiliation": "a Department of Physical Education and Dance , University of Wisconsin at Madison , Madison , WI , 53706 , USA", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "City of London Coroner, Solicitor Advocate and Visiting Professor at King's College, London", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "Marshall School of Business, University of Southern California, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "London School of Economics and Political Science", + "ror_ids": [ + "https://ror.org/0090zs177" + ] + }, + { + "affiliation": "The Wellcome Trust/Cancer Research UK (CRUK) Gurdon Institute and Department of Biochemistry, University of Cambridge, CB2 1QN Cambridge, UK.", + "ror_ids": [ + "https://ror.org/013meh722", + "https://ror.org/00fp3ce15", + "https://ror.org/029chgv08" + ] + }, + { + "affiliation": "From the Department of Cardiology and Angiology, Hannover Medical School, Hannover, Germany (T.K., M.E., M.N., C.W., J.T., J.H., D.K., H.D., K.C.W.); Department of Neuroanatomy, University of Heidelberg, Germany (J.S.); Division of Molecular Cardiovascular Biology, University of Cincinnati, Ohio (J.X., J.D.M.); and Department of Pathology, University Medical Center, Amsterdam, The Netherlands (H.W.N.).", + "ror_ids": [ + "https://ror.org/01e3m7079", + "https://ror.org/00f2yqf98", + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Louisiana State University and Agricultural and Mechanical College", + "ror_ids": [ + "https://ror.org/05ect4e57" + ] + }, + { + "affiliation": "Clincal Research Center, National Hospital Organization Kinki-Chuo Chest Medical Center, Osaka, Japan.", + "ror_ids": [ + "https://ror.org/05jp74k96" + ] + }, + { + "affiliation": "Department of Computer Science and Software Engineering, College of Information Technology, United Arab Emirates University, Al-Ain, UAE", + "ror_ids": [ + "https://ror.org/01km6p862" + ] + }, + { + "affiliation": "Fuller Theological Seminary", + "ror_ids": [ + "https://ror.org/01k6b9k02" + ] + }, + { + "affiliation": "Forest Operations Research Lab, Department of Forest, Rangeland and Fire Sciences, College of Natural Resources, University of Idaho, 975 W. 6th St. Moscow, Idaho 83844, USA", + "ror_ids": [ + "https://ror.org/03hbp5t65" + ] + }, + { + "affiliation": "St. Luke's Medical Center , Manila , Philippines", + "ror_ids": [ + "https://ror.org/02h4kdd20" + ] + }, + { + "affiliation": "Contribution from the National Institute of Chemistry, Hajdrihova 19, SI-1115 Ljubljana, Slovenia, and Laboratory of Medicinal Research, Rega Institute, Katholieke Universiteit Leuven, Minderbroedersstraat 10, B-3000 Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310", + "https://ror.org/03w5j8p12" + ] + }, + { + "affiliation": "日本サステイナビリティ研究所", + "ror_ids": [] + }, + { + "affiliation": "Allegheny Health Network", + "ror_ids": [ + "https://ror.org/0101kry21" + ] + }, + { + "affiliation": "Department of Physics, The University of Calgary, Calgary, Alberta, Canada", + "ror_ids": [ + "https://ror.org/03yjb2x39" + ] + }, + { + "affiliation": "Southern Connecticut State University, New Haven, CT, USA", + "ror_ids": [ + "https://ror.org/00ramkd50" + ] + }, + { + "affiliation": "a Central Geologic Surveying Research Institute and the Institute of Geology, Karelian Branch , USSR Academy of Sciences , Shungites", + "ror_ids": [] + }, + { + "affiliation": "School of Chemistry, Osaka University of Education, 4-698-1 Asahigaoka, Kashiwara, Osaka 582-8582, Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "University of Sannio,Department of Science and Technology, Via Francesco de Sanctis,Benevento,Italy,82100", + "ror_ids": [ + "https://ror.org/04vc81p87" + ] + }, + { + "affiliation": "Division of Applied Life Sciences, Graduate School of Life and Environmental Sciences, Osaka Prefecture University, Sakai, Japan", + "ror_ids": [] + }, + { + "affiliation": "School of Leadership and Human Resource Development, College of Human Sciences and Education, Louisiana State University, Baton Rouge, LA, USA", + "ror_ids": [ + "https://ror.org/05ect4e57" + ] + }, + { + "affiliation": "Tsinghua-Peking Center for Life Sciences, IDG/McGovern Institute for Brain Research, MOE Key Laboratory of Protein Sciences, School of Life Sciences, Tsinghua University, Beijing 100084, P.R. China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "School of Chemistry and Chemical Engineering Xi'an University of Science and Technology Xi'an 710054 China", + "ror_ids": [ + "https://ror.org/046fkpt18" + ] + }, + { + "affiliation": "Department of Biomedical Engineering, Technion-Israel Institute of Technology, Haifa 32000, Israel", + "ror_ids": [ + "https://ror.org/03qryx823" + ] + }, + { + "affiliation": "Research Institute of Clinical Medicine of Jeonbuk National University, Jeonju, Korea", + "ror_ids": [ + "https://ror.org/05q92br09" + ] + }, + { + "affiliation": "Department of Genetics, Washington University School of Medicine, Campus Box 8510, St. Louis, MO 63108, USA", + "ror_ids": [] + }, + { + "affiliation": "Pessac", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurology St. Carollo Hospital Suncheon Jeollanam-do Korea", + "ror_ids": [] + }, + { + "affiliation": "Division of Pulmonary, Critical Care and Sleep Medicine, Wayne State University School of Medicine, Detroit, MI, USA", + "ror_ids": [ + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "THE JAPAN SOCIETY OF CIVIL ENGINEERS", + "ror_ids": [ + "https://ror.org/05c8wa765" + ] + }, + { + "affiliation": "Laboratoire de Mathématiques Appliquées & Calcul Scientifique, Université Sultan Moulay Slimane, BP 523, Beni Mellal 23000, Morocco", + "ror_ids": [ + "https://ror.org/02m8tb249" + ] + }, + { + "affiliation": "Department of Population Health, Faculty of Medicine and Dentistry, University of Western Australia, Crawley, Australia.", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "College of Nursing · Research Institute of Nursing Science, Ajou University, Suwon, Korea.", + "ror_ids": [ + "https://ror.org/03tzb2h73" + ] + }, + { + "affiliation": "Department of Research and development Shanghai Eco. Polymer Sci.&Tech CO., Ltd Shanghai China", + "ror_ids": [] + }, + { + "affiliation": "Department of Clinical Immunology, Medical University of Bialystok, Waszyngtona 17 St., 15-274 Bialystok, Poland", + "ror_ids": [ + "https://ror.org/00y4ya841" + ] + }, + { + "affiliation": "CEFE-CNRS, 34293 Montpellier Cedex 5, France", + "ror_ids": [ + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Augenklinik, Stadtspital Triemli, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/03kpdys72" + ] + }, + { + "affiliation": "University of Michigan", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "The University of Texas at Dallas,Department of Mechanical Engineering,Richardson,TX,USA", + "ror_ids": [ + "https://ror.org/049emcs32" + ] + }, + { + "affiliation": "State Key Lab. of Biogeology and Environmental Geology and School of Environmental Studies China Univ. of Geosciences Wuhan 430074 China", + "ror_ids": [ + "https://ror.org/02q1jkh03", + "https://ror.org/04gcegc37" + ] + }, + { + "affiliation": "Immunology Department Bichat Claude Bernard University Hospital Paris France", + "ror_ids": [ + "https://ror.org/03fdnmv92" + ] + }, + { + "affiliation": "Key Laboratory of Tectonics and Petroleum Resources of Ministry of Education China University of Geosciences (Wuhan) Wuhan 430074 China", + "ror_ids": [ + "https://ror.org/04gcegc37" + ] + }, + { + "affiliation": "Central Baptist Theological Seminary, Nashville eileen.campbellreed@gmail.com", + "ror_ids": [] + }, + { + "affiliation": "Children's Hospital of Philadelphia", + "ror_ids": [ + "https://ror.org/01z7r7q48" + ] + }, + { + "affiliation": "Faculty of Pharmacy, Medical University of Warsaw, Banacha 1, 02-091 Warsaw, Poland", + "ror_ids": [ + "https://ror.org/04p2y4s44" + ] + }, + { + "affiliation": "Unit for Diabetes and Celiac Disease, Department of Clinical Sciences, Lund University, Clinical Research Center (CRC), University Hospital MAS, 205 02 Malmö, Sweden", + "ror_ids": [ + "https://ror.org/012a77v79" + ] + }, + { + "affiliation": "State Key Laboratory of Research on Bioactivities and Clinical Applications of Medicinal Plants The Chinese University of Hong Kong Shatin Hong Kong", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Chiba Polytechnic College Dept. of Mechanical Engineering", + "ror_ids": [] + }, + { + "affiliation": "The George Washington University, Washington, DC", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "Faculty of Technology, Tokyo University of Agriculture and Technology", + "ror_ids": [ + "https://ror.org/00qg0kr10" + ] + }, + { + "affiliation": "Krasnodar Branch of S. Fyodorov Eye Microsurgery Federal State Institution; Kuban State Medical University", + "ror_ids": [ + "https://ror.org/04wa91k02" + ] + }, + { + "affiliation": "University of Alabama", + "ror_ids": [ + "https://ror.org/03xrrjk67" + ] + }, + { + "affiliation": "Department of Hygiene, Gifu University School of Medicine", + "ror_ids": [ + "https://ror.org/024exxj48" + ] + }, + { + "affiliation": "The Hong Kong University of Science and Technology (Guangzhou) & The Hong Kong Uni. of Sci. and Tech., Guangzhou & Hong Kong, China", + "ror_ids": [ + "https://ror.org/00q4vv597" + ] + }, + { + "affiliation": "University of New England, N.S.W.", + "ror_ids": [ + "https://ror.org/02n2ava60" + ] + }, + { + "affiliation": "Universitätsklinikum Gießen, Abteilung für Hals- Nasen- und Ohrenheilkunde Gießen", + "ror_ids": [] + }, + { + "affiliation": "Walter and Eliza Hall Institute Melbourne", + "ror_ids": [ + "https://ror.org/01b6kha49" + ] + }, + { + "affiliation": "Bureau de Recherches Géologiques et Minières (BRGM), Orléans, France", + "ror_ids": [ + "https://ror.org/05hnb7x64" + ] + }, + { + "affiliation": "PharmaMar, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02h694m69" + ] + }, + { + "affiliation": "Department of Mathematical and Computing Science, School of Computing, Tokyo Institute of Technology, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/0112mx960" + ] + }, + { + "affiliation": "Universiteit Leiden", + "ror_ids": [ + "https://ror.org/027bh9e22" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Engineering Science, Osaka University", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "National Digital Switching System Engineering and Technological Research Center", + "ror_ids": [] + }, + { + "affiliation": "Université de Paris CMPLI, INSERM ERL U1133 (BFA, CNRS UMR 8251) E-pôle de génoinformatique Institut Jacques Monod, CNRS UMR 75205 Paris France", + "ror_ids": [ + "https://ror.org/05f82e368", + "https://ror.org/02c5gc203", + "https://ror.org/02feahw73", + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Hospital Santa Marcelina de Itaquera", + "ror_ids": [ + "https://ror.org/04sgy9050" + ] + }, + { + "affiliation": "Ear, Nose and Throat (ENT) Department NHS Greater Glasgow and Clyde, Queen Elizabeth University Hospital Glasgow UK", + "ror_ids": [ + "https://ror.org/04y0x0x35", + "https://ror.org/05kdz4d87" + ] + }, + { + "affiliation": "Facultad de Ciencias, Universidad Autónoma de Baja California", + "ror_ids": [ + "https://ror.org/05xwcq167" + ] + }, + { + "affiliation": "a Naval Postgraduate School , Monterey, California", + "ror_ids": [ + "https://ror.org/033yfkj90" + ] + }, + { + "affiliation": "Gaubius Institute, Health Research Organization TNO, Herenstraat 5d, Leiden, The Netherlands", + "ror_ids": [] + }, + { + "affiliation": "Advanced Robotics Center at the National University of Singapore (NUS),Department of Biomedical Engineering,Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "University of Freiburg; Centre for Paediatrics and Adolescent Medicine; Freiburg Germany", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "University of Colorado (United States)", + "ror_ids": [ + "https://ror.org/00jc20583" + ] + }, + { + "affiliation": "School of Civil Engineering Southeast University Nanjing China", + "ror_ids": [ + "https://ror.org/04ct4d772" + ] + }, + { + "affiliation": "Department of Orthopedics, Changzheng Hospital, The Second Military Medical University, Shanghai", + "ror_ids": [ + "https://ror.org/04tavpn47" + ] + }, + { + "affiliation": "Department of Chemical Engineering, University of Waterloo, ON, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "d Department of Medical Pharmacology, Gulhane School of Medicine, Ankara, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Alassad Medical Complex, Hama, Syrian Arab Republic.", + "ror_ids": [] + }, + { + "affiliation": "School of Life Sciences Zhengzhou University Zhengzhou Henan Province China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "University of Kent, Kent, UK", + "ror_ids": [ + "https://ror.org/00xkeyj56" + ] + }, + { + "affiliation": "1Korea/University of Ulsan, Ulsan, Republic of Korea;", + "ror_ids": [ + "https://ror.org/02c2f8975" + ] + }, + { + "affiliation": "State Key Laboratory of Microbial Resources, Institute of Microbiology, Chinese Academy of Sciences, Beijing 100101, PR China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/047yhep71" + ] + }, + { + "affiliation": "MUŞ ALPARSLAN ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/009axq942" + ] + }, + { + "affiliation": "e-mail:  Department of Ocean and Resources Engineering, University of Hawaii, Honolulu, HI 96822", + "ror_ids": [ + "https://ror.org/03tzaeb71" + ] + }, + { + "affiliation": "Consortium on Health, Environment, Education and Research (CHEER), and Department of Science and Environmental Studies The Hong Kong Institute of Education Tai Po Hong Kong SAR China", + "ror_ids": [ + "https://ror.org/000t0f062" + ] + }, + { + "affiliation": "Universidade de Pernambuco, Brasil", + "ror_ids": [ + "https://ror.org/00gtcbp88" + ] + }, + { + "affiliation": "Central Food Technological Research Institute Mysore (India)", + "ror_ids": [ + "https://ror.org/01d7fn555" + ] + }, + { + "affiliation": "Tianjin Women's and Children's Health Center Tianjin China", + "ror_ids": [] + }, + { + "affiliation": "University of Aberdeen, Aberdeen, UK", + "ror_ids": [ + "https://ror.org/016476m91" + ] + }, + { + "affiliation": "Virology Division, Department of Infectious Diseases and Immunology, Utrecht University, Faculty of Veterinary Medicine, and Institute of Biomembranes, Yalelaan 1, 3584 CL Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "Indian Institute of Technology Guwahati", + "ror_ids": [ + "https://ror.org/0022nd079" + ] + }, + { + "affiliation": "Department of Environmental Science Baylor University Waco Texas USA", + "ror_ids": [ + "https://ror.org/005781934" + ] + }, + { + "affiliation": "University of Montana", + "ror_ids": [ + "https://ror.org/0078xmk34" + ] + }, + { + "affiliation": "Physical Chemistry Department and Center for Nanoscience and Nanotechnology, The Hebrew University, Jerusalem 91904, Israel, Department of Biochemistry, George S. Wise Faculty of Life Sciences, Tel Aviv University, Ramat Aviv, 69978 Israel and Tel Aviv University Nanotechnology Center, and Centro S3, CNR Istituto di Nanoscienze, Via Campi 213/A, 41125 Modena, Italy", + "ror_ids": [ + "https://ror.org/04mhzgx49", + "https://ror.org/03qxff017", + "https://ror.org/0042e5975" + ] + }, + { + "affiliation": "Freelance writer and Fellow of the Institute of Biomedical Science", + "ror_ids": [ + "https://ror.org/05t77d857" + ] + }, + { + "affiliation": "Sheffield", + "ror_ids": [] + }, + { + "affiliation": "Jacksonville, Fla.", + "ror_ids": [] + }, + { + "affiliation": "Instituto Tecnológico Superior de Tlaxco", + "ror_ids": [] + }, + { + "affiliation": "AbbVie S.r.l. Campoverde Latina Italy", + "ror_ids": [ + "https://ror.org/036wkxc84" + ] + }, + { + "affiliation": "Center for Applied Mathematics Ecole Polytechnique CNRS UMR 7641, Route de Saclay 91128 Palaiseau Cedex France", + "ror_ids": [ + "https://ror.org/05hy3tk52", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Rajalakshmi Engineering College,Department of Information Technolog,Chennai,Tamil Nadu,India", + "ror_ids": [ + "https://ror.org/01dw2vm55" + ] + }, + { + "affiliation": "School of Pharmacy, Key Laboratory of Molecular Pharmacology & Drug Evaluation (Yantai University), Ministry of Education, Collaborative Innovation Center of Advanced Drug Delivery System & Biotech Drugs in Universities of Shandong, Yantai University, Yantai, 264005, China", + "ror_ids": [ + "https://ror.org/01rp41m56" + ] + }, + { + "affiliation": "Faculty of Biology, Department of Genetics, Physiology, and Microbiology, Complutense University of Madrid, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "The Department of Pediatrics and the Division of Nutrition of the Departments of Biochemistry and Medicine, Vanderbilt University School of Medicine, Nashville, Tenn.", + "ror_ids": [ + "https://ror.org/02vm5rt34" + ] + }, + { + "affiliation": "Centro de Tecnologías Físicas, Universitat Politècnica de València , Camí de Vera s/n, 46022, Valencia, Spain", + "ror_ids": [ + "https://ror.org/01460j859" + ] + }, + { + "affiliation": "Psychology Department Medicine Faculty of Albacete University of Castilla‐La Mancha Albacete Spain", + "ror_ids": [ + "https://ror.org/05r78ng12" + ] + }, + { + "affiliation": "School of Mechanical and Systems Engineering, Newcastle University, Newcastle-Upon-Tyne, UK", + "ror_ids": [ + "https://ror.org/01kj2bm70" + ] + }, + { + "affiliation": "State Key Laboratory of Elemento-Organic Chemistry, Nankai University, Tianjin 300071, P. R. China", + "ror_ids": [ + "https://ror.org/01y1kjr75" + ] + }, + { + "affiliation": "Department of Gastroenterology The First Affiliated Hospital of Xi'an Jiaotong University Xi'an Shaanxi People's Republic of China", + "ror_ids": [ + "https://ror.org/02tbvhh96" + ] + }, + { + "affiliation": "Camco Subsea Services", + "ror_ids": [] + }, + { + "affiliation": "1Istanbul", + "ror_ids": [] + }, + { + "affiliation": "Instituto Agronômico", + "ror_ids": [] + }, + { + "affiliation": "None", + "ror_ids": [] + }, + { + "affiliation": "Potsdam", + "ror_ids": [] + }, + { + "affiliation": "Institut für Lebensmittelwissenschaft und Humanernährung Gottfried Wilhelm Leibniz Universität Hannover Am Kleinen Felde 30 D‐30167 Hannover", + "ror_ids": [ + "https://ror.org/0304hq317" + ] + }, + { + "affiliation": "Rosenstiel Basic Medical Sciences Research Center, Brandeis University, Waltham, Massachusetts 02154", + "ror_ids": [ + "https://ror.org/05abbep66" + ] + }, + { + "affiliation": "US Food and Drug Administration, Center for Food Safety and Applied Nutrition, College Park, MD 20740, USA", + "ror_ids": [ + "https://ror.org/05hzdft06", + "https://ror.org/034xvzb47" + ] + }, + { + "affiliation": "Blindern/Oslo", + "ror_ids": [] + }, + { + "affiliation": "Universidad de Buenos Aires, Argentinien", + "ror_ids": [ + "https://ror.org/0081fs513" + ] + }, + { + "affiliation": "Assistant Professor, Tilburg Law School, Tilburg University, Tilburg, the Netherlands", + "ror_ids": [ + "https://ror.org/04b8v1s79" + ] + }, + { + "affiliation": "The Institute of Linguistics, The Russian Academy of Sciences, Moscow, Russian Federation", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Akademija dramske umjetnosti, Sveučilište u Zagrebu, Hrvatska", + "ror_ids": [ + "https://ror.org/00mv6sv71" + ] + }, + { + "affiliation": "CPPN Instituto de Meteorologia I.P. Lisbon Portugal", + "ror_ids": [] + }, + { + "affiliation": "State\nKey Laboratory of Fine Chemicals, School of Chemistry, Dalian University of Technology, Dalian 116012, P. R. China", + "ror_ids": [ + "https://ror.org/023hj5876" + ] + }, + { + "affiliation": "Clinical Associate Professor, Centre for Values, Ethics the Law and Medicine, School of Public Health, University of Sydney, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Water Resources Research Center, Disaster Prevention Research Institute, Kyoto University", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "115, Piceadilly", + "ror_ids": [] + }, + { + "affiliation": "University of Twente", + "ror_ids": [ + "https://ror.org/006hf6230" + ] + }, + { + "affiliation": "National Superconducting Cyclotron Laboratory and Department of Physics and Astronomy, Michigan State University, East Lansing, MI 48824-1321, USA", + "ror_ids": [ + "https://ror.org/05hs6h993", + "https://ror.org/00qerpb33" + ] + }, + { + "affiliation": "Food Science and Technology Program Department of Chemistry National University of Singapore Science Drive 3 Singapore City 117543 Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Salesforce.com and Princeton University", + "ror_ids": [ + "https://ror.org/00hx57361", + "https://ror.org/057315g56" + ] + }, + { + "affiliation": "Department of Systematic Botany, Biological Centre, Rijksuniversiteit Groningen, Kerklaan 30, Postbus 14, 9750 AA Haren, Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Aerospace Engineering, Nagoya University", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Loyola University of Chicago", + "ror_ids": [ + "https://ror.org/04b6x2g63" + ] + }, + { + "affiliation": "Royal Military College, Kingston, Ontario K7K 5L0 Canada", + "ror_ids": [] + }, + { + "affiliation": "Solid State Electronics, The Ångström Laboratory, Uppsala University , SE-75121 Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/048a87296" + ] + }, + { + "affiliation": "Wuhan University of Technology", + "ror_ids": [ + "https://ror.org/03fe7t173" + ] + }, + { + "affiliation": "DEM Beckman Research Institute of City of Hope Duarte CA", + "ror_ids": [ + "https://ror.org/05fazth07" + ] + }, + { + "affiliation": "Department of Environmental management-HSE, Ahvaz Branch, Islamic Azad University, Ahvaz, Iran", + "ror_ids": [ + "https://ror.org/04vcs0j60" + ] + }, + { + "affiliation": "Department of Chemical and Biological Engineering, Drexel University, Philadelphia, PA 19104, U.S.A.", + "ror_ids": [ + "https://ror.org/04bdffz58" + ] + }, + { + "affiliation": "Department of Clinical Immunology and Allergy, Medical University of Lodz, Krzemieniecka 5, Lodz 94-017, Poland", + "ror_ids": [ + "https://ror.org/02t4ekc95" + ] + }, + { + "affiliation": "Changsha 410083", + "ror_ids": [] + }, + { + "affiliation": "School of Mechatronic Engineering, Xi’an Technological University, Xi’an, China", + "ror_ids": [ + "https://ror.org/01t8prc81" + ] + }, + { + "affiliation": "Department of Physics and Astronomy, University of Delaware, Newark, Delaware 19716", + "ror_ids": [ + "https://ror.org/01sbq1a82" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry and Institute for Marine Sciences, University of California, Santa Cruz, California 95064, Josephine Ford Cancer Center, Henry Ford Health System, Detroit, Michigan 48202, and Southwest Foundation for Biomedical Research, San Antonio, Texas 78245", + "ror_ids": [ + "https://ror.org/00wbskb04", + "https://ror.org/03s65by71", + "https://ror.org/02kwnkm68" + ] + }, + { + "affiliation": "Department of Internal Medicine, Faculty of Medicine, Thammasat University, Pathumthani, Thailand", + "ror_ids": [ + "https://ror.org/002yp7f20" + ] + }, + { + "affiliation": "NeoGenomics, Aliso Viejo, CA;", + "ror_ids": [ + "https://ror.org/04vj14y69" + ] + }, + { + "affiliation": "Delaware Agricultural Experiment Station, Department of Animal Science and Agricultural Biochemistry, College of Agricultural Sciences and College of Marine Studies, University of Delaware, Newark, DE 19717", + "ror_ids": [ + "https://ror.org/01sbq1a82" + ] + }, + { + "affiliation": "Oregon Health and Science University Portland OR USA", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Laboratório de Biodiversidade e Restauração de Ecossistemas, Departamento de Biologia Geral, Centro de Ciências Biológicas, Universidade Estadual de Londrina, Caixa Postal 6001, CEP 86051-990, Londrina, PR, Brazil.", + "ror_ids": [ + "https://ror.org/01585b035" + ] + }, + { + "affiliation": "Old Dominion University", + "ror_ids": [ + "https://ror.org/04zjtrb98" + ] + }, + { + "affiliation": "Department of Applied Mechanics, Indian Institute of Technology Delhi, New Delhi, India", + "ror_ids": [ + "https://ror.org/049tgcd06" + ] + }, + { + "affiliation": "Wisconsin Public Television", + "ror_ids": [] + }, + { + "affiliation": "Worcester, MA, Boston, MA, Los Angeles, CA, Manchester, United Kingdom", + "ror_ids": [] + }, + { + "affiliation": "Science, AAAS, Washington, DC 20005, USA", + "ror_ids": [] + }, + { + "affiliation": "JAPAN SOCIETY OF CIVIL ENGINEERS", + "ror_ids": [ + "https://ror.org/05c8wa765" + ] + }, + { + "affiliation": "Wayne State University School of Medicine and Lafayette Clinic.", + "ror_ids": [ + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "Department of Chemistry, Graduate School of Science, Chiba University, Chiba 263-8522, Japan, Department of Mechanics and System Design, Faculty of Systems Engineering, Tokyo University of Science, Suwa, 391-0292, Japan, Department of Chemical Engineering, Kyoto University, Kyoto, 615-8510, Japan, JST/SORST, c/o NEC Corporation, Miyukigaoka, Tsukuba 305-8501, Japan, and Department of Physics, Meijyo University, Nagoya 468-8522, Japan", + "ror_ids": [ + "https://ror.org/01hjzeq58", + "https://ror.org/05sj3n476", + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Department of Renewable Resources, Faculty of Agriculture, Macdonald College of McGill University, Ste. Anne de Bellevue, Quebec, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Universidade Federal do Rio de Janeiro, Brasil", + "ror_ids": [ + "https://ror.org/03490as77" + ] + }, + { + "affiliation": "Kuban State Agrarian University Krasnodar,Department of Electrical Machines and Electric Drives,Russian Federation", + "ror_ids": [ + "https://ror.org/058jafb94" + ] + }, + { + "affiliation": "Chem. Institut d. Universität Berlin", + "ror_ids": [ + "https://ror.org/01hcx6992" + ] + }, + { + "affiliation": "Forestry and Forest Products Research Institute", + "ror_ids": [ + "https://ror.org/044bma518" + ] + }, + { + "affiliation": "Santa Barbara, California, USA.", + "ror_ids": [] + }, + { + "affiliation": "1 Brigham Young University, Provo, Utah", + "ror_ids": [ + "https://ror.org/047rhhm47" + ] + }, + { + "affiliation": "Radboud University Nijmegen, The Netherlands", + "ror_ids": [ + "https://ror.org/016xsfp80" + ] + }, + { + "affiliation": "Department of Epidemiology, Mailman School of Public Health, Columbia University , 722 W. 168th Street, New York, NY 10032, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "School of Medical Sciences (Pharmacology)", + "ror_ids": [] + }, + { + "affiliation": "Jiangsu Normal University", + "ror_ids": [ + "https://ror.org/051hvcm98" + ] + }, + { + "affiliation": "Purdue University, West Lafayette, IN", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Departments of Functional Neurosurgery,", + "ror_ids": [] + }, + { + "affiliation": "University of Utrecht", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "MPI Informatik", + "ror_ids": [] + }, + { + "affiliation": "a Universität-GH Siegen , Fachbereich 8, Laboratorium für Makromolekulare Chemie, Adolf-Reichwein-Str. 2, D-57068, Siegen, Germany", + "ror_ids": [ + "https://ror.org/02azyry73" + ] + }, + { + "affiliation": "St John's Hospital Howden Livingston, West Lothian UK", + "ror_ids": [] + }, + { + "affiliation": "Department of General Surgery China‐Japan Friendship Hospital Beijing China", + "ror_ids": [ + "https://ror.org/037cjxp13" + ] + }, + { + "affiliation": "Hull Zoological Laboratory, University of Chicago, Chicago, Ill.", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of Chemistry “Ugo Schiff” University of Florence Via della Lastruccia, 3‐13 50019 Sesto Fiorentino Italy", + "ror_ids": [ + "https://ror.org/04jr1s763" + ] + }, + { + "affiliation": "Children’s Hospital of Philadelphia", + "ror_ids": [ + "https://ror.org/01z7r7q48" + ] + }, + { + "affiliation": "Research Scientist, MCEER, State Univ. New York at Buffalo, Buffalo, NY 14260.", + "ror_ids": [ + "https://ror.org/01y64my43" + ] + }, + { + "affiliation": "P. N. Lebedev Physical Institute 53 Leninskiy prospekt 119991 Moscow Russia", + "ror_ids": [ + "https://ror.org/01jkd3546" + ] + }, + { + "affiliation": "Encino Hospital Encino, CA 91436", + "ror_ids": [] + }, + { + "affiliation": "State Key Laboratory for Biology of Plant Diseases and Insect Pests, Institute of Plant Protection (IPP), Chinese Academy of Agricultural Sciences (CAAS), Beijing 100193, P.R. China", + "ror_ids": [ + "https://ror.org/0313jb750", + "https://ror.org/0111f7045" + ] + }, + { + "affiliation": "University of St. Thomas, Minnesota", + "ror_ids": [ + "https://ror.org/05vfxvp80" + ] + }, + { + "affiliation": "Shell E&P Technology Co.", + "ror_ids": [] + }, + { + "affiliation": "Department of Hematology, Shanxi Bethune Hospital, Shanxi Academy of Medical Sciences, Tongji Shanxi Hospital, Third Hospital of Shanxi Medical University, Taiyuan, Shanxi, China", + "ror_ids": [ + "https://ror.org/0265d1010", + "https://ror.org/04tshhm50" + ] + }, + { + "affiliation": "Shoreline Veterinary Dental Clinic, 16037 Aurora Avenue North, Seattle, WA 98133-5653", + "ror_ids": [] + }, + { + "affiliation": "School of Chemistry, Physics and Mechanical Engineering Queensland University of Technology (QUT) Brisbane QLD 4001 Australia", + "ror_ids": [ + "https://ror.org/03pnv4752" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Northwestern University, Evanston, Illinois 60208", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Military Medical Academy, Clinic for Plastic Surgery and Burns, Belgrade", + "ror_ids": [ + "https://ror.org/04dt6a039" + ] + }, + { + "affiliation": "Department of Physical Medicine and Rehabilitation, College of Medicine, Yeungnam University, Daemyungdong, Namku, Daegu 705-717, Republic of Korea", + "ror_ids": [ + "https://ror.org/05yc6p159" + ] + }, + { + "affiliation": "Key Laboratory of Advanced Material of Ship and Mechanics, Ministry of Industry and Information Technology, Harbin Engineering University, Harbin, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03x80pn82" + ] + }, + { + "affiliation": "Department of Oncology Division of Radiation Oncology McGill University Montreal General Hospital 1650 Cedar Ave. Montreal, QC.., Canada H3G 1A4", + "ror_ids": [ + "https://ror.org/04gbhgc79", + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Helensburgh, N.B.", + "ror_ids": [] + }, + { + "affiliation": "Université Toulouse", + "ror_ids": [ + "https://ror.org/004raaa70" + ] + }, + { + "affiliation": "Depatment of Infection & Immunity, Luxembourg Institute of Health, Luxembourg", + "ror_ids": [ + "https://ror.org/012m8gv78" + ] + }, + { + "affiliation": "The University of Texas at El Paso,USA", + "ror_ids": [ + "https://ror.org/04d5vba33" + ] + }, + { + "affiliation": "a Institute of the International Workers' Movement, USSR Academy of Sciences, Moscow", + "ror_ids": [] + }, + { + "affiliation": "Department of Micromorphology and Electron Microscopy, University of Vienna", + "ror_ids": [ + "https://ror.org/03prydq77" + ] + }, + { + "affiliation": "Authors' Affiliations: 1Archimedes, Inc., San Francisco; 2Department of Natural Sciences and Mathematics, Dominican University of California, San Rafael, California; and 3Genetic Technologies, Ltd., Fitzroy, Victoria, Australia", + "ror_ids": [ + "https://ror.org/056d3gw71", + "https://ror.org/05j4ckm72" + ] + }, + { + "affiliation": "Department of Gastroenterology, Fujen Catholic University Hospital, New Taipei City, Taiwan", + "ror_ids": [ + "https://ror.org/04je98850" + ] + }, + { + "affiliation": "Division of Hematology/Oncology, Department of Medicine, University of Virginia, Charlottesville, USA", + "ror_ids": [ + "https://ror.org/0153tk833" + ] + }, + { + "affiliation": "Estudio General de Navarra Pamplona", + "ror_ids": [] + }, + { + "affiliation": "Beijing", + "ror_ids": [] + }, + { + "affiliation": "University of Durham", + "ror_ids": [ + "https://ror.org/01v29qb04" + ] + }, + { + "affiliation": "Department of General Surgery, Gaziantep University Faculty of Medicine, Gaziantep, Turkey.", + "ror_ids": [ + "https://ror.org/020vvc407" + ] + }, + { + "affiliation": "Institut fur Anatomie, Physiologie, und Hygiene der Haustiere, Bonn, Germany.", + "ror_ids": [] + }, + { + "affiliation": "Division of Behavioral Sciences, Research Center for Public Health Sciences, National Cancer Center, Chuo-Ku, Japan;", + "ror_ids": [] + }, + { + "affiliation": "National Institute for Quantum and Radiological Science and Technology", + "ror_ids": [ + "https://ror.org/020rbyg91" + ] + }, + { + "affiliation": "LabCorp Specialty Testing Group Cancer Cytogenetics Laboratory Integrated Oncology Phoenix AZ USA", + "ror_ids": [ + "https://ror.org/03zsdhz84" + ] + }, + { + "affiliation": "Hans Mak Institute, Naarden;", + "ror_ids": [ + "https://ror.org/03y974j42" + ] + }, + { + "affiliation": "Nursing Science, East Carolina University, Greenville, NC, USA", + "ror_ids": [ + "https://ror.org/01vx35703" + ] + }, + { + "affiliation": "Legal Surveys and Aeronautical Charts Division, Surveys and Mapping Branch, Department of Mines and Technical Surveys", + "ror_ids": [] + }, + { + "affiliation": "Hospital Municipal Infantil Menino Jesus", + "ror_ids": [] + }, + { + "affiliation": "Professor, Department of Innovation in Medical Education, Director of Research, Office of Continuing Professional Development, University of Ottawa, Ottawa, Canada, Assistant Professor, Department of Surgery, University of Toronto, Toronto, Canada, and Editor-in-Chief, Journal of Continuing Education in the Health Professions.", + "ror_ids": [ + "https://ror.org/03c4mmv16", + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "University of Datyon", + "ror_ids": [ + "https://ror.org/021v3qy27" + ] + }, + { + "affiliation": "Department of Synthetic Chemistry & Biological Chemistry, Faculty of Engineering, Kyoto University", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Department of Medicine University of Toronto Toronto Ontario", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Department of Mechanical and Aerospace Engineering, Politecnico", + "ror_ids": [] + }, + { + "affiliation": "a Xinjiang Institute of Ecology and Geography, Chinese Academy of Sciences, 818 South Beijing Road, Xinshiqu District , Urumqi, 830011, Xinjiang, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/01a8ev928" + ] + }, + { + "affiliation": "Department of Chemistry, Mail Stop 216, University of Nevada, Reno, Nevada 89557", + "ror_ids": [ + "https://ror.org/01keh0577" + ] + }, + { + "affiliation": "Institute for High Performance Computing and Networking, National Research Council of Italy (ICAR-CNR), Via Pietro Castellino 111, 80131 Naples, Italy", + "ror_ids": [ + "https://ror.org/04r5fge26" + ] + }, + { + "affiliation": "Faculty of Chemistry Jagiellonian University Gronostajowa St. 2 30‐387 Kraków Poland", + "ror_ids": [ + "https://ror.org/03bqmcz70" + ] + }, + { + "affiliation": "Department of Chemistry, Louisiana State University, Baton Rouge, Louisiana 70803", + "ror_ids": [ + "https://ror.org/05ect4e57" + ] + }, + { + "affiliation": "Calgary", + "ror_ids": [] + }, + { + "affiliation": "a \n Department of Engineering , Texas Christian University\n, Fort Worth, Texas", + "ror_ids": [ + "https://ror.org/054b0b564" + ] + }, + { + "affiliation": "Oak Ridge National Laboratory,Computational Sciences and Engineering Division,Oak Ridge,TN,USA", + "ror_ids": [ + "https://ror.org/01qz5mb56" + ] + }, + { + "affiliation": "International Centre for Reproductive Health (ICRH), Department of Public Health and Primary Care, Faculty of Medicine and Health Sciences, Ghent University, Ghent, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Memphis Center for Urban Theological Studies", + "ror_ids": [] + }, + { + "affiliation": "From the Department of Pathology, University of Texas Medical Branch, Galveston Texas.", + "ror_ids": [ + "https://ror.org/016tfm930" + ] + }, + { + "affiliation": "Ecosystem Processes Division US Environmental Protection Agency Athens Georgia", + "ror_ids": [ + "https://ror.org/03tns0030" + ] + }, + { + "affiliation": "University of Évora, Portugal", + "ror_ids": [ + "https://ror.org/02gyps716" + ] + }, + { + "affiliation": "Institute for Systems based on Optoelectronics and Microtechnology (ISOM), Universidad Politécnica de Madrid 2 , Avda. Complutense 30, 28040 Madrid, Spain", + "ror_ids": [ + "https://ror.org/03n6nwv02" + ] + }, + { + "affiliation": "3Laboratório de Investigaçao Médica-Parasitológica, Instituto de Medicina Tropical/Dept. de Moléstias Infecciosas do Hospital das Clínicas, Universidade de São Paulo, 01246-903 São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Nichiden-Rika Glass Co., Ltd.", + "ror_ids": [] + }, + { + "affiliation": "IDMEC, Instituto Superior Técnico, Universidade de Lisboa, 1049-001 Lisboa, Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86" + ] + }, + { + "affiliation": "Department of Medicine, Divisions of General Internal Medicine and Endocrinology and Metabolism, St. Michael's Hospital, University of Toronto, 30 Bond St, Toronto, Ontario, M5B 1W8, Canada,", + "ror_ids": [ + "https://ror.org/03dbr7087", + "https://ror.org/04skqfp25" + ] + }, + { + "affiliation": "School of Pharmaceutical Science, Liaoning University, Shenyang, China.", + "ror_ids": [ + "https://ror.org/03xpwj629" + ] + }, + { + "affiliation": "Heidelberg University Hospital, Department for General Internal Medicine and Psychosomatics", + "ror_ids": [ + "https://ror.org/013czdx64" + ] + }, + { + "affiliation": "Diabetes and Metabolism, Mile End Diabetes Centre, The Royal London Hospital, London E1 4DG", + "ror_ids": [ + "https://ror.org/019my5047" + ] + }, + { + "affiliation": "Klaipėdos jūrininkų ligoninė, Klaipėdos universitetas", + "ror_ids": [ + "https://ror.org/027sdcz20" + ] + }, + { + "affiliation": "Department of Molecular and Cell Biology, University of Connecticut, Storrs, Connecticut 06269-3125, and Department of Microbiology and Immunology, School of Medicine, The University of North Carolina at Chapel Hill, Chapel Hill, North Carolina 27599-7290", + "ror_ids": [ + "https://ror.org/0130frc33", + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "Department of Developmental and Cell Biology; University of California, Irvine; Irvine; California", + "ror_ids": [ + "https://ror.org/04gyf1771" + ] + }, + { + "affiliation": "Department of Preventive Medicine, Jeju National University School of Medicine, Jeju, Korea.", + "ror_ids": [ + "https://ror.org/05hnb4n85" + ] + }, + { + "affiliation": "Shanghai Jiao Tong University, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Department of Civil Engineering, Tohoku University , Sendai 980-8579, Japan Tel: ; Fax:", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "University of California Merced Merced CA", + "ror_ids": [ + "https://ror.org/00d9ah105" + ] + }, + { + "affiliation": "IEETA Universidade de Aveiro,DETI,Aveiro,Portugal", + "ror_ids": [ + "https://ror.org/00nt41z93" + ] + }, + { + "affiliation": "University of Arkansas", + "ror_ids": [ + "https://ror.org/05vvhh982" + ] + }, + { + "affiliation": "University Medicine Greifswald", + "ror_ids": [ + "https://ror.org/025vngs54" + ] + }, + { + "affiliation": "Department of Zoology and Physiology Rutgers University Newark, NJ", + "ror_ids": [ + "https://ror.org/05vt9qd57" + ] + }, + { + "affiliation": "Veterans Affairs New England Mental Illness Research Education, and Clinical Center West Haven, Connecticut USA", + "ror_ids": [ + "https://ror.org/02hd1sz82" + ] + }, + { + "affiliation": "Consejo Nacional de Investigaciones Científicas y Técnicas (CONICET)", + "ror_ids": [ + "https://ror.org/03cqe8w59" + ] + }, + { + "affiliation": "Centre for Global Research, RMIT University, Australia", + "ror_ids": [ + "https://ror.org/04ttjf776" + ] + }, + { + "affiliation": "Department of Radiology, Ainshams university hospitals, Cairo, Egypt", + "ror_ids": [] + }, + { + "affiliation": "Ph.D., Assistant Professor, Department of Human Resource Management, College of Business Administration, Prince Sattam Bin Abdulaziz University", + "ror_ids": [ + "https://ror.org/04jt46d36" + ] + }, + { + "affiliation": "Beijing Jiaotong University a Key Laboratory of Luminescence and Optical Information, Ministry of Education, , Beijing 100044, China", + "ror_ids": [ + "https://ror.org/01yj56c84" + ] + }, + { + "affiliation": "School of Computer Science, University of Windsor", + "ror_ids": [ + "https://ror.org/01gw3d370" + ] + }, + { + "affiliation": "National Taiwan Normal University Department of Physics, , Taipei 116, Taiwan, Republic of China", + "ror_ids": [ + "https://ror.org/059dkdx38" + ] + }, + { + "affiliation": "GRUMMAN AEROSPACE CORP., BETHPAGE, N.Y.", + "ror_ids": [] + }, + { + "affiliation": "National Institute of Standards and Technology", + "ror_ids": [ + "https://ror.org/05xpvk416" + ] + }, + { + "affiliation": "School of Automation, Beijing Institute of Technology,Beijing,China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "The Department of Applied Physics, The Hebrew University of Jerusalem, Jerusalem 9190401, Israel", + "ror_ids": [ + "https://ror.org/03qxff017" + ] + }, + { + "affiliation": "Department of Molecular Microbiology; Washington University School of Medicine; St. Louis Missouri 63110", + "ror_ids": [] + }, + { + "affiliation": "Institute of Irish Studies, University of Liverpool, Liverpool, UK", + "ror_ids": [ + "https://ror.org/04xs57h96" + ] + }, + { + "affiliation": "PARC Institute, USA", + "ror_ids": [ + "https://ror.org/0529fxt39" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Indian Institute of Technology Ropar, Rupnagar, Punjab 140001, India", + "ror_ids": [ + "https://ror.org/02qkhhn56" + ] + }, + { + "affiliation": "Centre d'Etudes Biologiques de Chizé UMR7372 CNRS‐La Rochelle Université Villiers‐en‐Bois France", + "ror_ids": [ + "https://ror.org/00s8hq550", + "https://ror.org/04mv1z119", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Fuji Electric Co., Ltd.", + "ror_ids": [ + "https://ror.org/056701b75" + ] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biology, Genetics Institute, Shands Cancer Center and Center for Nutritional Sciences, University of Florida College of Medicine, Gainesville, Florida 32610, U.S.A.", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Electronics and Photonics Department, Institute of High Performance Computing, A*STAR, Singapore 138632", + "ror_ids": [ + "https://ror.org/02n0ejh50" + ] + }, + { + "affiliation": "Faculty of Pharmaceutical Sciences, Tokyo University of Science, Noda-shi, Japan", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Federal Research Center of Coal and Coal-Chemistry of Siberian Branch of the Russian Academy of Sciences", + "ror_ids": [ + "https://ror.org/02frkq021" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Villanova University, Villanova, PA 19085", + "ror_ids": [ + "https://ror.org/02g7kd627" + ] + }, + { + "affiliation": "Jiangxi Science & Technology Normal University", + "ror_ids": [ + "https://ror.org/04r1zkp10" + ] + }, + { + "affiliation": "Institute of Macromolecular Chemistry, University of Freiburg, 79104 Freiburg, Germany; and “P.Poni” Institute of Macromolecular Chemistry, 6600 Iasi, Romania", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "Institute of Solid State Physics, Russian Academy of Sciences, Akademika Osip'yana str. 2, Chernogolovka, Moscow Region, 142432, Russian Federation", + "ror_ids": [ + "https://ror.org/05qrfxd25", + "https://ror.org/00ezjkn15" + ] + }, + { + "affiliation": "State Key Laboratory of Virtual Reality Technology and Systems Beihang University China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "C&EN WASHINGTON", + "ror_ids": [] + }, + { + "affiliation": "Ohio State University", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Universidad de Guayaquil", + "ror_ids": [] + }, + { + "affiliation": "Yancheng Institute of Technology", + "ror_ids": [ + "https://ror.org/04y8njc86" + ] + }, + { + "affiliation": "Department of Environmental SciencesPolicy and ManagementUniversity of CaliforniaBerkeleyCA 94720USA", + "ror_ids": [ + "https://ror.org/01an7q238" + ] + }, + { + "affiliation": "Amsterdam School of Communication Research, University of Amsterdam, Amsterdam, the Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463" + ] + }, + { + "affiliation": "Universiteit Gent", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Çankırı Karatekin University, Faculty of Science, Department of Mathematics, Çankiri, Turkey", + "ror_ids": [ + "https://ror.org/011y7xt38" + ] + }, + { + "affiliation": "Prof., Dept. of Civ. and Environmental Engrg., Univ. of Wisconsin, Madison, Wisc. 53706", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Medical Department, Brookhaven National Laboratory, Upton, Long Island, New York", + "ror_ids": [ + "https://ror.org/02ex6cf31" + ] + }, + { + "affiliation": "St Hugh’s College, Oxford", + "ror_ids": [] + }, + { + "affiliation": "College of Food Sciences and Engineering, South China University of Technology, Guangzhou 510640, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Millikin University , Decatur , IL , USA", + "ror_ids": [ + "https://ror.org/013bgdt24" + ] + }, + { + "affiliation": "University of Michigan Law School", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Animal Health Research Institute/Shebin El‐Koom Branch Menoufia Egypt", + "ror_ids": [] + }, + { + "affiliation": "De La Salle North Catholic High School, Portland, Oregon, USA", + "ror_ids": [] + }, + { + "affiliation": "Surrey Place Centre, Toronto, Ontario, Canada,", + "ror_ids": [ + "https://ror.org/01tw7ew41" + ] + }, + { + "affiliation": "Fort Hays State University", + "ror_ids": [ + "https://ror.org/00rwzgx62" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Wright State University, Dayton, Ohio 45435, USA", + "ror_ids": [ + "https://ror.org/04qk6pt94" + ] + }, + { + "affiliation": "UC, Berkeley, CA", + "ror_ids": [ + "https://ror.org/01an7q238" + ] + }, + { + "affiliation": "Departamento de Enfermería. Facultad de Enfermería, Fisioterapia y Podología. Universidad Complutense de Madrid. España. Servicio de Hemodiálisis. Hospital Clínico San Carlos. Madrid. España. Instituto de Investigación Sanitaria San Carlos (IdISSC). Madrid. España", + "ror_ids": [ + "https://ror.org/02p0gd045", + "https://ror.org/04d0ybj29" + ] + }, + { + "affiliation": "Joetsu University of Education", + "ror_ids": [ + "https://ror.org/02xjxgz53" + ] + }, + { + "affiliation": "State Key Laboratory of Elemento-Organic Chemistry, Research Institute of Elemento-Organic Chemistry, Collaborative Innovation Centre of Chemical Science and Engineering; Nankai University; Tianjin China", + "ror_ids": [ + "https://ror.org/01y1kjr75" + ] + }, + { + "affiliation": "Department of Ophthalmology, Yale University, New Haven, Connecticut.", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Department of Molecular and Cellular Biochemistry, Indiana University, USA", + "ror_ids": [ + "https://ror.org/01kg8sb98" + ] + }, + { + "affiliation": "U.S. Bureau of Mines", + "ror_ids": [] + }, + { + "affiliation": "Internal Medicine, Fondazione IRCCS Cà Granda, Ospedale Maggiore Policlinico, University of Milan, Milan, Italy", + "ror_ids": [ + "https://ror.org/016zn0y21", + "https://ror.org/00wjc7c48" + ] + }, + { + "affiliation": "Department of Trauma and Reconstructive Surgery, BG Hospital Bergmannstrost, Halle (Saale)", + "ror_ids": [] + }, + { + "affiliation": "Department Materials Science, KTH (Royal Institute of Technology)", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Birla Institute of Technology, India", + "ror_ids": [ + "https://ror.org/028vtqb15" + ] + }, + { + "affiliation": "Melbourne", + "ror_ids": [] + }, + { + "affiliation": "J.L. Swailsis residency program director, codirector of interprofessional education, and associate professor, Department of Medicine, McGovern Medical School, University of Texas Health Science Center, Houston, Texas; ORCID:.", + "ror_ids": [ + "https://ror.org/01gek1696" + ] + }, + { + "affiliation": "Santa Clara University", + "ror_ids": [ + "https://ror.org/03ypqe447" + ] + }, + { + "affiliation": "Univ of Minnesota, Minneapolis, MN", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "University Hospital Basel, Basel, Switzerland", + "ror_ids": [ + "https://ror.org/04k51q396" + ] + }, + { + "affiliation": "ICVS/3B’s\n- PT\nGovernment Associate Laboratory, 4710-057 Braga/Guimarães, Portugal", + "ror_ids": [] + }, + { + "affiliation": "Department of Medical Oncology National Cancer Center/National Clinical Research Center for Cancer/Cancer Hospital, Chinese Academy of Medical Sciences and Peking Union Medical College Beijing China", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "School of Information EngineeringNanchang UniversityNanchang330031People's Republic of China", + "ror_ids": [ + "https://ror.org/042v6xz23" + ] + }, + { + "affiliation": "Department of Chemistry, The University of Kansas, 2010 Malott\nHall, 1251 Wescoe Hall Drive, Lawrence, Kansas 66045, United States", + "ror_ids": [ + "https://ror.org/001tmjg57" + ] + }, + { + "affiliation": "I. V. Michurin Federal Scientific Center", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurology Peking Union Medical College Hospital Chinese Academy of Medical Sciences and Peking Union Medical College Beijing China", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "Nankai University", + "ror_ids": [ + "https://ror.org/01y1kjr75" + ] + }, + { + "affiliation": "From the Department of Neurology, Seoul National University Hospital, Seoul, Republic of Korea (H.-G.J.) and Department of Neurology and Cerebrovascular Center, Seoul National University Bundang Hospital, Seongnam-si, Gyeonggi-do, Republic of Korea (B.J.K., M.H.Y., M.-K.H., H.-J.B.).", + "ror_ids": [ + "https://ror.org/00cb3km46", + "https://ror.org/01z4nnt86" + ] + }, + { + "affiliation": "School of Chemistry and Chemical Engineering, Xi’an University of Science and Technology, Xi’an 710054, China", + "ror_ids": [ + "https://ror.org/046fkpt18" + ] + }, + { + "affiliation": "Queen Mary University of London", + "ror_ids": [ + "https://ror.org/026zzn846" + ] + }, + { + "affiliation": "Department\nof Chemistry, University of North Carolina at Chapel Hill, Chapel Hill, North Carolina 27599, United States", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "School of Computer Science University of Nottingham Nottingham NG8 1BB UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, University of New Hampshire, Durham, NH 03824, USA", + "ror_ids": [ + "https://ror.org/01rmh9n78" + ] + }, + { + "affiliation": "Associate Professor of New Testament, Yale Divinity School, New Haven, CT, USA, mb.dinkler@yale.edu", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Architectural Design, Vocational School, Universitas Diponegoro, Semarang, Indonesia", + "ror_ids": [ + "https://ror.org/056bjta22" + ] + }, + { + "affiliation": "Consultant Urologist, Addenbrooke's Hospital, Hills Road, Cambridge CB2 2QQ", + "ror_ids": [ + "https://ror.org/055vbxf86" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, the College of Engineering, Ibaraki University", + "ror_ids": [ + "https://ror.org/00sjd5653" + ] + }, + { + "affiliation": "University of Gothenburg Centre for Person‐Centred Care (GPCC) Sahlgrenska Academy University of Gothenburg Gothenburg Sweden", + "ror_ids": [ + "https://ror.org/01tm6cn81" + ] + }, + { + "affiliation": "Institute for Physics, Technical University of Chemnitz, 09126 Chemnitz, Germany", + "ror_ids": [ + "https://ror.org/00a208s56" + ] + }, + { + "affiliation": "Department of Urology, Emory University School of Medicine, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Tsinghua University", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "University of Denver, Denver, CO, USA", + "ror_ids": [ + "https://ror.org/04w7skc03" + ] + }, + { + "affiliation": "Behavioral Neurology, Beth Israel Hospital, Boston, AM 02215", + "ror_ids": [] + }, + { + "affiliation": "University of Texas", + "ror_ids": [ + "https://ror.org/01gek1696" + ] + }, + { + "affiliation": "Ural State Medical University of the Ministry of Health of Russian Federation, Yekaterinburg, Russia", + "ror_ids": [ + "https://ror.org/00fycgp36" + ] + }, + { + "affiliation": "School of Fundamental Science and Technology, Keio University 1 , 3-14-1 Hiyoshi, Kohoku-ku, Yokohama 223-8522, Japan", + "ror_ids": [ + "https://ror.org/02kn6nx58" + ] + }, + { + "affiliation": "Politeknik Negeri Bengkalis, Indonesia", + "ror_ids": [] + }, + { + "affiliation": "University of Trento, Italy", + "ror_ids": [ + "https://ror.org/05trd4x28" + ] + }, + { + "affiliation": "Shahrood University of Technology", + "ror_ids": [ + "https://ror.org/00yqvtm78" + ] + }, + { + "affiliation": "Institute of Translational Medicine Zhejiang Shuren University Hangzhou Zhejiang 310015 China", + "ror_ids": [ + "https://ror.org/0331z5r71" + ] + }, + { + "affiliation": "Department of Chemistry, Cornell University, Ithaca, New York", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "CHU de Reims Laboratoire d'immunologie, Pôle de Biologie Médicale et Pathologie Reims France", + "ror_ids": [ + "https://ror.org/01jbb3w63" + ] + } +] \ No newline at end of file diff --git a/rorapi/tests/tests_functional/data/dataset_affiliations_springer_2023_10_31.json b/rorapi/tests/tests_functional/data/dataset_affiliations_springer_2023_10_31.json new file mode 100644 index 00000000..98c083a0 --- /dev/null +++ b/rorapi/tests/tests_functional/data/dataset_affiliations_springer_2023_10_31.json @@ -0,0 +1,18195 @@ +[ + { + "affiliation": "Department of Pediatrics and Clinical Medicine, Section of Neonatal Intensive Care Unit, Puericulture Institute and Neonatal Section, Azienda Ospedaliero-Universitaria Di Cagliari, Cagliari University, Cagliari, Italy", + "ror_ids": [ + "https://ror.org/003109y17" + ] + }, + { + "affiliation": "Universidad del Rosario, Bogotá, Colombia", + "ror_ids": [ + "https://ror.org/0108mwc04" + ] + }, + { + "affiliation": "Theoretical Physics and Center for Biophysics, Universität des Saarlandes, Saarlandes, Germany", + "ror_ids": [ + "https://ror.org/01jdpyv68" + ] + }, + { + "affiliation": "Division of Endocrine and Oncologic Surgery, Perelman School of Medicine, University of Pennsylvania, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Department of Mathematics, Imam Khomeini International University, Qazvin, Iran", + "ror_ids": [ + "https://ror.org/02jeykk09" + ] + }, + { + "affiliation": "Department of Physics, Federal University of Lavras, UFLA Campus, Lavras, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0122bmm03" + ] + }, + { + "affiliation": "Department of Clinical Engineering, Osaka Police Hospital, Osaka, Japan", + "ror_ids": [ + "https://ror.org/015x7ap02" + ] + }, + { + "affiliation": "Department of Medical Oncology, Dana-Farber Cancer Institute, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/02jzgtq86" + ] + }, + { + "affiliation": "Affiliated to Dep of Oncology, Inst of Clinical Sciences, Sahlgrenska Academy, University of Gothenburg, Gothenburg, Sweden", + "ror_ids": [ + "https://ror.org/01tm6cn81" + ] + }, + { + "affiliation": "Middle East Technical University, Physics Department, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/014weej12" + ] + }, + { + "affiliation": "Department of Internal Medicine, University of Pittsburgh Medical Center (UPMC), Pittsburgh, PA, USA", + "ror_ids": [ + "https://ror.org/04ehecz88" + ] + }, + { + "affiliation": "Stomatology Hospital, School of Stomatology, Zhejiang University School of Medicine, Clinical Research Center for Oral Disease of Zhejiang Province, Key Laboratory of Oral Biomedical Research of Zhejiang Province, Cancer Center of Zhejiang University, , China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Molecular Biology of Cancer, Institute of Experimental Medicine of the Czech Academy of Sciences, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/03hjekm25" + ] + }, + { + "affiliation": "Oxford Institute of Population Ageing, University of Oxford, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Klinik für Unfallchirurgie und Orthopädie, Evangelisches Krankenhaus Göttingen-Weende, Göttingen, Deutschland", + "ror_ids": [ + "https://ror.org/056y4sn81" + ] + }, + { + "affiliation": "Cancer Biology Program, The Research Institute of Fox Chase Cancer Center, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/0567t7073" + ] + }, + { + "affiliation": "Meta Robotics Institute, Shanghai Jiao Tong University, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Department of Pediatrics, The Hospital for Sick Children, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "College of Geological Engineering and Geomatics, Chang’an University, Xi’an, China", + "ror_ids": [ + "https://ror.org/05mxya461" + ] + }, + { + "affiliation": "Universidade de Vigo, Vigo, Spain", + "ror_ids": [ + "https://ror.org/05rdf8595" + ] + }, + { + "affiliation": "Mr. & Mrs. Ko Chi-Ming Centre for Parkinson’s Disease Research, School of Chinese Medicine, Hong Kong Baptist University, Hong Kong, SAR, China", + "ror_ids": [ + "https://ror.org/0145fw131" + ] + }, + { + "affiliation": "Department of Nephrology, University Medical Center Groningen, Groningen, the Netherlands", + "ror_ids": [ + "https://ror.org/03cv38k47" + ] + }, + { + "affiliation": "Graduate Program on Computer Science, Department of Informatics and Statistics, Federal University of Santa Catarina (UFSC), Florianópolis, SC, Brazil", + "ror_ids": [ + "https://ror.org/041akq887" + ] + }, + { + "affiliation": "Department of Pharmaceutical Sciences and Technology, Birla Institute of Technology, Ranchi, India", + "ror_ids": [ + "https://ror.org/028vtqb15" + ] + }, + { + "affiliation": "Libin Cardiovascular Institute of Alberta, Calgary, AB, Canada", + "ror_ids": [ + "https://ror.org/02qthww36" + ] + }, + { + "affiliation": "Key Laboratory for Leather and Engineering of the Education Ministry, Sichuan University, Chengdu, China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "Department of Epidemiology, Maastricht University, Maastricht, The Netherlands", + "ror_ids": [ + "https://ror.org/02jz4aj89" + ] + }, + { + "affiliation": "Department of Information Systems, College of Computer and Information Sciences, Princess Nourah bint Abdulrahman University, Riyadh, Saudi Arabia", + "ror_ids": [ + "https://ror.org/05b0cyh02" + ] + }, + { + "affiliation": "Chromosome Engineering Research Center, Tottori University, Yonago, Tottori, Japan", + "ror_ids": [ + "https://ror.org/024yc3q36" + ] + }, + { + "affiliation": "Department of Physics, Oxford University, Oxford, United Kingdom", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Department of Pharmaceutical and Toxicological Chemistry named after Arzamastsev of the Institute of Pharmacy, I.M. Sechenov First Moscow State Medical University (Sechenov University), Moscow, Russia", + "ror_ids": [ + "https://ror.org/02yqqv993" + ] + }, + { + "affiliation": "Mission Design and Navigation Section, Jet Propulsion Laboratory, California Institute of Technology, Pasadena, CA, USA", + "ror_ids": [ + "https://ror.org/05dxps055", + "https://ror.org/027k65916" + ] + }, + { + "affiliation": "University of Rostock, Rostock, Germany", + "ror_ids": [ + "https://ror.org/03zdwsf69" + ] + }, + { + "affiliation": "Institut für Festkörperphysik, Technische Universität Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/03v4gjf40" + ] + }, + { + "affiliation": "Sorbonne University, Hôpital Saint-Antoine, and INSERM UMRs938, Paris, France", + "ror_ids": [ + "https://ror.org/02en5vm52", + "https://ror.org/01875pg84" + ] + }, + { + "affiliation": "Key Laboratory of Ministry of Education for Geomechanics and Embankment Engineering, Hohai University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01wd4xt90" + ] + }, + { + "affiliation": "Department of Genetics and Plant Breeding, MTTC & VTC, Selesih, CAU, Imphal, India", + "ror_ids": [ + "https://ror.org/03rs2w544" + ] + }, + { + "affiliation": "Center for Alzheimer Research and Treatment, Brigham and Women’s Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/04b6nzv94" + ] + }, + { + "affiliation": "Leeuwenhoek Centre for Advanced Microscopy (LCAM), Section Molecular Cytology at Swammerdam Institute for Life Sciences (SILS) at University of Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463", + "https://ror.org/013rctf62" + ] + }, + { + "affiliation": "College of Science, Civil Aviation University of China, Tianjin, China", + "ror_ids": [ + "https://ror.org/03je71k37" + ] + }, + { + "affiliation": "Department of Economics Marco Biagi, University of Modena and Reggio Emilia, Modena, Italy", + "ror_ids": [ + "https://ror.org/02d4c4y02" + ] + }, + { + "affiliation": "Division of Ecology and Evolution, Research School of Biology, The Australian National University, Canberra, Australia", + "ror_ids": [ + "https://ror.org/019wvm592" + ] + }, + { + "affiliation": "Menopause Andropause Research Center, Ahvaz Jundishapur University of Medical Sciences, Ahvaz, Iran", + "ror_ids": [ + "https://ror.org/01rws6r75" + ] + }, + { + "affiliation": "Pazhou Laboratory, Guangzhou, People’s Republic of China", + "ror_ids": [] + }, + { + "affiliation": "Department of Computer Science, Mathematics, Physics and Statistics, The University of British Columbia, Okanagan, Kelowna, BC, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Imaging and Pathology, KU Leuven, Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Space Systems Research Corporation, Alexandria, VA, USA", + "ror_ids": [ + "https://ror.org/00f7paw60" + ] + }, + { + "affiliation": "Gulbali Institute, Charles Sturt University, Wagga Wagga, NSW, Australia", + "ror_ids": [ + "https://ror.org/00wfvh315" + ] + }, + { + "affiliation": "Department of Hematology, Command Hospital (Eastern Command), Kolkata, West Bengal, India", + "ror_ids": [ + "https://ror.org/01wf0xv67" + ] + }, + { + "affiliation": "The Research Units of West China (2018RU012) - Chinese Academy of Medical Sciences, West China Hospital, Sichuan University, Chengdu, Sichuan, P.R. China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "The Ohio State University Comprehensive Cancer Center-Arthur G. James Cancer Hospital and Richard J. Solove Research Institute, Columbus, OH, USA", + "ror_ids": [ + "https://ror.org/028t46f04" + ] + }, + { + "affiliation": "Center for Cancer Research, Massachusetts General Hospital and Harvard Medical School, Charlestown, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52", + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Ph.D. Program of Interdisciplinary Medicine (PIM), National Yang Ming Chiao Tung University College of Medicine, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/00se2k293" + ] + }, + { + "affiliation": "Faculty of Food Science and Technology, University of Agricultural Sciences and Veterinary Medicine of Cluj-Napoca, Cluj-Napoca, Romania", + "ror_ids": [ + "https://ror.org/05hak1h47" + ] + }, + { + "affiliation": "Faculty of Science, University of Hradec Kralove, Hradec Králové, Czech Republic", + "ror_ids": [ + "https://ror.org/05k238v14" + ] + }, + { + "affiliation": "Department of Nuclear Medicine, Acibadem University, Acibadem Maslak Hospital, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/01rp2a061" + ] + }, + { + "affiliation": "Department of Physics, Guru Jambheshwar University of Science and Technology, Hisar, India", + "ror_ids": [ + "https://ror.org/02zpxgh81" + ] + }, + { + "affiliation": "Heidelberg Center for the Environment (HCE) & Institute of Geography, Heidelberg University, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Nepean Kidney Research Centre, Department of Renal Medicine, Nepean Hospital, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/03vb6df93" + ] + }, + { + "affiliation": "Department of Urology, Japan Community Health Care Organization Hokkaido Hospital, Sapporo, Japan", + "ror_ids": [ + "https://ror.org/02y005z64" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery and Sports Medicine, Stanford University, Redwood City, CA, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "School of Medicine, University of Colorado, Aurora, CO, USA", + "ror_ids": [ + "https://ror.org/03wmf1y16" + ] + }, + { + "affiliation": "Department of Pediatrics, University of Wisconsin School of Medicine and Public Health, Madison, WI, USA", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Sanford School of Public Policy, Duke University, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Institute of Neuroscience, State Key Laboratory of Neuroscience, CAS Center for Excellence in Brain Science and Intelligence Technology, Shanghai Center for Brain Science and Brain-Inspired Intelligence Technology, Chinese Academy of Sciences, , China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/00vpwhm04" + ] + }, + { + "affiliation": "Department of Orthopedic Surgery, Kochi Medical School, Kochi University, Nankoku, Kochi, Japan", + "ror_ids": [ + "https://ror.org/01xxp6985" + ] + }, + { + "affiliation": "Tianjin University of Technology, Tianjin, China", + "ror_ids": [ + "https://ror.org/00zbe0w13" + ] + }, + { + "affiliation": "Department of Learning and Instructional Sciences, University of Haifa, Haifa, Israel", + "ror_ids": [ + "https://ror.org/02f009v59" + ] + }, + { + "affiliation": "Australian Antarctic Program Partnership, University of Tasmania, Hobart, Australia", + "ror_ids": [ + "https://ror.org/01nfmeh72" + ] + }, + { + "affiliation": "Mount Sinai Hospital, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/01zkyz108" + ] + }, + { + "affiliation": "Ohio State University, Columbus, Ohio, United States", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "AIDS and Cancer Virus Program, Frederick National Laboratory for Cancer Research, Frederick, MD, USA", + "ror_ids": [ + "https://ror.org/03v6m3209" + ] + }, + { + "affiliation": "Korea Research Institute of Chemical Technology, Daejeon, Korea", + "ror_ids": [ + "https://ror.org/043k4kk20" + ] + }, + { + "affiliation": "Key Laboratory of Watershed Earth Surface Processes and Ecological Security, Zhejiang Normal University, Jinhua, China", + "ror_ids": [ + "https://ror.org/01vevwk45" + ] + }, + { + "affiliation": "Service of Laboratory Medicine, Pederzoli Hospital, Peschiera del Garda, Verona, Italy", + "ror_ids": [] + }, + { + "affiliation": "Klinik für Kinderheilkunde III, Pädiatrische Hämatologie/Onkologie, Universitätsklinik Essen, Essen, Deutschland", + "ror_ids": [ + "https://ror.org/02na8dn90" + ] + }, + { + "affiliation": "Genecast Biotechnology Co., Ltd., Wuxi, Jiangsu, China", + "ror_ids": [ + "https://ror.org/059r2qd49" + ] + }, + { + "affiliation": "Institute for Research in Immunology and Cancer, Université de Montréal, Montréal, Canada", + "ror_ids": [ + "https://ror.org/0161xgx34", + "https://ror.org/00wj6x496" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology/Section of Gynecologic Oncology—Center for Integrative Sciences, University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of ECE, SCSVMV Deemed University, Kanchipuram, India", + "ror_ids": [ + "https://ror.org/04w713f83" + ] + }, + { + "affiliation": "Department of Pathology, NYU Winthrop Hospital, Long Island School of Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/03eksqx74" + ] + }, + { + "affiliation": "Second Department of Surgery, School of Medicine, Wakayama Medical University, Wakayama, Japan", + "ror_ids": [ + "https://ror.org/005qv5373" + ] + }, + { + "affiliation": "Department of Geriatrics and Gerontology, Chi-Mei Medical Center, Tainan, Taiwan", + "ror_ids": [ + "https://ror.org/02y2htg06" + ] + }, + { + "affiliation": "Evidence-Based Medicine Center, Department of Critical Care Medicine, Department of Anesthesia, Department of Neurosurgery, Affiliated Hospital of Chengdu University, Chengdu, Sichuan, China", + "ror_ids": [ + "https://ror.org/031maes79" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, Institute of Biomedicine, University of Gothenburg, Gothenburg, Sweden", + "ror_ids": [ + "https://ror.org/01tm6cn81" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, Tongji Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04xy45965", + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Department of Translational Research on New Technologies in Medicine and Surgery, University of Pisa, Pisa, Italy", + "ror_ids": [ + "https://ror.org/03ad39j10" + ] + }, + { + "affiliation": "Department of Endocrinology and Diabetes Center, Endo ERN Center, Evaggelismos Hospital, Athens, Greece", + "ror_ids": [ + "https://ror.org/05q4veh78" + ] + }, + { + "affiliation": "Tianjin Key Laboratory of Ophthalmology and Visual Science, Tianjin Eye Institute, Tianjin Eye Hospital, Tianjin, China", + "ror_ids": [ + "https://ror.org/04j2cfe69" + ] + }, + { + "affiliation": "Food Allergy Research & Resource Program, Department of Food Science & Technology, University of Nebraska-Lincoln, Lincoln, NE, USA", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "Department of Bioscience and Bioinformatics, Faculty of Computer Science and Systems Engineering, Kyushu Institute of Technology, Fukuoka, Japan", + "ror_ids": [ + "https://ror.org/02278tr80" + ] + }, + { + "affiliation": "FOM Hochschule für Oekonomie & Management, Hamburg, Deutschland", + "ror_ids": [ + "https://ror.org/05m3vpd98" + ] + }, + { + "affiliation": "Hematopoietic Transplantation and Cell Therapy, Translational Research in Paediatric Oncology, Hospital La Paz Institute for Health Research (IdiPAZ), Madrid, Spain", + "ror_ids": [ + "https://ror.org/017bynh47" + ] + }, + { + "affiliation": "Departamento de Salud Pública y Materno-Infantil, Facultad de Medicina, Universidad Complutense de Madrid, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Department of Food Science and Technology, Faculty of Agriculture, Urmia University, Urmia, Iran", + "ror_ids": [ + "https://ror.org/032fk0x53" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, National Institute of Technology, Silchar, Assam, India", + "ror_ids": [ + "https://ror.org/001ws2a36" + ] + }, + { + "affiliation": "Center for Security, Theory and Algorithmic Research, International Institute of Information Technology, Hyderabad, India", + "ror_ids": [ + "https://ror.org/05f11g639" + ] + }, + { + "affiliation": "Department of Computer Science and Technology, China University of Petroleum, Beijing, China", + "ror_ids": [ + "https://ror.org/041qf4r12" + ] + }, + { + "affiliation": "Graduate Program of Digital Agroenergy, Federal University of Tocantins (UFT), Palmas-TO, Brazil", + "ror_ids": [ + "https://ror.org/053xy8k29" + ] + }, + { + "affiliation": "Wellcome Sanger Institute, Wellcome Genome Campus, Hinxton, Cambridgeshire, UK", + "ror_ids": [ + "https://ror.org/05cy4wa09" + ] + }, + { + "affiliation": "Departments of Pharmacy and Neurosciences, Intermountain Health, Salt Lake City, UT, USA", + "ror_ids": [ + "https://ror.org/04mvr1r74" + ] + }, + { + "affiliation": "Center for Clinical Research and Prevention, Copenhagen University Hospital – Bispebjerg and Frederiksberg, the Capital Region of Denmark, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/049qz7x77", + "https://ror.org/05bpbnx46" + ] + }, + { + "affiliation": "Department of Gastroenterology, Hepatology and Infectious Diseases, Medical Faculty, University Hospital Düsseldorf, Heinrich Heine University Düsseldorf, Düsseldorf, Germany", + "ror_ids": [ + "https://ror.org/024z2rq82" + ] + }, + { + "affiliation": "Department of Cell Biology and Neuroscience, Rowan University, Stratford, NJ, USA", + "ror_ids": [ + "https://ror.org/049v69k10" + ] + }, + { + "affiliation": "POSCO-POSTECH-RIST Convergence Research Center for Flat Optics and Metaphotonics, Pohang University of Science and Technology (POSTECH), Pohang, Republic of Korea", + "ror_ids": [ + "https://ror.org/04xysgw12" + ] + }, + { + "affiliation": "Department of OBS & GYN & Reproductive Endocrinology, Vali-asr Health Research Center, Vali-asr Hospital, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Klinik für Augenheilkunde, Universitätsklinikum Essen, Essen, Deutschland", + "ror_ids": [ + "https://ror.org/02na8dn90" + ] + }, + { + "affiliation": "Dipartimento di Scienze della Salute, Università Magna Grecia di Catanzaro, Unità Operativa Di Farmacologia Clinica e Farmacovigilanza, Azienda Ospedaliero-Universitaria “Mater Domini”, Catanzaro, Italy", + "ror_ids": [ + "https://ror.org/03q658t19" + ] + }, + { + "affiliation": "VIB-KU Leuven Center for Brain and Disease Research, Leuven, Belgium", + "ror_ids": [ + "https://ror.org/045c7t348" + ] + }, + { + "affiliation": "Department of Surgery, Dartmouth Medical School, Hanover, NH, USA", + "ror_ids": [ + "https://ror.org/049s0rh22" + ] + }, + { + "affiliation": "INFN-Sezione di Catania, Catania, Italy", + "ror_ids": [ + "https://ror.org/02pq29p90" + ] + }, + { + "affiliation": "School of Mechanical Engineering, Kyungpook National University, Daegu, Republic of Korea", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "Medical University of Warsaw, Warsaw, Poland", + "ror_ids": [ + "https://ror.org/04p2y4s44" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Sciences, Arak University, Arak, I.R., Iran", + "ror_ids": [ + "https://ror.org/00ngrq502" + ] + }, + { + "affiliation": "Department of Gastroenterology, Peking University Third Hospital, Beijing, China", + "ror_ids": [ + "https://ror.org/04wwqze12" + ] + }, + { + "affiliation": "Department of Political Science, School of Public Policy and Global Affairs, University of British Columbia, Vancouver, BC, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Harvard Medical School, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Escuela de Ciencias Físicas y Matemática, Pontificia Universidad Católica del Ecuador, Quito, Ecuador", + "ror_ids": [ + "https://ror.org/02qztda51" + ] + }, + { + "affiliation": "Cell Biology in Environmental Toxicology Research Group, University of the Basque Country (UPV/EHU), Leioa-Bizkaia, Spain", + "ror_ids": [ + "https://ror.org/000xsnr85" + ] + }, + { + "affiliation": "Istituto Officina dei Materiali CNR, Perugia, Italy", + "ror_ids": [ + "https://ror.org/00yfw2296" + ] + }, + { + "affiliation": "Collage of Science, China Agricultural University, Beijing, China", + "ror_ids": [ + "https://ror.org/04v3ywz14" + ] + }, + { + "affiliation": "Department of Public Health Sciences, Clemson University, Clemson, SC, USA", + "ror_ids": [ + "https://ror.org/037s24f05" + ] + }, + { + "affiliation": "Department of Mathematics, The University of Texas Rio Grande Valley, Edinburg, TX, USA", + "ror_ids": [ + "https://ror.org/02p5xjf12" + ] + }, + { + "affiliation": "Engineering Institute, University of Algarve, Campus da Penha, Faro, Portugal", + "ror_ids": [ + "https://ror.org/014g34x36" + ] + }, + { + "affiliation": "Department of Neurology, Sahlgrenska University Hospital, Gothenburg, Sweden", + "ror_ids": [ + "https://ror.org/04vgqjj36" + ] + }, + { + "affiliation": "Department of Psychiatry, University of Virginia Medical Center, Charlottesville, VA, USA", + "ror_ids": [ + "https://ror.org/046kb4y45" + ] + }, + { + "affiliation": "Division of Medical Education, Faculty of Medicine, Biology and Health, University of Manchester, Manchester, UK", + "ror_ids": [ + "https://ror.org/027m9bs27" + ] + }, + { + "affiliation": "V. G. Shukhov Belgorod State Technological University, Belgorod, Russia", + "ror_ids": [ + "https://ror.org/02v40vz65" + ] + }, + { + "affiliation": "Department of Pharmacology and Toxicology, School of Pharmacy, College of Health Sciences, Mekelle University, Mekelle, Ethiopia", + "ror_ids": [ + "https://ror.org/04bpyvy69" + ] + }, + { + "affiliation": "Experimental Imaging Center, Ospedale San Raffaele, Milano, Italy", + "ror_ids": [ + "https://ror.org/039zxt351" + ] + }, + { + "affiliation": "CAFPE and Departamento de Física Teórica y del Cosmos, Universidad de Granada, Granada, Spain", + "ror_ids": [ + "https://ror.org/04njjy449" + ] + }, + { + "affiliation": "Graduate School of Medicine, Kyoto University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Departments of Urology and Immunology, Mayo Clinic, Rochester, MN, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Department of Neuromedicine and Movement Science, Faculty and Medicine and Health Sciences, NTNU, Trondheim, Norway", + "ror_ids": [ + "https://ror.org/05xg72x27" + ] + }, + { + "affiliation": "The Mid Yorkshire Hospitals NHS Trust, Wakefield, UK", + "ror_ids": [ + "https://ror.org/05g23q746" + ] + }, + { + "affiliation": "Fraunhofer Institute for Microstructure of Materials and Systems IMWS, Halle (Saale), Germany", + "ror_ids": [ + "https://ror.org/050mbz718" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "School of Engineering, Department of Civil Engineering, Faculty of Mathematics Programming and General Courses, Democritus University of Thrace, Kimmeria, Xanthi, Greece", + "ror_ids": [ + "https://ror.org/03bfqnx40" + ] + }, + { + "affiliation": "Dipartimento di Scienze, Università Di Chieti, Chieti, Italy", + "ror_ids": [ + "https://ror.org/00qjgza05" + ] + }, + { + "affiliation": "Department of Women’s and Children’s Health, University of Liverpool, Liverpool, UK", + "ror_ids": [ + "https://ror.org/04xs57h96" + ] + }, + { + "affiliation": "International Psychoanalytic University Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/00b6j6x40" + ] + }, + { + "affiliation": "Department of Civil Engineering, Faculty of Engineering, Atatürk University, Erzurum, Türkiye", + "ror_ids": [ + "https://ror.org/03je5c526" + ] + }, + { + "affiliation": "Department of Critical Care, Faculty of Medicine Dentistry and Health Sciences, University of Melbourne, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Brown University’s School of Public Health, Brown University, Providence, RI, USA", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "Diagnostic Department, Division of Laboratory Medicine, Geneva University Hospitals, Geneva, Switzerland", + "ror_ids": [ + "https://ror.org/01m1pv723" + ] + }, + { + "affiliation": "Department of Preventive Medicine &, Institute of Health Services Research, Yonsei University College of Medicine, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/01wjejq96" + ] + }, + { + "affiliation": "Institution of Nanochemistry and Nanobiology, School of Environmental and Chemical Engineering, Shanghai University, Shanghai, China", + "ror_ids": [ + "https://ror.org/006teas31" + ] + }, + { + "affiliation": "Department of Environmental Engineering, International Hellenic University, Sindos, Thessaloniki, Greece", + "ror_ids": [ + "https://ror.org/00708jp83" + ] + }, + { + "affiliation": "Early Life Traces and Evolution-Astrobiology Laboratory, UR Astrobiology, University of Liège, Liège, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "Department of Pathology, The University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of Education, BeiHua University, Jilin, China", + "ror_ids": [ + "https://ror.org/013jjp941" + ] + }, + { + "affiliation": "National Prion Disease Pathology Surveillance Center (NPDPSC), Case Western Reserve University, Cleveland, OH, USA", + "ror_ids": [ + "https://ror.org/051fd9666" + ] + }, + { + "affiliation": "Department of Plant Sciences, College of Agricultural and Marine Sciences, Sultan Qaboos University, Muscat, Oman", + "ror_ids": [ + "https://ror.org/04wq8zb47" + ] + }, + { + "affiliation": "Research Center for Psychiatry and Behavior Science, School of Medicine, Shiraz University of Medical Sciences, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/01n3s4692" + ] + }, + { + "affiliation": "Key Laboratory of Radioactive and Rare Scattered Minerals, Ministry of Natural Resources, Guangdong Provincial Institute of Mining Applications, Shaoguan, Guangdong, China", + "ror_ids": [ + "https://ror.org/02kxqx159" + ] + }, + { + "affiliation": "Department of Gastroenterology, Salford Royal Foundation Trust, Salford, UK", + "ror_ids": [ + "https://ror.org/019j78370" + ] + }, + { + "affiliation": "Department of Bioinformatics and Biotechnology, International Islamic University, Islamabad, Pakistan", + "ror_ids": [ + "https://ror.org/047w75g40" + ] + }, + { + "affiliation": "Department of Physics, University of California, La Jolla, CA, U.S.A.", + "ror_ids": [ + "https://ror.org/05t99sp05" + ] + }, + { + "affiliation": "Department of Industrial Engineering and Management, National Yunlin University of Science and Technology, Douliou, Taiwan", + "ror_ids": [ + "https://ror.org/04qkq2m54" + ] + }, + { + "affiliation": "Faculty of Biology, Belarusian State University, Minsk, Belarus", + "ror_ids": [ + "https://ror.org/021036w13" + ] + }, + { + "affiliation": "Department of Economics and Statistics, The University of Dodoma, Dodoma, Tanzania", + "ror_ids": [ + "https://ror.org/009n8zh45" + ] + }, + { + "affiliation": "Department of Pathology, School of Medical Sciences Universiti Sains Malaysia, Kota Bharu, Kelantan, Malaysia", + "ror_ids": [ + "https://ror.org/02rgb2k63" + ] + }, + { + "affiliation": "Clinical Research Development Unit of Akbar Hospital, Faculty of Medicine, Mashhad University of Medical Sciences, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/04sfka033" + ] + }, + { + "affiliation": "School of Mechanical and Electronic Engineering, Wuhan University of Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/03fe7t173" + ] + }, + { + "affiliation": "Leibniz Institute for Evolution and Biodiversity Science, Museum für Naturkunde Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/052d1a351" + ] + }, + { + "affiliation": "Bloomsbury Institute of Intensive Care Medicine, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "School of Biomedical Engineering, University of Technology Sydney, Sydney, Australia", + "ror_ids": [ + "https://ror.org/03f0f6041" + ] + }, + { + "affiliation": "National Institute for Nuclear Physics (INFN), Genova, Italy", + "ror_ids": [ + "https://ror.org/005ta0471" + ] + }, + { + "affiliation": "Coal City University, Enugu, Nigeria", + "ror_ids": [ + "https://ror.org/043z5qa52" + ] + }, + { + "affiliation": "Department of Internal Medicine, Seoul St. Mary’s Hospital, College of Medicine, The Catholic University of Korea, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/056cn0e37", + "https://ror.org/01fpnj063" + ] + }, + { + "affiliation": "Massachusetts Institute of Technology (MIT), Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "University of the Sunshine Coast, Sippy Downs, QLD, Australia", + "ror_ids": [ + "https://ror.org/016gb9e15" + ] + }, + { + "affiliation": "National Research Nuclear University MEPhI, Moscow, Russia", + "ror_ids": [ + "https://ror.org/04w8z7f34" + ] + }, + { + "affiliation": "Symbiosis Institute of Computer Studies and Research, Symbiosis International (Deemed University), Pune, India", + "ror_ids": [ + "https://ror.org/005r2ww51" + ] + }, + { + "affiliation": "Institute of Solid State Chemistry, Urals Branch, Russian Academy of Sciences, Ekaterinburg, Russia", + "ror_ids": [ + "https://ror.org/02s4h3z39", + "https://ror.org/05qrfxd25", + "https://ror.org/01kga0z77" + ] + }, + { + "affiliation": "Stress Physiology and Molecular Biology Laboratory, Department of Botany, Centre for Advanced Study, Jai Narain Vyas University, Rajasthan, India", + "ror_ids": [ + "https://ror.org/03qnpty21" + ] + }, + { + "affiliation": "Information Technology Department, Dr B R Ambedkar National Institute of Technology, Jalandhar, Punjab, India", + "ror_ids": [ + "https://ror.org/03xt0bg88" + ] + }, + { + "affiliation": "Department of Mathematics and Informatics, Faculty of Sciences, University of Novi Sad, Novi Sad, Serbia", + "ror_ids": [ + "https://ror.org/00xa57a59" + ] + }, + { + "affiliation": "Department of Pediatrics, The George Washington University School of Medicine and Health Sciences, Washington, DC, USA", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "Department of Economics, Università degli Studi dell’Insubria, Varese, Italy", + "ror_ids": [ + "https://ror.org/00s409261" + ] + }, + { + "affiliation": "Department of Neurology, Massachusetts General Hospital and Harvard Medical School, Charlestown, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Department of Orthopedics and Traumatology, The University of Hong Kong, Pok Fu Lam, Hong Kong", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "Marketing Department, College of Business, University of Jeddah, Jeddah, Saudi Arabia", + "ror_ids": [ + "https://ror.org/015ya8798" + ] + }, + { + "affiliation": "Medicine, University of Colorado Anschutz Medical Campus, Aurora, USA", + "ror_ids": [ + "https://ror.org/03wmf1y16" + ] + }, + { + "affiliation": "Max-Planck-Institut für Biophysik, Frankfurt a. M., Deutschland", + "ror_ids": [ + "https://ror.org/02panr271" + ] + }, + { + "affiliation": "Departamento de Estudios Psicológicos, Universidad Icesi, Cali, Colombia", + "ror_ids": [ + "https://ror.org/02t54e151" + ] + }, + { + "affiliation": "Nuclear Engineering, University of Tripoli, Tripoli, Libya", + "ror_ids": [ + "https://ror.org/00taa2s29" + ] + }, + { + "affiliation": "Scotland’s Rural College, Dumfries, UK", + "ror_ids": [ + "https://ror.org/044e2ja82" + ] + }, + { + "affiliation": "Department of Respiratory Emergency and Critical Care, The First Affiliated Hospital of Nanchang University, Nanchang, Jiangxi Province, P. R. China", + "ror_ids": [ + "https://ror.org/05gbwr869" + ] + }, + { + "affiliation": "School of Communication and Information Engineering, Chongqing University of Posts and Telecommunications, Chongqing, China", + "ror_ids": [ + "https://ror.org/03dgaqz26" + ] + }, + { + "affiliation": "Amsterdam University Medical Center, Epidemiology and Data Science, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/008xxew50", + "https://ror.org/05grdyy37" + ] + }, + { + "affiliation": "School of Psychology, University of Glasgow, Glasgow, Scotland, UK", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "Department of Radiotherapy, Sun Yat-sen Memorial Hospital, Sun Yat-sen University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/01px77p81", + "https://ror.org/0064kty71" + ] + }, + { + "affiliation": "National Institute of Laser Enhanced Science (NILES), Cairo University, Giza, Egypt", + "ror_ids": [ + "https://ror.org/03q21mh05" + ] + }, + { + "affiliation": "Institute for Cognitive and Brain Sciences (ICBS), Shahid Beheshti University (SBU), Tehran, Iran", + "ror_ids": [ + "https://ror.org/0091vmj44" + ] + }, + { + "affiliation": "Department of Physics, Kyoto University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Institutes of Biology and Medical Science, Soochow University, Suzhou, China", + "ror_ids": [ + "https://ror.org/05t8y2r12" + ] + }, + { + "affiliation": "Department of Food Science and Technology, Chungnam National University, Daejeon, Korea", + "ror_ids": [ + "https://ror.org/0227as991" + ] + }, + { + "affiliation": "Babeș-Bolyai University, Cluj-Napoca, Romania", + "ror_ids": [ + "https://ror.org/02rmd1t30" + ] + }, + { + "affiliation": "Department of Cardiology, Policlinico Casilino of Rome, Rome, Italy", + "ror_ids": [ + "https://ror.org/04zhd1705" + ] + }, + { + "affiliation": "Nursing Course, Faculty of Ceilândia/FCE, Metropolitan Center, University of Brasília/UnB, Brasília, Federal District, Brazil", + "ror_ids": [ + "https://ror.org/02xfp8v59" + ] + }, + { + "affiliation": "Department of Microbiology, Rashtraguru Surendranath College, Barrackpore, Kolkata, India", + "ror_ids": [ + "https://ror.org/01e7v7w47" + ] + }, + { + "affiliation": "Evidence-Based Medicine Center, School of Basic Medical Sciences, Lanzhou University, Lanzhou, China", + "ror_ids": [ + "https://ror.org/01mkqqe32" + ] + }, + { + "affiliation": "Department of Radiation Oncology, Tisch Cancer Institute, Icahn School of Medicine at Mount Sinai, New York, NY, USA", + "ror_ids": [ + "https://ror.org/04a9tmd77", + "https://ror.org/0317dzj93" + ] + }, + { + "affiliation": "Experimental Medicine Research Group, Department Medicine, Faculty of Medicine and Health Sciences, Stellenbosch University, Parow, South Africa", + "ror_ids": [ + "https://ror.org/05bk57929" + ] + }, + { + "affiliation": "Institute of Physics, Academia Sinica, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05bxb3784", + "https://ror.org/01tpvdq80" + ] + }, + { + "affiliation": "Higher Teachers Training College Bambili, The University of Bamenda, Bamenda, North West Region, Cameroon", + "ror_ids": [ + "https://ror.org/031ahrf94" + ] + }, + { + "affiliation": "College of Civil Engineering, Nanjing Forestry University, Nanjing, China", + "ror_ids": [ + "https://ror.org/03m96p165" + ] + }, + { + "affiliation": "Laboratory of Food Quality Management, Department of Food Sciences, FARAH - Veterinary Public Health, University of Liège, Liège, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "Department of Psychology, Linnaeus University, Växjö, Sweden", + "ror_ids": [ + "https://ror.org/00j9qag85" + ] + }, + { + "affiliation": "Department of Ancient Studies, University of Maryland, Baltimore County (UMBC), Baltimore, MD, USA", + "ror_ids": [ + "https://ror.org/02qskvh78" + ] + }, + { + "affiliation": "Thin-Film Device Laboratory and Center for Emergent Matter Science, RIKEN, Wako, Saitama, Japan", + "ror_ids": [ + "https://ror.org/01sjwvz98", + "https://ror.org/03gv2xk61" + ] + }, + { + "affiliation": "College of Mechatronics Engineering, Beijing Information Science and Technology University, Beijing, China", + "ror_ids": [ + "https://ror.org/04xnqep60" + ] + }, + { + "affiliation": "National Engineering Research Center of Vacuum Metallurgy, Kunming University of Science and Technology, Kunming, Yunnan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00xyeez13" + ] + }, + { + "affiliation": "Graeter Manchester Business School, University of Bolton, Bolton, UK", + "ror_ids": [ + "https://ror.org/01t884y44" + ] + }, + { + "affiliation": "Duke University Medical Center, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/03njmea73" + ] + }, + { + "affiliation": "Embrapa Mandioca e Fruticultura, Cruz das Almas, Bahia, Brazil", + "ror_ids": [ + "https://ror.org/0482b5b22" + ] + }, + { + "affiliation": "Institut für Rechtsmedizin, Universitätsmedizin Rostock, Rostock, Deutschland", + "ror_ids": [ + "https://ror.org/04dm1cm79" + ] + }, + { + "affiliation": "The Biodesign Center for Structural Discovery, Biodesign Institute, Arizona State University, Tempe, AZ, USA", + "ror_ids": [ + "https://ror.org/03efmqc40" + ] + }, + { + "affiliation": "Department of Systems Medicine, University of Rome “Tor Vergata”, Rome, Italy", + "ror_ids": [ + "https://ror.org/02p77k626" + ] + }, + { + "affiliation": "Department of Emergency Medicine, David Geffen School of Medicine at UCLA, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "J.E. Cairnes School of Business and Economics, University of Galway, Galway, Ireland", + "ror_ids": [ + "https://ror.org/03bea9k73" + ] + }, + { + "affiliation": "Institute for Molecular Systems Engineering and Advanced Materials (IMSEAM), Heidelberg University, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Department of Dermatology, Oregon Health & Science, University, Portland, OR, USA", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "School of Energy Materials, Mahatam Gandhi University, Kottyam, Kerla, India", + "ror_ids": [ + "https://ror.org/00h4spn88" + ] + }, + { + "affiliation": "Department of Mechanical and Aerospace Engineering, University of California San Diego, San Diego, CA, USA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Department of Hematology, Leiden University Medical Center, Leiden, the Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17" + ] + }, + { + "affiliation": "Department of Human Science, LUMSA University, Rome, Italy", + "ror_ids": [ + "https://ror.org/02d8v0v24" + ] + }, + { + "affiliation": "Infectious Diseases, Massachusetts General Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "College of Engineering, Fujian Jiangxia University, Fuzhou, Fujian, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01cyb5v38" + ] + }, + { + "affiliation": "Department of Plant Science and Landscape Architecture, University of Connecticut, Storrs, CT, USA", + "ror_ids": [ + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "Department of Dermatology and Venereology, Medical University of Bialystok, Bialystok, Poland", + "ror_ids": [ + "https://ror.org/00y4ya841" + ] + }, + { + "affiliation": "Cancer Center, Shanghai Zhongshan Hospital, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Ludwig-Maximilians-Universität München, München, Deutschland", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "Mahidol University International College, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/01znkr924" + ] + }, + { + "affiliation": "State Key Laboratory of Genetic Resources and Evolution, Kunming Institute of Zoology, Chinese Academy of Sciences, Kunming, Yunnan, China", + "ror_ids": [ + "https://ror.org/03m0vk445", + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "Department of Environmental Science and Engineering, Bangladesh University of Textiles, Dhaka, Bangladesh", + "ror_ids": [ + "https://ror.org/031evmb56" + ] + }, + { + "affiliation": "Twin Cities Spine Center, Minneapolis, MN, USA", + "ror_ids": [ + "https://ror.org/03zpmpz54" + ] + }, + { + "affiliation": "Fisheries and Oceans Canada, Ottawa, ON, Canada", + "ror_ids": [ + "https://ror.org/02qa1x782" + ] + }, + { + "affiliation": "School of Materials Science and Engineering, Peking University, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Department of Pediatrics, Graduate School of Medicine, Yokohama City University, Yokohama, Japan", + "ror_ids": [ + "https://ror.org/0135d1r83" + ] + }, + { + "affiliation": "Department of Nursing, Tongji Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Hospital Sirio-Libanes, São Paulo, SP, Brazil", + "ror_ids": [ + "https://ror.org/03r5mk904" + ] + }, + { + "affiliation": "School of International Studies, Jawaharlal Nehru University, New Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/0567v8t28" + ] + }, + { + "affiliation": "Department of Computing and Mathematics, Faculty of Philosophy, Science and Letters of Ribeirão Preto, University of São Paulo (USP), Ribeirão Preto, SP, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "School of Electrical and Electronic Engineering, Hanoi University of Science and Technology, Hanoi, Vietnam", + "ror_ids": [ + "https://ror.org/04nyv3z04" + ] + }, + { + "affiliation": "American Indian Science and Engineering Society (AISES), Albuquerque, USA", + "ror_ids": [ + "https://ror.org/01cegnf65" + ] + }, + { + "affiliation": "Department of Neurology, Dementia Clinic, Aalborg University Hospital, Aalborg, Denmark", + "ror_ids": [ + "https://ror.org/02jk5qe80" + ] + }, + { + "affiliation": "Center for Public Health Sciences, National Cancer Center, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/0025ww868" + ] + }, + { + "affiliation": "Konrad Lorenz Institute of Ethology, University of Veterinary Medicine, Vienna, Austria", + "ror_ids": [ + "https://ror.org/01w6qp003" + ] + }, + { + "affiliation": "Department of Psychological Medicine, Institute of Psychiatry, Psychology and Neuroscience, King’s College London, London, UK", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "School of Chemical Sciences, University of Chinese Academy of Sciences, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05qbk4x57" + ] + }, + { + "affiliation": "Present address: Laboratorio de Genomica Funcional de Leguminosas, Facultad de Estudios Superiores Iztacala, Universidad Nacional Autonoma de Mexico, Tlalnepantla, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Science, Minia University, Minia, Egypt", + "ror_ids": [ + "https://ror.org/02hcv4z63" + ] + }, + { + "affiliation": "Population Health Research Institute, Hamilton, ON, Canada", + "ror_ids": [ + "https://ror.org/03kwaeq96" + ] + }, + { + "affiliation": "School of Mechanical & Aerospace Engineering, Nanyang Technological University, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/02e7b5302" + ] + }, + { + "affiliation": "Africa Institute for Research in Economics and Social Sciences (AIRESS), University Mohamed VI Polytechnic, Rabat, Morocco", + "ror_ids": [ + "https://ror.org/03xc55g68" + ] + }, + { + "affiliation": "Department of Medicine, The Warren Alpert Medical School at Brown University, Providence, USA", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "Institute of Medical Microbiology, University Hospital of RWTH, Aachen, Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "Neurologi Department, Medical Faculty of Universitas Syiah Kuala, Banda Aceh, Aceh, Indonesia", + "ror_ids": [ + "https://ror.org/05v4dza81" + ] + }, + { + "affiliation": "Hunan Provincial Key Laboratory of Intelligent Manufacturing Technology for High-performance Mechanical Equipment, Changsha University of Science and Technology, Changsha, China", + "ror_ids": [ + "https://ror.org/03yph8055" + ] + }, + { + "affiliation": "Polymer Materials Engineering Department, Faculty of Engineering, Hitit University, Çorum, Turkey", + "ror_ids": [ + "https://ror.org/01x8m3269" + ] + }, + { + "affiliation": "Department of Humanities, Pompeu Fabra University, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/04n0g0b29" + ] + }, + { + "affiliation": "Wayne State University, Detroit, Michigan, United States", + "ror_ids": [ + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "Department of Psychiatry and Behavioral Sciences, Emory University School of Medicine, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Key Laboratory of Control of Power Transmission and Conversion (SJTU), Ministry of Education, Shanghai, China", + "ror_ids": [ + "https://ror.org/01mv9t934" + ] + }, + { + "affiliation": "Division of Nephrology, Department of Internal Medicine, Presbyterian Medical Center, Jeonju, Republic of Korea", + "ror_ids": [ + "https://ror.org/01fvnb423" + ] + }, + { + "affiliation": "Low Carbon Energy and Resources Technologies Research Group, Faculty of Engineering, University of Nottingham, Nottingham, UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Princess Margaret Cancer Centre, Princess Margaret Hospital, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087", + "https://ror.org/01tajhr18", + "https://ror.org/03zayce58" + ] + }, + { + "affiliation": "MOE Key Laboratory of Pollution Processes and Environmental Criteria/Tianjin Key Laboratory of Environmental Remediation and Pollution Control, College of Environmental Science and Engineering, Nankai University, Tianjin, China", + "ror_ids": [ + "https://ror.org/01y1kjr75" + ] + }, + { + "affiliation": "Department of Pathology, School of Medicine, Namazee Teaching Hospital, Shiraz University of Medical Sciences, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/01n3s4692" + ] + }, + { + "affiliation": "Biodiversity and Natural Resources Program, International Institute for Applied Systems Analysis (IIASA), Laxenburg, Austria", + "ror_ids": [ + "https://ror.org/02wfhk785" + ] + }, + { + "affiliation": "Department of Urology, Dalhousie University, Halifax, NS, Canada", + "ror_ids": [ + "https://ror.org/01e6qks80" + ] + }, + { + "affiliation": "Genomic Medicine and Familial Cancer Centre, The Royal Melbourne Hospital, Parkville, VIC, Australia", + "ror_ids": [ + "https://ror.org/005bvs909" + ] + }, + { + "affiliation": "Faculty of Built Environment, Eindhoven University of Technology, Eindhoven, The Netherlands", + "ror_ids": [ + "https://ror.org/02c2kyt77" + ] + }, + { + "affiliation": "Federal Research Center of Problems of Chemical Physics and Medicinal Chemistry, Russian Academy of Sciences, Chernogolovka, Moscow Region, Russian Federation", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Department of Accounting, Business School, Al-Ahliyya Amman University, Amman, Jordan", + "ror_ids": [ + "https://ror.org/00xddhq60" + ] + }, + { + "affiliation": "Department of Cancer Immunology, Genentech Inc., South San Francisco, USA", + "ror_ids": [ + "https://ror.org/04gndp242" + ] + }, + { + "affiliation": "Department of Oncology, Oslo University Hospital, Oslo, Norway", + "ror_ids": [ + "https://ror.org/00j9c2840" + ] + }, + { + "affiliation": "Darden School of Business, University of Virginia, Charlottesville, VA, USA", + "ror_ids": [ + "https://ror.org/0153tk833" + ] + }, + { + "affiliation": "Dr. Phillip Frost Department of Dermatology and Cutaneous Surgery, University of Miami Miller School of Medicine, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/02dgjyy92" + ] + }, + { + "affiliation": "Skryabin Institute of Biochemistry and Physiology of Microorganisms, Russian Academy of Sciences, Federal Research Center “Pushchino Scientific Center for Biological Research of the Russian Academy of Sciences”, Pushchino, Moscow region, Russia", + "ror_ids": [ + "https://ror.org/05tc61k56", + "https://ror.org/048zssa22" + ] + }, + { + "affiliation": "Department of Business and Quantitative Studies, University of Naples Parthenope, Naples, Italy", + "ror_ids": [ + "https://ror.org/05pcv4v03" + ] + }, + { + "affiliation": "Department of General Surgery, Northern Jiangsu People’s Hospital, Yangzhou, China", + "ror_ids": [ + "https://ror.org/04gz17b59" + ] + }, + { + "affiliation": "Department of Agriculture, Crop Production and Rural Environment, University of Thessaly, Volos, Greece", + "ror_ids": [ + "https://ror.org/04v4g9h31" + ] + }, + { + "affiliation": "Hiroshima University School of Medicine, Hiroshima, Japan", + "ror_ids": [ + "https://ror.org/03t78wx29" + ] + }, + { + "affiliation": "School of Economics and Management, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Department of Oral Biological & Medical Sciences, Faculty of Dentistry, University of British Columbia, Vancouver, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Botany and Microbiology, Faculty of Science, Al-Azhar University, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/05fnp1145" + ] + }, + { + "affiliation": "Faculty of Engineering and Information Sciences, University of Wollongong in Dubai, Dubai, UAE", + "ror_ids": [ + "https://ror.org/0447ajy94" + ] + }, + { + "affiliation": "Department of Physics, Technion, Israel Institute of Technology, Haifa, Israel", + "ror_ids": [ + "https://ror.org/03qryx823" + ] + }, + { + "affiliation": "Dermatology, and Venereology Department, Faculty of Medicine for Girls, Al-Azhar University, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/05fnp1145" + ] + }, + { + "affiliation": "Polytechnic of Milan, Milan, Italy", + "ror_ids": [ + "https://ror.org/01nffqt88" + ] + }, + { + "affiliation": "Department of Surgery, Complutense University of Madrid, Hospital Clinico “San Carlos”, Madrid, Spain", + "ror_ids": [ + "https://ror.org/04d0ybj29", + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Faculty of Engineering, University of Rome Niccolò Cusano, Rome, Italy", + "ror_ids": [ + "https://ror.org/032c3ae16" + ] + }, + { + "affiliation": "Department of Gastroenterology, Graduate School of Medicine, The University of Tokyo Hospital, Bunkyo-ku, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/022cvpj02" + ] + }, + { + "affiliation": "Division of Forestry and Natural Resources, West Virginia University, Morgantown, WV, USA", + "ror_ids": [ + "https://ror.org/011vxgd24" + ] + }, + { + "affiliation": "Gebze Technical University, Southern Illinois University Edwardsville, Turkey, USA", + "ror_ids": [ + "https://ror.org/04cqs5j56" + ] + }, + { + "affiliation": "International Research Center for Animal Health Breeding, College of Animal Science and Technology, Shihezi University, Shihezi, China", + "ror_ids": [ + "https://ror.org/04x0kvm78" + ] + }, + { + "affiliation": "Department of Experimental Otology, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Waseda University, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/00ntfnx83" + ] + }, + { + "affiliation": "York University, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/05fq50484" + ] + }, + { + "affiliation": "Coastal Sciences Division, Pacific Northwest National Laboratory, Sequim, WA, USA", + "ror_ids": [ + "https://ror.org/05h992307" + ] + }, + { + "affiliation": "University of Bologna, Bologna, Italy", + "ror_ids": [ + "https://ror.org/01111rn36" + ] + }, + { + "affiliation": "Division of Gastroenterology, Icahn School of Medicine at Mount Sinai, New York, NY, USA", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "Department of Clinical Chemistry, University Medical Center, Göttingen, Germany", + "ror_ids": [ + "https://ror.org/021ft0n22" + ] + }, + { + "affiliation": "Department of Tourism and Hospitality Management, RANEPA St. Petersburg (The Branch of the Presidential Academy of National Economy and Public Administration), Saint Petersburg, Russia", + "ror_ids": [ + "https://ror.org/04xnm9a92" + ] + }, + { + "affiliation": "Graduate and Professional Studies in Education, California State University, Sacramento, USA", + "ror_ids": [ + "https://ror.org/03e26wv14" + ] + }, + { + "affiliation": "Department of Psychology, Liverpool John Moores University, Liverpool, UK", + "ror_ids": [ + "https://ror.org/04zfme737" + ] + }, + { + "affiliation": "College of Materials and Textiles, Zhejiang Sci-Tech University, Hangzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03893we55" + ] + }, + { + "affiliation": "Institute of Green Chemistry and Chemical Technology, Jiangsu University, Zhenjiang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03jc41j30" + ] + }, + { + "affiliation": "Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02yrq0923" + ] + }, + { + "affiliation": "Department of Anthropology, University of Manitoba, Winnipeg, Manitoba, Canada", + "ror_ids": [ + "https://ror.org/02gfys938" + ] + }, + { + "affiliation": "Department of Pathology, Warrington & Halton Teaching Hospitals NHS Foundation Trust, Warrington, UK", + "ror_ids": [ + "https://ror.org/00y3snf11" + ] + }, + { + "affiliation": "Universidade de Lisboa, Lisbon, Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86" + ] + }, + { + "affiliation": "Department of Clinical Psychology and Psychotherapy, Babeʂ-Bolyai University, Cluj-Napoca, Romania", + "ror_ids": [ + "https://ror.org/02rmd1t30" + ] + }, + { + "affiliation": "Master’s Program in Biomedical Science, Vanderbilt University, Nashville, TN, USA", + "ror_ids": [ + "https://ror.org/02vm5rt34" + ] + }, + { + "affiliation": "Department of Mathematics and Informatics, Chernivtsi National University, Chernivtsi, Ukraine", + "ror_ids": [ + "https://ror.org/044n25186" + ] + }, + { + "affiliation": "Organisation Européenne pour la Recherche Nucléaire (CERN), Geneva, Switzerland", + "ror_ids": [ + "https://ror.org/01ggx4157" + ] + }, + { + "affiliation": "Peking University First Hospital, Beijing, China", + "ror_ids": [ + "https://ror.org/02z1vqm45" + ] + }, + { + "affiliation": "Department of Communication Studies, University of Portland, Portland, OR, USA", + "ror_ids": [ + "https://ror.org/01q6pmm96" + ] + }, + { + "affiliation": "Department of Psychology, MacEwan University, Edmonton, AB, Canada", + "ror_ids": [ + "https://ror.org/003s89n44" + ] + }, + { + "affiliation": "Electrical Engineering Department, Faculty of Engineering, South Valley University, Qena, Egypt", + "ror_ids": [ + "https://ror.org/00jxshx33" + ] + }, + { + "affiliation": "Faculty of Sciences and Letters, Department of Physics, Istanbul Kultur University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/05jvrwv37" + ] + }, + { + "affiliation": "Institute for Brain Research and Rehabilitation, and Guangdong Key Laboratory of Mental Health and Cognitive Science, South China Normal University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/01kq0pv72" + ] + }, + { + "affiliation": "Department of Finance, Performance & Marketing, Teesside University International Business School, Teesside University, Middlesbrough, Tees Valley, UK", + "ror_ids": [ + "https://ror.org/03z28gk75" + ] + }, + { + "affiliation": "Institut de Biologie Valrose, Université Côte d’Azur, CNRS, Nice, Inserm, France", + "ror_ids": [ + "https://ror.org/019tgvf94", + "https://ror.org/03bnma344" + ] + }, + { + "affiliation": "Sexual and Reproductive Medicine Program (Urology Service), Memorial Sloan Kettering Cancer Center, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02yrq0923" + ] + }, + { + "affiliation": "Medical College, Yan’an University, Yan’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/01dyr7034" + ] + }, + { + "affiliation": "Departamento de Ecosistemas Agroforestales, Escuela Técnica Superior de Ingeniería Agronómica Y del Medio Natural (ETSIAMN), Universitat Politècnica de València (UPV), Valencia, Spain", + "ror_ids": [ + "https://ror.org/01460j859" + ] + }, + { + "affiliation": "Medical University of Plovdiv, Plovdiv, Bulgaria", + "ror_ids": [ + "https://ror.org/02kzxd152" + ] + }, + { + "affiliation": "National Yang Ming Chiao Tung University, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/00se2k293" + ] + }, + { + "affiliation": "MEPhI National Research Nuclear University, Moscow, Russia", + "ror_ids": [ + "https://ror.org/04w8z7f34" + ] + }, + { + "affiliation": "Department of Economics and Management, University of Trento, Trento, TN, Italy", + "ror_ids": [ + "https://ror.org/05trd4x28" + ] + }, + { + "affiliation": "School of Material and Energy, Yunnan University, Kunming, China", + "ror_ids": [ + "https://ror.org/0040axw97" + ] + }, + { + "affiliation": "School of Medicine, Department of Pulmonary Diseases, Kocaeli University, Kocaeli, Turkey", + "ror_ids": [ + "https://ror.org/0411seq30" + ] + }, + { + "affiliation": "Department of Family Medicine, National University Health System and Yong Loo Lin School of Medicine, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/05tjjsh18" + ] + }, + { + "affiliation": "Zoology/Parasitology, Ruhr-Universität Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Department of Experimental Therapeutics, National Cancer Center Hospital, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/03rm3gk43" + ] + }, + { + "affiliation": "Department of Medical Oncology, Amsterdam University Medical Centers, University of Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463", + "https://ror.org/05grdyy37" + ] + }, + { + "affiliation": "Clinical Development, Norgine, Harefield, Uxbridge, UK", + "ror_ids": [ + "https://ror.org/046zgtw08" + ] + }, + { + "affiliation": "Department of Civil Engineering, College of Engineering, Universiti Tenaga Nasional, Kajang, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/03kxdn807" + ] + }, + { + "affiliation": "Academic Department of Chemistry and Biology, UTFPR, Curitiba, PR, Brazil", + "ror_ids": [ + "https://ror.org/002v2kq79" + ] + }, + { + "affiliation": "Egyptian Petroleum Research Institute, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/044panr52" + ] + }, + { + "affiliation": "Sydney Medical School, University of Sydney, Sydney, New South Wales, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "ETSI Informática, Universidad de Sevilla, Sevilla, Spain", + "ror_ids": [ + "https://ror.org/03yxnpp24" + ] + }, + { + "affiliation": "Nordic Africa Institute, Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/05q84se63" + ] + }, + { + "affiliation": "Shandong Institute of Parasitic Diseases, Shandong First Medical University & Shandong Academy of Medical Sciences, Jining City, Shandong Province, China", + "ror_ids": [ + "https://ror.org/05jb9pq57" + ] + }, + { + "affiliation": "Radiation Oncology Department, Iridium Network, Antwerp, Belgium", + "ror_ids": [ + "https://ror.org/008x57b05" + ] + }, + { + "affiliation": "Department of Civil Engineering, Faculty of Engineering, Institute of Advanced Technology, Arak University, Arak, Iran", + "ror_ids": [ + "https://ror.org/00ngrq502" + ] + }, + { + "affiliation": "Zentrum für Augenheilkunde, Uniklinik Köln, Köln, Deutschland", + "ror_ids": [ + "https://ror.org/05mxhda18" + ] + }, + { + "affiliation": "Wastewater Technology Division, CSIR-National Environmental Engineering Research Institute, Nagpur Maharashtra, India", + "ror_ids": [ + "https://ror.org/021r5ns39" + ] + }, + { + "affiliation": "Tribology Research Institute, Key Laboratory for Advanced Technology of Materials of Ministry of Education, Southwest Jiaotong University, Chengdu, China", + "ror_ids": [ + "https://ror.org/00hn7w693" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Indian Institute of Information Technology, Kottayam, India", + "ror_ids": [ + "https://ror.org/02z8z1589" + ] + }, + { + "affiliation": "Department of Psychology, National Taiwan University, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05bqach95" + ] + }, + { + "affiliation": "Sabuncuoğlu Şerefeddin Training and Research Hospital, Medical Biochemistry, Amasya University, Amasya, Turkey", + "ror_ids": [ + "https://ror.org/00sbx0y13" + ] + }, + { + "affiliation": "Department of Occupational Therapy, College of S/W Digital Healthcare Convergence, Yonsei University, Wonju, South Korea", + "ror_ids": [ + "https://ror.org/01wjejq96" + ] + }, + { + "affiliation": "International Centre for Theoretical Sciences (ICTS-TIFR), Bangalore, India", + "ror_ids": [ + "https://ror.org/0015qa126" + ] + }, + { + "affiliation": "Department of Cell and Chemical Biology, Leiden University Medical Center, Leiden, the Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17" + ] + }, + { + "affiliation": "Experimental Physics Division, Atomic Energy Centre, Dhaka, Bangladesh", + "ror_ids": [ + "https://ror.org/01bw5rm87" + ] + }, + { + "affiliation": "Department of Plant Physiology, Institute of Agricultural Sciences, Banaras Hindu University, Varanasi, India", + "ror_ids": [ + "https://ror.org/04cdn2797" + ] + }, + { + "affiliation": "Department of Environmental Engineering, Gebze Technical University, Kocaeli, Turkey", + "ror_ids": [ + "https://ror.org/01sdnnq10" + ] + }, + { + "affiliation": "Klinik für Nuklearmedizin, Universitätsklinikum Ulm, Ulm, Deutschland", + "ror_ids": [ + "https://ror.org/05emabm63" + ] + }, + { + "affiliation": "Department of Psychiatry and Psychotherapy, University Hospital, LMU Munich, Munich, Germany", + "ror_ids": [ + "https://ror.org/02jet3w32" + ] + }, + { + "affiliation": "Van Swinderen Institute, University of Groningen, Groningen, Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Internal Medicine, Division of Electrophysiology, School of Medicine, Virginia Commonwealth University, Richmond, VA, USA", + "ror_ids": [ + "https://ror.org/02nkdxk79" + ] + }, + { + "affiliation": "Department of Radiology & Nuclear Medicine, Erasmus MC, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/018906e22" + ] + }, + { + "affiliation": "Iran University of Science and Technology (IUST), Tehran, Iran", + "ror_ids": [ + "https://ror.org/01jw2p796" + ] + }, + { + "affiliation": "Royal National Ear, Nose, Throat and Eastman Dental Hospital, University College Hospitals London, London, UK", + "ror_ids": [ + "https://ror.org/00wrevg56", + "https://ror.org/055jskg35" + ] + }, + { + "affiliation": "Discipline of Pharmacy, Faculty of Health, University of Canberra, Bruce, ACT, Australia", + "ror_ids": [ + "https://ror.org/04s1nv328" + ] + }, + { + "affiliation": "Louisiana State University School of Medicine, New Orleans, LA, USA", + "ror_ids": [ + "https://ror.org/05ect4e57" + ] + }, + { + "affiliation": "Bahrami Children Hospital, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Canadian Quantum Research Center, Vernon, Canada", + "ror_ids": [ + "https://ror.org/027axbt27" + ] + }, + { + "affiliation": "Faculty of Medicine, Saint Joseph University of Beirut, Beirut, Lebanon", + "ror_ids": [ + "https://ror.org/044fxjq88" + ] + }, + { + "affiliation": "Department of Science Education, University of Copenhagen, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/035b05819" + ] + }, + { + "affiliation": "Institute for Alpine Environment, Eurac Research, Bozen/Bolzano, Italy", + "ror_ids": [ + "https://ror.org/01xt1w755" + ] + }, + { + "affiliation": "School of Architecture and Planning, Hunan University, Changsha, China", + "ror_ids": [ + "https://ror.org/05htk5m33" + ] + }, + { + "affiliation": "Cancer Research Program, Rajiv Gandhi Centre for Biotechnology (RGCB), Thiruvananthapuram, India", + "ror_ids": [ + "https://ror.org/05sdqd547" + ] + }, + { + "affiliation": "Computer Science and Engineering, Indian Institute of Technology Indore, Indore, Madhya Pradesh, India", + "ror_ids": [ + "https://ror.org/01hhf7w52" + ] + }, + { + "affiliation": "Division of Emergency Medicine, Department of Pediatrics, Boston Children’s Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/00dvg7y05" + ] + }, + { + "affiliation": "Microsoft Spain & IE Business School – IE University, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02jjdwm75" + ] + }, + { + "affiliation": "MetroWest Medical Center, Framingham, MA, USA", + "ror_ids": [ + "https://ror.org/05bpnne23" + ] + }, + { + "affiliation": "University of California, Santa Cruz, USA", + "ror_ids": [ + "https://ror.org/03s65by71" + ] + }, + { + "affiliation": "Department of Botany, Government Degree College, Ramban, Jammu, India", + "ror_ids": [ + "https://ror.org/032xfst36" + ] + }, + { + "affiliation": "Department of Soil and Environmental Science, University of Agriculture Faisalabad, Faisalabad, Pakistan", + "ror_ids": [ + "https://ror.org/054d77k59" + ] + }, + { + "affiliation": "College of Civil and Transportation Engineering, Hohai University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01wd4xt90" + ] + }, + { + "affiliation": "Plant Biotechnology Department, Atta-ur-Rahman School of Applied Biosciences, National University of Sciences & Technology, Islamabad, Pakistan", + "ror_ids": [ + "https://ror.org/03w2j5y17" + ] + }, + { + "affiliation": "Shandong Provincial Key Laboratory of Animal Resistance Biology, Collaborative Innovation Center of Cell Biology in Universities of Shandong, Center for Cell Structure and Function, Institute of Biomedical Science, College of Life Sciences, Shandong Normal University, , China", + "ror_ids": [ + "https://ror.org/01wy3h363" + ] + }, + { + "affiliation": "Kellogg School of Management, Northwestern University, Evanston, IL, USA", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Copenhagen Center for Glycomics, Department of Cellular and Molecular Medicine, University of Copenhagen, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/035b05819" + ] + }, + { + "affiliation": "Division of Pulmonary Medicine, Lausanne University Hospital (CHUV), University of Lausanne, Lausanne, Switzerland", + "ror_ids": [ + "https://ror.org/019whta54" + ] + }, + { + "affiliation": "Children’s Hospital of Los Angeles, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/00412ts95" + ] + }, + { + "affiliation": "School of Health Sciences, University of Greenwich, London, UK", + "ror_ids": [ + "https://ror.org/00bmj0a71" + ] + }, + { + "affiliation": "Bernhard Nocht Institute for Tropical Medicine, Hamburg, Germany", + "ror_ids": [ + "https://ror.org/01evwfd48" + ] + }, + { + "affiliation": "Department of Biology and South Texas Center for Emerging Infectious Diseases, The University of Texas at San Antonio, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/01kd65564" + ] + }, + { + "affiliation": "Department of Biochemistry and Biophysics, Stockholm University, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/05f0yaq80" + ] + }, + { + "affiliation": "Computational Sciences and Engineering Division (CSED), Oak Ridge National Laboratory, Oak Ridge, TN, USA", + "ror_ids": [ + "https://ror.org/01qz5mb56" + ] + }, + { + "affiliation": "Laboratório de Biotecnologia de Microrganismos, Universidade Federal de São João Del-Rei, Divinópolis, MG, Brazil", + "ror_ids": [ + "https://ror.org/03vrj4p82" + ] + }, + { + "affiliation": "Department of Epidemiology, University of Colorado, Anschutz Medical Campus, Denver, CO, USA", + "ror_ids": [ + "https://ror.org/03wmf1y16" + ] + }, + { + "affiliation": "Emeritus Chaplain, Women’s and Children’s Hospital, Adelaide, Australia", + "ror_ids": [ + "https://ror.org/03kwrfk72" + ] + }, + { + "affiliation": "Department of Chemistry, University of the Free State, Bloemfontein, South Africa", + "ror_ids": [ + "https://ror.org/009xwd568" + ] + }, + { + "affiliation": "Division of Cardiology, Duke University Medical Center, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/03njmea73" + ] + }, + { + "affiliation": "School of Physical Education and Health, Hunan University of Technology and Business, Changsha, China", + "ror_ids": [ + "https://ror.org/04j3vr751" + ] + }, + { + "affiliation": "Integrative Community Therapy Methodology/Brazilian Association of Social Psychiatry, Professor Emeritus of the Federal University of Ceará, Fortaleza, Brazil", + "ror_ids": [ + "https://ror.org/03srtnf24" + ] + }, + { + "affiliation": "Fernandes Figueira Institute, Oswaldo Cruz Foundation - FIOCRUZ, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/04jhswv08" + ] + }, + { + "affiliation": "Inserm, UMR 1304, GETBO, Univ Brest, CHRU Brest, Brest, France", + "ror_ids": [ + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Department of Basic Science, Faculty of Computers and Informatics, Suez Canal University, Ismailia, Egypt", + "ror_ids": [ + "https://ror.org/02m82p074" + ] + }, + { + "affiliation": "Department of Breast and Thyroid Surgery, Sichuan Provincial Hospital for Women and Children (Affiliated Women and Children’s Hospital of Chengdu Medical College), Chengdu, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01c4jmp52" + ] + }, + { + "affiliation": "School of Energy and Power Engineering, Beihang University, Beijing, China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Institute of Psychological Medicine and Clinical Neuroscience, Cardiff University, University Hospital of Wales, Cardiff, UK", + "ror_ids": [ + "https://ror.org/04fgpet95" + ] + }, + { + "affiliation": "Gujarat Technological University, Chandkheda, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/059x8vm09" + ] + }, + { + "affiliation": "China Business Studies Initiative (CBSI), School of Management, University of San Francisco, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/029m7xn54" + ] + }, + { + "affiliation": "Division of Gastroenterology, Department of Medicine, University of Alberta, Edmonton, Canada", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Universitätsklinikum Essen, Essen, Deutschland", + "ror_ids": [ + "https://ror.org/02na8dn90" + ] + }, + { + "affiliation": "Department of Electronics and Communications Engineering, Thiagarajar College of Engineering, Madurai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/01rgfv364" + ] + }, + { + "affiliation": "Department of Internal Medicine-Oncology, Shandong Cancer Hospital and Institute, Shandong First Medical University, Shandong Academy of Medical Sciences, Jinan, China", + "ror_ids": [ + "https://ror.org/05jb9pq57" + ] + }, + { + "affiliation": "Shandong Provincial Key Laboratory of Eco-environmental Science for Yellow River Delta, Binzhou University, Binzhou, Shandong, China", + "ror_ids": [ + "https://ror.org/05frpfj73" + ] + }, + { + "affiliation": "Department of Molecular Microbiology, School of Biotechnology, Madurai Kamaraj University, Madurai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/04c8e9019" + ] + }, + { + "affiliation": "Hangzhou Institute of Innovative Medicine, College of Pharmaceutical Sciences, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "School of Business Management, Bandung Institute of Technology, Bandung, Indonesia", + "ror_ids": [ + "https://ror.org/00apj8t60" + ] + }, + { + "affiliation": "Sorbonne Université, CNRS, LIP6, Paris, France", + "ror_ids": [ + "https://ror.org/02en5vm52" + ] + }, + { + "affiliation": "Master of Islamic Study, Universitas Muhammadiyah Yogyakarta, Yogyakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03anrkt33" + ] + }, + { + "affiliation": "Vertebrate Biology Group, Zoology Department, Faculty of Science, Ain Shams University, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/00cb9w016" + ] + }, + { + "affiliation": "Computer Engineering and IT Department, Shiraz University of Technology, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/04bxa3v83" + ] + }, + { + "affiliation": "Department of Land Surveying and Geo-Informatics, The Hong Kong Polytechnic University, Hong Kong, China", + "ror_ids": [ + "https://ror.org/0030zas98" + ] + }, + { + "affiliation": "Silver School of Social Work, New York University, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "University of Lisbon (Centro Interuniversitário de História das Ciências e da Tecnologia), Lisbon, Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86", + "https://ror.org/03yhnhz23" + ] + }, + { + "affiliation": "Advanced Structural Engineering Laboratory, Department of Structural Engineering, Faculty of Civil Engineering, Ho Chi Minh City Open University, Ho Chi Minh City, Vietnam", + "ror_ids": [ + "https://ror.org/00tean533" + ] + }, + { + "affiliation": "Department of Biochemistry, University of Washington, Seattle, WA, USA", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "Post-graduate Program in Health and Nutrition, Nutrition School, Federal University of Ouro Preto, Ouro Preto, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/056s65p46" + ] + }, + { + "affiliation": "Be the Match, National Marrow Donor Program, Minneapolis, MN, USA", + "ror_ids": [ + "https://ror.org/016cke005" + ] + }, + { + "affiliation": "Department of Statistics, University of Pittsburgh, Pittsburgh, PA, USA", + "ror_ids": [ + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Emergency Medicine Department, Muhimbili National Hospital, Dar es Salaam, Tanzania", + "ror_ids": [ + "https://ror.org/02xvk2686" + ] + }, + { + "affiliation": "Department of Information Management and Electronic Commerce, Shanghai University of Finance and Economics, Shanghai, China", + "ror_ids": [ + "https://ror.org/00wtvfq62" + ] + }, + { + "affiliation": "CAS Center for Excellence in Comparative Planetology, Chinese Academy of Sciences, Hefei, China", + "ror_ids": [ + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "Institute of Mechanics, Technische Universität Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/03v4gjf40" + ] + }, + { + "affiliation": "S.P. Timoshenko Institute of Mechanics, National Academy of Science of Ukraine, Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/05fm1bt30", + "https://ror.org/00je4t102" + ] + }, + { + "affiliation": "Medical College of Georgia, Augusta University, Augusta, GA, USA", + "ror_ids": [ + "https://ror.org/012mef835" + ] + }, + { + "affiliation": "Department of Speech and Language Therapy, Faculty of Health Sciences, Biruni University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/01nkhmn89" + ] + }, + { + "affiliation": "Departments of Medicine and Physiology, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Department of Physics, Sri Malolan College of Arts and Science, University of Madras, Chengalpattu, India", + "ror_ids": [ + "https://ror.org/04jmt9361" + ] + }, + { + "affiliation": "School of Sciences, São Paulo State University – UNESP, Bauru, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Coordinación de Calidad de Insumos y Laboratorios Especializados, Instituto Mexicano del Seguro Social, Mexico City, Mexico", + "ror_ids": [ + "https://ror.org/03xddgg98" + ] + }, + { + "affiliation": "Department of Educational Administration and Policy, Faculty of Education, The Chinese University of Hong Kong, Hong Kong SAR, China", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Key Laboratory of Health Technology Assessment of National Health Commission, School of Public Health, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Institute of Biological, Environmental and Rural Sciences, Aberystwyth University, Aberystwyth, Ceredigion, UK", + "ror_ids": [ + "https://ror.org/015m2p889" + ] + }, + { + "affiliation": "Fishery Resources Assessment, Economics and Extension Division (FRAEED), ICAR-Central Marine Fisheries Research Institute, Kochi, Ernakulam North (P.O.), India", + "ror_ids": [ + "https://ror.org/02jw8vr54" + ] + }, + { + "affiliation": "Lerner Research and Glickman Urology and Kidney Institutes, Cleveland Clinic, Cleveland, OH, USA", + "ror_ids": [ + "https://ror.org/03xjacd83" + ] + }, + { + "affiliation": "Master of Business Administration Program, Brawijaya University, Malang, Indonesia", + "ror_ids": [ + "https://ror.org/01wk3d929" + ] + }, + { + "affiliation": "Malmö University, Malmö, Sweden", + "ror_ids": [ + "https://ror.org/05wp7an13" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, Montana State University, Bozeman, MT, USA", + "ror_ids": [ + "https://ror.org/02w0trx84" + ] + }, + { + "affiliation": "Department of Mathematics, New York University in Abu Dhabi, Saadiyat Island, Abu Dhabi, United Arab Emirates", + "ror_ids": [ + "https://ror.org/00e5k0821" + ] + }, + { + "affiliation": "Department of Medical Area, University of Udine, Udine, Italy", + "ror_ids": [ + "https://ror.org/05ht0mh31" + ] + }, + { + "affiliation": "Transportation Research Institute (IMOB) - Hasselt University, Hasselt, Belgium", + "ror_ids": [ + "https://ror.org/04nbhqj75" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Madhav Institute of Technology and Science, Gwalior, India", + "ror_ids": [ + "https://ror.org/01pj5v964" + ] + }, + { + "affiliation": "ECE, University of New Mexico, Albuquerque, NM, USA", + "ror_ids": [ + "https://ror.org/05fs6jp91" + ] + }, + { + "affiliation": "Peter Munk Cardiac Centre, University Health Network, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/042xt5161" + ] + }, + { + "affiliation": "Department of Economics, National University of Life and Environmental Sciences of Ukraine, Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/0441cbj57" + ] + }, + { + "affiliation": "Department of Pediatrics, National Taiwan University Hospital, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/03nteze27" + ] + }, + { + "affiliation": "Institut für Deutsche und Niederländische Philologie, Freie Universität Berlin, Berlin, Deutschland", + "ror_ids": [ + "https://ror.org/046ak2485" + ] + }, + { + "affiliation": "College of Computer Science and Technology, Nanjing University of Aeronautics and Astronautics, Nanjing, China", + "ror_ids": [ + "https://ror.org/01scyh794" + ] + }, + { + "affiliation": "Department of Applied Mathematics, USoVSAS, Gautam Buddha University, Greater Noida, India", + "ror_ids": [ + "https://ror.org/026cfwd52" + ] + }, + { + "affiliation": "Dipartimento di Medicina e Chirurgia, Università degli Studi di Milano Bicocca, Monza, Italia", + "ror_ids": [ + "https://ror.org/01ynf4891" + ] + }, + { + "affiliation": "Department of General Surgery, The First Affiliated Hospital of Zhejiang Chinese Medical University (Zhejiang Provincial Hospital of Chinese Medicine), Hangzhou, China", + "ror_ids": [ + "https://ror.org/04epb4p87" + ] + }, + { + "affiliation": "Department of Natural Resources and Desert Studies, Yazd University, Yazd, Iran", + "ror_ids": [ + "https://ror.org/02x99ac45" + ] + }, + { + "affiliation": "School of Physics, Peking University, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Department of Advanced Biomedical Sciences, University of Naples “Federico II”, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Department of Semiconductor and Electro-optical Technology, Minghsin University of Science and Technology, Hsinchu, Taiwan", + "ror_ids": [ + "https://ror.org/054etzm63" + ] + }, + { + "affiliation": "Penza State Agrarian University, Penza, Russia", + "ror_ids": [ + "https://ror.org/015jqsk41" + ] + }, + { + "affiliation": "Center of Pharmaceutical Engineering (PVZ), Technische Universität Braunschweig, Braunschweig, Germany", + "ror_ids": [ + "https://ror.org/010nsgg66" + ] + }, + { + "affiliation": "Program in Trauma, The R Adams Cowley Shock Trauma Center, University of Maryland School of Medicine, Baltimore, MD, USA", + "ror_ids": [ + "https://ror.org/04rq5mt64" + ] + }, + { + "affiliation": "Department of Biomedical Sciences for Health, Università degli Studi di Milano, Milan, Italy", + "ror_ids": [ + "https://ror.org/00wjc7c48" + ] + }, + { + "affiliation": "Department of Nutrition, University of North Carolina at Chapel Hill, Chapel Hill, NC, USA", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Division of General Internal Medicine, Department of Internal Medicine, University of Iowa, Iowa City, USA", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "University of Sciences Po Paris, Paris, France", + "ror_ids": [ + "https://ror.org/05fe7ax82" + ] + }, + { + "affiliation": "Microbiology, Queen’s Medical Centre, Nottingham, UK", + "ror_ids": [ + "https://ror.org/03ap6wx93" + ] + }, + { + "affiliation": "Epigenomics and Mechanisms Branch, International Agency for Research on Cancer, Lyon, France", + "ror_ids": [ + "https://ror.org/00v452281" + ] + }, + { + "affiliation": "Division of Cardiology, Department of Internal Medicine, Incheon St. Mary’s Hospital, The Catholic University of Korea, Seoul, Korea", + "ror_ids": [ + "https://ror.org/01fpnj063", + "https://ror.org/017gxrm85" + ] + }, + { + "affiliation": "Institute of Automation, University of Bremen, Bremen, Germany", + "ror_ids": [ + "https://ror.org/04ers2y35" + ] + }, + { + "affiliation": "Southampton Business School, University of Southampton, Southampton, UK", + "ror_ids": [ + "https://ror.org/01ryk1543" + ] + }, + { + "affiliation": "Department of Political Science, University of Pittsburgh, Pittsburgh, PA, USA", + "ror_ids": [ + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Laboratory of Aquatic Organisms, Department of Biological Sciences, Universidade Estadual de Santa Cruz, Ilhéus, Bahia, Brazil", + "ror_ids": [ + "https://ror.org/01zwq4y59" + ] + }, + { + "affiliation": "School of Biomedical Engineering, Anhui Medical University, Hefei, China", + "ror_ids": [ + "https://ror.org/03xb04968" + ] + }, + { + "affiliation": "Department of Public Health, Sefako Makgatho Health Sciences University, Pretoria, South Africa", + "ror_ids": [ + "https://ror.org/003hsr719" + ] + }, + { + "affiliation": "Department of Neurosurgery, Xinhua Hospital Affiliated to Shanghai JiaoTong University School of Medicine, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04dzvks42", + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Department of Endoscopy, Respiratory Endoscopy Division, National Cancer Center Hospital, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/03rm3gk43" + ] + }, + { + "affiliation": "Faculty of Agriculture, Department of Field Crops, Tokat Gaziosmanpasa University, Tokat, Turkey", + "ror_ids": [ + "https://ror.org/01rpe9k96" + ] + }, + { + "affiliation": "Institute for Medical Microbiology, Immunology and Hygiene, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "Department of Computing and Numerical Analysis, University of Córdoba, Córdoba, Spain", + "ror_ids": [ + "https://ror.org/05yc77b46" + ] + }, + { + "affiliation": "College of Fisheries and Ocean Sciences, University of Alaska Fairbanks, Fairbanks, AK, USA", + "ror_ids": [ + "https://ror.org/01j7nq853" + ] + }, + { + "affiliation": "Safe Relationships and Communities Research Group, University of South Australia, Adelaide, South Australia, Australia", + "ror_ids": [ + "https://ror.org/01p93h210" + ] + }, + { + "affiliation": "E-Learning Department, Virtual School, Shiraz University of Medical Sciences, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/01n3s4692" + ] + }, + { + "affiliation": "Department of Oral Surgery and Pathology, School of Dentistry, Federal University of Minas Gerais, Belo Horizonte, MG, Brazil", + "ror_ids": [ + "https://ror.org/0176yjw32" + ] + }, + { + "affiliation": "Department of Chemistry, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Institut of Mathematics, University of Würzburg, Würzburg, Germany", + "ror_ids": [ + "https://ror.org/00fbnyb24" + ] + }, + { + "affiliation": "Department of Child and Adolescent Psychiatry, Charité Universitätsmedizin Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/001w7jn25" + ] + }, + { + "affiliation": "Nephrology Department, The First Affiliated Hospital of Jinan University, Jinan University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/05d5vvz89" + ] + }, + { + "affiliation": "Department of Neurology, Hope Center for Neurological Disorders, Knight Alzheimer Disease Research Center, Washington University School of Medicine, St. Louis, MO, USA", + "ror_ids": [ + "https://ror.org/01yc7t268", + "https://ror.org/035nzyk88" + ] + }, + { + "affiliation": "Computer Science Department, Engineering Research Institute of Aragon, Universidad de Zaragoza, Zaragoza, Spain", + "ror_ids": [ + "https://ror.org/012a91z28" + ] + }, + { + "affiliation": "Department of Biotechnology, Andhra University, Visakhapatnam, Andhra Pradesh, India", + "ror_ids": [ + "https://ror.org/049skhf47" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, Faculty of Applied Medical Sciences, Umm Al- Qura University, Makkah, Saudi Arabia", + "ror_ids": [ + "https://ror.org/01xjqrm90" + ] + }, + { + "affiliation": "Geriatric Perioperative Care, North Bristol NHS Trust, Bristol, UK", + "ror_ids": [ + "https://ror.org/036x6gt55" + ] + }, + { + "affiliation": "The First Clinical College, Wuhan University, Wuhan, China", + "ror_ids": [ + "https://ror.org/033vjfk17" + ] + }, + { + "affiliation": "Department of Electrical Engineering, Faculty of Engineering, Egyptian-Russian University, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/029me2q51" + ] + }, + { + "affiliation": "CSIRO Agriculture and Food, Canberra, ACT, Australia", + "ror_ids": [ + "https://ror.org/03fy7b149", + "https://ror.org/03n17ds51" + ] + }, + { + "affiliation": "Yale College, New Haven, CT, USA", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Department of Radiology, Shengjing Hospital, China Medical University, Shenyang, China", + "ror_ids": [ + "https://ror.org/032d4f246" + ] + }, + { + "affiliation": "Department of Biostatistics and Bioinformatics, Emory University, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Department of Applied Mathematics, Israeli Institute for Biological Research, Ness-Ziona, Israel", + "ror_ids": [ + "https://ror.org/05atez085" + ] + }, + { + "affiliation": "Department of Physics, Advanced Teacher’s Training College, University of Yaoundé I, Yaoundé, Cameroon", + "ror_ids": [ + "https://ror.org/022zbs961" + ] + }, + { + "affiliation": "Department of Pediatric Surgery, Huai’an Maternal and Children Health Hospital, Huai’an, China", + "ror_ids": [ + "https://ror.org/000aph098" + ] + }, + { + "affiliation": "College of Korean Medicine, Dongshin University, Naju, Jeollanam-Do, Republic of Korea", + "ror_ids": [ + "https://ror.org/01thhk923" + ] + }, + { + "affiliation": "Department of Neurology, Mainz Comprehensive Epilepsy and Sleep Medicine Center, University Medical Center of the Johannes Gutenberg University Mainz, Mainz, Germany", + "ror_ids": [ + "https://ror.org/00q1fsf04" + ] + }, + { + "affiliation": "Deparment of Medical Biochemistry, Faculty of Medicine, Aksaray University, Aksaray, Türkiye", + "ror_ids": [ + "https://ror.org/026db3d50" + ] + }, + { + "affiliation": "Service Science and Software Engineering Lab, University of the Philippines Diliman, Quezon City, Metro Manila, Philippines", + "ror_ids": [ + "https://ror.org/03tbh6y23" + ] + }, + { + "affiliation": "Department of Civil and Environmental Engineering, Universidad de La Costa, Barranquilla, Colombia", + "ror_ids": [ + "https://ror.org/01v5nhr20" + ] + }, + { + "affiliation": "Central China Normal University, Wuhan, China", + "ror_ids": [ + "https://ror.org/03x1jna21" + ] + }, + { + "affiliation": "Aircraft and Propulsion Laboratory, Ningbo Institute of Technology, Beihang University, Ningbo, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Department of Cardiology, Beijing Anzhen Hospital, Capital Medical University, Beijing, China", + "ror_ids": [ + "https://ror.org/013xs5b60", + "https://ror.org/02h2j1586" + ] + }, + { + "affiliation": "School of Economy, Yunnan University, Kunming, China", + "ror_ids": [ + "https://ror.org/0040axw97" + ] + }, + { + "affiliation": "Division of Pediatric Cardiology, University of Southern California, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "Department of Chemistry, Wayne State University, Detroit, MI, USA", + "ror_ids": [ + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "Postgraduate Program in Agricultural Sciences, Federal University of Piauí, Bom Jesus, Brazil", + "ror_ids": [ + "https://ror.org/00kwnx126" + ] + }, + { + "affiliation": "Universidad Nacional del Altiplano, UNA, Escuela Profesional de Ingeniería Topográfica y Agrimensura, Puno, Peru", + "ror_ids": [ + "https://ror.org/03kqcyw85" + ] + }, + { + "affiliation": "Fundacion ConVida, Universidad Nacional Abierta y a Distancia, UNAD, Medellin, Colombia", + "ror_ids": [ + "https://ror.org/047179s14" + ] + }, + { + "affiliation": "Abteilung Präventiv- und Sportmedizin, Institut für Arbeits‑, Sozial- und Umweltmedizin, Goethe-Universität Frankfurt am Main, Frankfurt am Main, Deutschland", + "ror_ids": [ + "https://ror.org/04cvxnb49" + ] + }, + { + "affiliation": "Rīga Stradiņš University, Riga, Latvia", + "ror_ids": [ + "https://ror.org/03nadks56" + ] + }, + { + "affiliation": "Department of Pharmacology, University of Virginia, Charlottesville, VA, USA", + "ror_ids": [ + "https://ror.org/0153tk833" + ] + }, + { + "affiliation": "Faculty of Agriculture, Majoring in Biotechnology, Menoufia University, Shibin el Kom, Egypt", + "ror_ids": [ + "https://ror.org/05sjrb944" + ] + }, + { + "affiliation": "Faculty of Pharmacy, Universitas Indonesia, Depok, Indonesia", + "ror_ids": [ + "https://ror.org/0116zj450" + ] + }, + { + "affiliation": "Centro de Neumología Pediátrica, San Juan, PR, USA", + "ror_ids": [ + "https://ror.org/05at36m36" + ] + }, + { + "affiliation": "United States Naval Academy, Annapolis, Maryland, USA", + "ror_ids": [ + "https://ror.org/00znex860" + ] + }, + { + "affiliation": "Analysis and Testing Center of Nanjing Normal University, Nanjing Normal University, Nanjing, China", + "ror_ids": [ + "https://ror.org/036trcv74" + ] + }, + { + "affiliation": "Management Department, Sri Krishnadevaraya University, Anantapur, Andhra Pradesh, India", + "ror_ids": [ + "https://ror.org/02fyxjb45" + ] + }, + { + "affiliation": "Wolfson Institute of Population Health, Queen Mary University of London, London, England, UK", + "ror_ids": [ + "https://ror.org/026zzn846" + ] + }, + { + "affiliation": "Jiangsu Key Laboratory for Biomaterials and Devices, School of Biological Science and Medical Engineering, Southeast University, Nanjing, P. R. China", + "ror_ids": [ + "https://ror.org/04ct4d772" + ] + }, + { + "affiliation": "Fakultas Keguruan Dan Ilmu Pendidikan, Universitas Muhammadiyah Surakarta, Surakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03cnmz153" + ] + }, + { + "affiliation": "Department of Chemistry and Physics, Saint Mary’s College, Notre Dame, USA", + "ror_ids": [ + "https://ror.org/02r839n55" + ] + }, + { + "affiliation": "Resurrection Medical Center, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/029dttz57" + ] + }, + { + "affiliation": "Nanophotonics, Debye Institute for Nanomaterials Science, Utrecht University, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "Institute of Infection and Immunity, Translational Medicine Institute, Xi’an Jiaotong University Health Science Center, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/017zhmm22" + ] + }, + { + "affiliation": "School of Chemical Engineering, College of Engineering, Sungkyunkwan University, Suwon, Republic of Korea", + "ror_ids": [ + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Department of Statistical Sciences, University of Rome La Sapienza, Rome, Italy", + "ror_ids": [ + "https://ror.org/02be6w209" + ] + }, + { + "affiliation": "Department of Civil Engineering, National Central University, Jhongli, Taiwan (R.O.C.)", + "ror_ids": [ + "https://ror.org/00944ve71" + ] + }, + { + "affiliation": "School of Atmospheric Sciences and Key Laboratory of Mesoscale Severe Weather/Ministry of Education, Nanjing University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "Division of Health System Science, Department of Medicine, University of Massachusetts Chan Medical School, Worcester, MA, USA", + "ror_ids": [ + "https://ror.org/0464eyp60" + ] + }, + { + "affiliation": "NCR Biotech Science Cluster, Translational Health Science and Technology Institute, Faridabad, India", + "ror_ids": [ + "https://ror.org/01qjqvr92" + ] + }, + { + "affiliation": "Department of Dermatology, Chang Gung Memorial Hospital and College of Medicine, Chang Gung University, Taoyuan City, Taiwan", + "ror_ids": [ + "https://ror.org/00d80zx46", + "https://ror.org/00fk9d670" + ] + }, + { + "affiliation": "School of Biomedical Sciences, The University of Western Australia, Crawley, WA, Australia", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "Melbourne School of Psychological Sciences, Faculty of Medicine, Dentistry and Health Sciences, University of Melbourne, Parkville, VIC, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Department of Thoracic and Cardiovascular Surgery, University of Ulsan College of Medicine, Asan Medical Center, Seoul, Korea", + "ror_ids": [ + "https://ror.org/03s5q0090", + "https://ror.org/02c2f8975" + ] + }, + { + "affiliation": "DKFZ Hector Cancer Institute at the University Medical Center Mannheim, Mannheim, Germany", + "ror_ids": [ + "https://ror.org/05sxbyd35" + ] + }, + { + "affiliation": "Frailty and Cognitive Impairment Research Group (FROG), University of Valencia, Valencia, Spain", + "ror_ids": [ + "https://ror.org/043nxc105" + ] + }, + { + "affiliation": "Faculty of Economics and Business, KU Leuven, Louvain, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Division of Biostatistics, Institute for Health & Equity, and Cancer Center, Medical College of Wisconsin, Milwaukee, WI, USA", + "ror_ids": [ + "https://ror.org/00qqv6244" + ] + }, + { + "affiliation": "Materials Science Center, Indian Institute of Technology Kharagpur, Kharagpur, India", + "ror_ids": [ + "https://ror.org/03w5sq511" + ] + }, + { + "affiliation": "University of Maryland Medical Center, Baltimore, MD, USA", + "ror_ids": [ + "https://ror.org/00sde4n60" + ] + }, + { + "affiliation": "Department of Ophthalmology, Kangbuk Samsung Hospital, Sungkyunkwan University School of Medicine, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/04q78tk20", + "https://ror.org/013e76m06" + ] + }, + { + "affiliation": "Faculty of Allied Health Sciences, Thammasat University, Pathumthani, Thailand", + "ror_ids": [ + "https://ror.org/002yp7f20" + ] + }, + { + "affiliation": "Department of Sustainable Design Engineering, Delft University of Technology, Delft, The Netherlands", + "ror_ids": [ + "https://ror.org/02e2c7k09" + ] + }, + { + "affiliation": "L. N. Gumilyov Eurasian National University, Astana, Kazakhstan", + "ror_ids": [ + "https://ror.org/0242cby63" + ] + }, + { + "affiliation": "Skin Wounds and Trauma Research Centre, RCSI University of Medicine and Health Sciences, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/01hxy9878" + ] + }, + { + "affiliation": "Ludwig Boltzmann Inst. for Arthritis and Rehabilitation, Paracelsus Medical University Salzburg & Nuremberg, Salzburg, Austria", + "ror_ids": [ + "https://ror.org/03z3mg085" + ] + }, + { + "affiliation": "Centre for Vaccines and Immunity, The Abigail Wexner Research Institute at Nationwide Children’s Hospital, The Ohio State University College of Medicine, Columbus, OH, USA", + "ror_ids": [ + "https://ror.org/003rfsp33", + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Department of Ophthalmology, Ankara Güven Hospital, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/023e6jq80" + ] + }, + { + "affiliation": "Department of Chemistry, Aligarh Muslim University, Aligarh, UP, India", + "ror_ids": [ + "https://ror.org/03kw9gc02" + ] + }, + { + "affiliation": "State Key Laboratory for Geomechanics and Deep Underground Engineering, School of Mechanics and Civil Engineering, China University of Mining and Technology, Xuzhou, China", + "ror_ids": [ + "https://ror.org/01xt2dr21" + ] + }, + { + "affiliation": "Pneumology Service, Hospital Galdakao-Usansolo, Galdakao, Bizkaia, Spain", + "ror_ids": [ + "https://ror.org/025714n80" + ] + }, + { + "affiliation": "Department of Urology, Shanghai Children’s Medical Center, Shanghai Jiao Tong University School of Medicine, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/00cd9s024" + ] + }, + { + "affiliation": "Department of Neuropsychiatry, Seoul National University Hospital, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/01z4nnt86" + ] + }, + { + "affiliation": "Student Research Committee, School of Medicine, Isfahan University of Medical Sciences, Isfahan, Iran", + "ror_ids": [ + "https://ror.org/04waqzz56" + ] + }, + { + "affiliation": "College of Control Science and Engineering, China University of Petroleum (East China), Qingdao, China", + "ror_ids": [ + "https://ror.org/05gbn2817" + ] + }, + { + "affiliation": "University of Klagenfurt, Klagenfurt, Austria", + "ror_ids": [ + "https://ror.org/05q9m0937" + ] + }, + { + "affiliation": "Division of Biomedical Sciences, Research Center for Genomic Medicine, Saitama Medical University, Hidaka, Saitama, Japan", + "ror_ids": [ + "https://ror.org/04zb31v77" + ] + }, + { + "affiliation": "Department of General Surgery, The First Affiliated Hospital of Chongqing Medical and Pharmaceutical College, Chongqing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05gvw2741" + ] + }, + { + "affiliation": "TUBITAK National Observatory, Antalya, Turkey", + "ror_ids": [ + "https://ror.org/00xfgvj95" + ] + }, + { + "affiliation": "Ansteel Beijing Research Institute Co., Ltd, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00sgtyj59" + ] + }, + { + "affiliation": "Australian Institute of Marine Science, Townsville, QLD, Australia", + "ror_ids": [ + "https://ror.org/03x57gn41" + ] + }, + { + "affiliation": "INFN Laboratori Nazionali di Frascati, Frascati, Italy", + "ror_ids": [ + "https://ror.org/049jf1a25" + ] + }, + { + "affiliation": "Department of Food Science Industry, Faculty of Agriculture, Ferdowsi University of Mashhad, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/00g6ka752" + ] + }, + { + "affiliation": "Department of Endocrinology, Bharti Hospital, Karnal, India", + "ror_ids": [ + "https://ror.org/04vpecq51" + ] + }, + { + "affiliation": "Emergency Department, University Hospital of Patras, Patras, Greece", + "ror_ids": [ + "https://ror.org/03c3d1v10" + ] + }, + { + "affiliation": "Instituto de Alta Investigación, Universidad de Tarapacá, Arica, Chile", + "ror_ids": [ + "https://ror.org/04xe01d27" + ] + }, + { + "affiliation": "School of Information Science and Technology, Hainan Normal University, Haikou, China", + "ror_ids": [ + "https://ror.org/031dhcv14" + ] + }, + { + "affiliation": "Institute of Theoretical Computer Science, Graz University of Technology, Graz, Austria", + "ror_ids": [ + "https://ror.org/00d7xrm67" + ] + }, + { + "affiliation": "Digestive Surgery, Hôpital Universitaire St Pierre, ULB, Brussels, Belgium", + "ror_ids": [ + "https://ror.org/01r9htc13" + ] + }, + { + "affiliation": "Department of Pharmacology and Toxicology, Faculty of Pharmacy, Zagazig University, Zagazig, Egypt", + "ror_ids": [ + "https://ror.org/053g6we49" + ] + }, + { + "affiliation": "Department of Applied Chemistry, College of Science, China University of Petroleum (Beijing), Beijing, China", + "ror_ids": [ + "https://ror.org/041qf4r12" + ] + }, + { + "affiliation": "The Affiliated Qingdao Central Hospital of Qingdao University, The Second Affiliated Hospital of Medical College of Qingdao University, Qingdao, China", + "ror_ids": [ + "https://ror.org/021cj6z65", + "https://ror.org/026e9yy16" + ] + }, + { + "affiliation": "School of Computer, Electronics and Information, Guangxi University, Nanning, Guangxi, China", + "ror_ids": [ + "https://ror.org/02c9qn167" + ] + }, + { + "affiliation": "Department of Chemistry and Bioengineering, Faculty of Fundamental Sciences, Vilnius Gediminas Technical University, Vilnius-40, Lithuania", + "ror_ids": [ + "https://ror.org/02x3e4q36" + ] + }, + { + "affiliation": "Division of Radiology, German Cancer Research Center (DKFZ), Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/04cdgtt98" + ] + }, + { + "affiliation": "Servicio de Medicina Nuclear, Hospital Universitario Virgen de las Nieves, Granada, Spain", + "ror_ids": [ + "https://ror.org/02f01mz90" + ] + }, + { + "affiliation": "Department of Mathematics and Graduate Program in Geology, Federal University of Parana´, Curitiba, PR, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "Translational Health Sciences, University of Bristol, Bristol, UK", + "ror_ids": [ + "https://ror.org/0524sp257" + ] + }, + { + "affiliation": "Dipartimento di Matematica, Università degli Studi di Salerno, Fisciano, SA, Italy", + "ror_ids": [ + "https://ror.org/0192m2k53" + ] + }, + { + "affiliation": "Department of Obstetrics & Gynecology, Oregon Health & Sciences University, Portland, OR, USA", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Department of Plant Pathology, Faculty of Crop Sciences, Sari Agricultural Sciences and Natural Resources University, Sari, Iran", + "ror_ids": [ + "https://ror.org/0284vkq26" + ] + }, + { + "affiliation": "Materials Science Division, Argonne National Laboratory, Lemont, IL, USA", + "ror_ids": [ + "https://ror.org/05gvnxz63" + ] + }, + { + "affiliation": "Department of Biological Sciences, Florida Atlantic University, Davie, FL, USA", + "ror_ids": [ + "https://ror.org/05p8w6387" + ] + }, + { + "affiliation": "School of Energy Materials, Mahatma Gandhi University, Kottayam, Kerala, India", + "ror_ids": [ + "https://ror.org/00h4spn88" + ] + }, + { + "affiliation": "Service d’Ophtalmologie, Hôpital de la Croix-Rousse, Hospices Civils de Lyon, Lyon, France", + "ror_ids": [ + "https://ror.org/006evg656", + "https://ror.org/01502ca60" + ] + }, + { + "affiliation": "Helmholtz Institute for Metabolic, Obesity and Vascular Research (HI-MAG) of the Helmholtz Centrum München at the University of Munich and University Hospital Leipzig, Leipzig, Germany", + "ror_ids": [ + "https://ror.org/05591te55", + "https://ror.org/028hv5492", + "https://ror.org/00cfam450" + ] + }, + { + "affiliation": "Govindram Seksaria Institute of Dacryology, L.V. Prasad Eye Institute, Hyderabad, Telangana, India", + "ror_ids": [ + "https://ror.org/01w8z9742" + ] + }, + { + "affiliation": "Institute of Health and Society, Clinical Effectiveness Research Group, University of Oslo, Oslo, Norway", + "ror_ids": [ + "https://ror.org/01xtthb56" + ] + }, + { + "affiliation": "Department of Biomedical Data Sciences, Leiden University Medical Centre, Leiden, The Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17" + ] + }, + { + "affiliation": "Precision Metrology Laboratory, Department of Mechanical Engineering, Sant Longowal Institute of Engineering and Technology, Longowal, India", + "ror_ids": [ + "https://ror.org/01n15vy71" + ] + }, + { + "affiliation": "Kavli Institute for Systems Neuroscience, NTNU Norwegian University of Science and Technology, Trondheim, Norway", + "ror_ids": [ + "https://ror.org/05xg72x27" + ] + }, + { + "affiliation": "Department of Plant Biology and Biodiversity, Management, College of Natural and Computational Sciences, Addis Ababa University, Addis Ababa, Ethiopia", + "ror_ids": [ + "https://ror.org/038b8e254" + ] + }, + { + "affiliation": "Law School, Charles Darwin University, Darwin City, NT, Australia", + "ror_ids": [ + "https://ror.org/048zcaj52" + ] + }, + { + "affiliation": "Thompson School of Social Work and Public Health, University of Hawaiʻi – Mānoa, Honolulu, HI, USA", + "ror_ids": [ + "https://ror.org/01wspgy28" + ] + }, + { + "affiliation": "Department of Molecular Genetics, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Mechanical Department, Faculty of Technology and Education, Sohag University, Sohag, Egypt", + "ror_ids": [ + "https://ror.org/02wgx3e98" + ] + }, + { + "affiliation": "Department of Epidemiology and Environmental Health, School of Public Health and Health Professions, University at Buffalo, The State University of New York, Buffalo, NY, USA", + "ror_ids": [ + "https://ror.org/01y64my43" + ] + }, + { + "affiliation": "West China School of Nursing, Sichuan University, Chengdu, China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "Laboratory of Food Technology, Department of Microbial and Molecular Systems (M2S), Leuven Food Science and Nutrition Research Centre (LFoRCe), KU Leuven, Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Washington and Lee University, Lexington, VA, USA", + "ror_ids": [ + "https://ror.org/05r9xgf14" + ] + }, + { + "affiliation": "Department of Industrial, Manufacturing, and Systems Engineering, University of Texas at Arlington, Arlington, TX, USA", + "ror_ids": [ + "https://ror.org/019kgqr73" + ] + }, + { + "affiliation": "Eternal University, Baru Sahib, Himachal Pradesh, India", + "ror_ids": [ + "https://ror.org/05ch82e76" + ] + }, + { + "affiliation": "Musculoskeletal Tissue Engineering Group, Vall d’Hebron Research Institute (VHIR), Universitat Autònoma de Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/01d5vx451", + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Radiobiology Unit, Bhabha Atomic Research Center, Mumbai, Maharashtra, India", + "ror_ids": [ + "https://ror.org/05w6wfp17" + ] + }, + { + "affiliation": "Department of Pharmaceutics, Faculty of Pharmacy and Pharmaceutical Sciences, University of Karachi, Karachi, Pakistan", + "ror_ids": [ + "https://ror.org/05bbbc791" + ] + }, + { + "affiliation": "Computing Technologies, RMIT, Melbourne, VIC, Australia", + "ror_ids": [ + "https://ror.org/04ttjf776" + ] + }, + { + "affiliation": "Department of Respiratory Medicine, National Key Clinical Specialty, Branch of National Clinical Research Center for Respiratory Disease, Xiangya Hospital, Central South University, Changsha, China", + "ror_ids": [ + "https://ror.org/00f1zfq44", + "https://ror.org/05c1yfj14" + ] + }, + { + "affiliation": "Department of Cardiology, University and University Hospital of Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/01462r250" + ] + }, + { + "affiliation": "School of Management, Jiangsu University, Zhenjiang, China", + "ror_ids": [ + "https://ror.org/03jc41j30" + ] + }, + { + "affiliation": "Nikolaev Institute of Inorganic Chemistry, Siberian Branch of the Russian Academy of Sciences, Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/04zpmt351", + "https://ror.org/02frkq021" + ] + }, + { + "affiliation": "Nursing Department, University of Quebec in Outaouais, Qc, Canada", + "ror_ids": [ + "https://ror.org/011pqxa69" + ] + }, + { + "affiliation": "Department of Biochemistry and Medical Genetics, Rady Faculty of Health Sciences, University of Manitoba, Winnipeg, MB, Canada", + "ror_ids": [ + "https://ror.org/02gfys938" + ] + }, + { + "affiliation": "Moscow Scientific Research Television Institute, Moscow, Russia", + "ror_ids": [ + "https://ror.org/03mjn8x60" + ] + }, + { + "affiliation": "Dipartimento di Matematica ‘Tullio Levi-Civita’, Università degli Studi di Padova, Padova, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Engelhardt Institute of Molecular Biology, Moscow, Russia", + "ror_ids": [ + "https://ror.org/027hwkg23" + ] + }, + { + "affiliation": "Laboratory of Environmental Health and Ecotoxicology, Department of Environmental Sciences, Jahangirnagar University, Dhaka, Bangladesh", + "ror_ids": [ + "https://ror.org/04ywb0864" + ] + }, + { + "affiliation": "Faculty of Medicine, Institute of Pathology, University of Belgrade, Belgrade, Serbia", + "ror_ids": [ + "https://ror.org/02qsmb048" + ] + }, + { + "affiliation": "Net Zero and Resilient Farming, Rothamsted Research, Okehampton, Devon, UK", + "ror_ids": [ + "https://ror.org/0347fy350" + ] + }, + { + "affiliation": "Department of Cranial Maxillofacial Plastic Surgery, University Clinic Leipzig, Leipzig, Germany", + "ror_ids": [ + "https://ror.org/028hv5492" + ] + }, + { + "affiliation": "Guangxi Collaborative Innovation Center of Study on Functional Ingredients of Agricultural Residues, Guangxi University of Chinese Medicine, Nanning, China", + "ror_ids": [ + "https://ror.org/024v0gx67" + ] + }, + { + "affiliation": "Institute for Theoretical Physics I, University of Stuttgart, Stuttgart, Germany", + "ror_ids": [ + "https://ror.org/04vnq7t77" + ] + }, + { + "affiliation": "Department of Orthopaedics, University of Texas Southwestern Medical Center, Dallas, TX, USA", + "ror_ids": [ + "https://ror.org/05byvp690" + ] + }, + { + "affiliation": "Unit of Andrology and Reproductive Medicine, Department of Medicine, University of Padova, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Cooperative Institute for Marine and Atmospheric Research, Pacific Islands Fisheries Science Center NOAA-IRC, Honolulu, Hawaii, USA", + "ror_ids": [ + "https://ror.org/02apffz65" + ] + }, + { + "affiliation": "School of Management, Tianjin University of Technology, Tianjin, China", + "ror_ids": [ + "https://ror.org/00zbe0w13" + ] + }, + { + "affiliation": "School of Geography, Queen Mary University of London, London, UK", + "ror_ids": [ + "https://ror.org/026zzn846" + ] + }, + { + "affiliation": "Arab Academy for Science, Technology and Maritime Transport, Arab League, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/0004vyj87" + ] + }, + { + "affiliation": "Department of Otolaryngology-Head and Neck Surgery, University Hospital of Tours, Tours, France", + "ror_ids": [ + "https://ror.org/00jpq0w62" + ] + }, + { + "affiliation": "Animal Medicine and Surgery Department, Faculty of Veterinary Medicine, Complutense University, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Department of Basic Sciences, Faculty of Veterinary Medicine, Ferdowsi University of Mashhad, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/00g6ka752" + ] + }, + { + "affiliation": "Nanyang Business School, Nanyang Technological University, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/02e7b5302" + ] + }, + { + "affiliation": "Sussex Neuroscience, School of Life Sciences, University of Sussex, Brighton, UK", + "ror_ids": [ + "https://ror.org/00ayhx656" + ] + }, + { + "affiliation": "Division of Internal Medicine, European Reference Network for Hereditary Metabolic Disorders (MetabERN), University Clinical Hospital, Santiago de Compostela, Spain", + "ror_ids": [ + "https://ror.org/00mpdg388" + ] + }, + { + "affiliation": "PharmD Program, Faculty of Pharmacy, University of Tabuk, Tabuk, Saudi Arabia", + "ror_ids": [ + "https://ror.org/04yej8x59" + ] + }, + { + "affiliation": "University of South-Eastern Norway, Kongsberg, Norway", + "ror_ids": [ + "https://ror.org/05ecg5h20" + ] + }, + { + "affiliation": "Faculty of Art and Science, Department of Chemistry, Manisa Celal Bayar University, Manisa, Yunusemre, Turkey", + "ror_ids": [ + "https://ror.org/053f2w588" + ] + }, + { + "affiliation": "Department of Immunology, Institute of Translational Medicine, Medical College, Yangzhou University, Yangzhou, Jiangsu, China", + "ror_ids": [ + "https://ror.org/03tqb8s11" + ] + }, + { + "affiliation": "Cystic Fibrosis Research Laboratory, Department of Psychology, Stanford University, Stanford, CA, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "University of Science and Technology of China, Hefei, China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Department of Computer Science, University of Chile, Santiago, Chile", + "ror_ids": [ + "https://ror.org/047gc3g35" + ] + }, + { + "affiliation": "Institut d‘Investigació Sanitària Pere Virgili, Tarragona, Catalonia, Spain", + "ror_ids": [ + "https://ror.org/01av3a615" + ] + }, + { + "affiliation": "Univ. Littoral Côte d’Opale, Univ. Lille, CNRS, IRD, UMR 8187, LOG, Laboratoire d’Océanologie et de Géosciences, Wimereux, France", + "ror_ids": [ + "https://ror.org/05m14rs93" + ] + }, + { + "affiliation": "Veterinary Stem Cell and Bioengineering Research Unit, Faculty of Veterinary Science, Chulalongkorn University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Division of Gender, Sexuality and Health, New York State Psychiatric Institute, New York, NY, USA", + "ror_ids": [ + "https://ror.org/04aqjf708" + ] + }, + { + "affiliation": "College of Chemistry and Bioengineering, Guilin University of Technology, Guilin, China", + "ror_ids": [ + "https://ror.org/03z391397" + ] + }, + { + "affiliation": "The Novo Nordisk Foundation Center for Protein Research, Faculty of Health Sciences, University of Copenhagen, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/035b05819", + "https://ror.org/04txyc737" + ] + }, + { + "affiliation": "School of Animal Science and Technology, Guangxi University, Nanning, Guangxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02c9qn167" + ] + }, + { + "affiliation": "Department of Environmental Health Engineering, School of Public Health, Research Centre for Health Sciences, Hamadan University of Medical Sciences, Hamadan, Iran", + "ror_ids": [ + "https://ror.org/02ekfbp48" + ] + }, + { + "affiliation": "Campus Kerckhoff, Justus-Liebig-Universität Gießen, Bad Nauheim, Deutschland", + "ror_ids": [ + "https://ror.org/033eqas34" + ] + }, + { + "affiliation": "Department of Advanced Biomedical Sciences, University of Naples Federico II, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Clinical Hematology Department, Institut Català d’Oncologia-Hospitalet, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/01j1eb875" + ] + }, + { + "affiliation": "Department of Biomedicine and Prevention, Ph.D. in Immunology, Molecular Medicine and Applied Biotechnology, University of Rome Tor Vergata, Rome, Italy", + "ror_ids": [ + "https://ror.org/02p77k626" + ] + }, + { + "affiliation": "Department of Mathematics, University of Padua, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Center for Teacher Education Research, Faculty of Education, Beijing Normal University, Beijing, P. R. China", + "ror_ids": [ + "https://ror.org/022k4wk35" + ] + }, + { + "affiliation": "Univ Angers, INSERM, Immunology and New Concepts in Immunotherapy, INCIT, UMR 1302, Nantes Université, Nantes, France", + "ror_ids": [ + "https://ror.org/03gnr7b55", + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Fraunhofer Institute for Applied Information Technology FIT, Sankt Augustin, Germany", + "ror_ids": [ + "https://ror.org/01ak24c12" + ] + }, + { + "affiliation": "Shandong Energy Institute, Qingdao, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05h3vcy91" + ] + }, + { + "affiliation": "School of Pharmacy and Pharmaceutical Sciences, Trinity College, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/02tyrky19" + ] + }, + { + "affiliation": "School of Medical Information and Engineering, Guangdong Pharmaceutical University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/02vg7mz57" + ] + }, + { + "affiliation": "Department of Cardiac Surgery, Medical University of Silesia, Katowice, Poland", + "ror_ids": [ + "https://ror.org/005k7hp45" + ] + }, + { + "affiliation": "Department of Microbiology, Perelman School of Medicine, University of Pennsylvania, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "European Spallation Source ESS, Lund, Sweden", + "ror_ids": [ + "https://ror.org/01wv9cn34" + ] + }, + { + "affiliation": "Department of Clinical Research, Sorlandet Hospital, Kristiansand, Norway", + "ror_ids": [ + "https://ror.org/05yn9cj95" + ] + }, + { + "affiliation": "Pharmaceutical Science, Department of Health Sports and Bioscience, University of East London, London, UK", + "ror_ids": [ + "https://ror.org/057jrqr44" + ] + }, + { + "affiliation": "Ho Chi Minh City University of Technology (HCMUT), Ho Chi Minh City, Vietnam", + "ror_ids": [ + "https://ror.org/04qva2324" + ] + }, + { + "affiliation": "Hamdi Mango Center for Scientific Research, The University of Jordan, Amman, Jordan", + "ror_ids": [ + "https://ror.org/05k89ew48" + ] + }, + { + "affiliation": "Medical Research Center, Affiliated Hospital of North Sichuan Medical College, Nanchong, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01673gn35" + ] + }, + { + "affiliation": "School of Computer Science, University of Galway, Galway, Ireland", + "ror_ids": [ + "https://ror.org/03bea9k73" + ] + }, + { + "affiliation": "Department of Restorative Dentistry, Faculty of Dentistry, Gaziantep University, University Boulevard, Gaziantep, Turkey", + "ror_ids": [ + "https://ror.org/020vvc407" + ] + }, + { + "affiliation": "Imagine Optic, Orsay, France", + "ror_ids": [ + "https://ror.org/05s2h4a13" + ] + }, + { + "affiliation": "International Centre for Theoretical Physics (ICTP), Trieste, Italy", + "ror_ids": [ + "https://ror.org/009gyvm78" + ] + }, + { + "affiliation": "Amity International Business School, Amity University, Noida, U.P., India", + "ror_ids": [ + "https://ror.org/02n9z0v62" + ] + }, + { + "affiliation": "Institute of Molecular and Cellular Regulation, Gunma University, Maebashi, Gunma, Japan", + "ror_ids": [ + "https://ror.org/046fm7598" + ] + }, + { + "affiliation": "College of Resources and Environmental Sciences, National Academy of Agriculture Green Development, Key Laboratory of Plant-Soil Interactions, Ministry of Education, China Agricultural University, Beijing, China", + "ror_ids": [ + "https://ror.org/04v3ywz14" + ] + }, + { + "affiliation": "Department of Home Economics, Government College University Faisalabad, Faisalabad, Pakistan", + "ror_ids": [ + "https://ror.org/051zgra59" + ] + }, + { + "affiliation": "Faculty of Medical Laboratory Science, College of Health Science and Technology, Shanghai Jiao Tong University School of Medicine, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "II Physikalisches Institut, Justus Liebig University Giessen, Giessen, Germany", + "ror_ids": [ + "https://ror.org/033eqas34" + ] + }, + { + "affiliation": "Division of Geriatric Medicine, Department of Medicine, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Alibaba-Zhejiang University Joint Research Institute of Frontier Technologies, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Physics, Westmont College, Santa Barbara, USA", + "ror_ids": [ + "https://ror.org/00xhcz327" + ] + }, + { + "affiliation": "Beijing Institute of Radiation Medicine, Beijing, China", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "School of Biological Science, Seoul National University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Department of Physics, Liaoning University, Shenyang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03xpwj629" + ] + }, + { + "affiliation": "Department of Mathematics and Humanities, Sardar Vallabhbhai National Institute of Technology, Surat, India", + "ror_ids": [ + "https://ror.org/02y394t43" + ] + }, + { + "affiliation": "Graduiertenkolleg Literatur und Öffentlichkeit in differenten Gegenwartskulturen, Friedrich-Alexander-Universität Erlangen-Nürnberg, Nürnberg, Deutschland", + "ror_ids": [ + "https://ror.org/00f7hpc57" + ] + }, + { + "affiliation": "Azienda Ospedaliera Universitaria IRCCS Meyer, Florence, Italy", + "ror_ids": [ + "https://ror.org/01n2xwm51" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Bushehr Branch, Islamic Azad University, Bushehr, Iran", + "ror_ids": [ + "https://ror.org/03hhrzm12" + ] + }, + { + "affiliation": "Capital Normal University, Beijing, China", + "ror_ids": [ + "https://ror.org/005edt527" + ] + }, + { + "affiliation": "Department of Biostatistics and Clinical Research, CHU Rouen, Rouen, France", + "ror_ids": [ + "https://ror.org/04cdk4t75" + ] + }, + { + "affiliation": "Department of Microbiology and Virology, University Hospital of Brescia, Brescia, Italy", + "ror_ids": [ + "https://ror.org/015rhss58" + ] + }, + { + "affiliation": "Key Laboratory of Biomechanics and Mechanobiology, Ministry of Education, Beijing Advanced Innovation Center for Biomedical Engineering, School of Biological Science and Medical Engineering, Beihang University, Beijing, China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Program in Cellular and Molecular Medicine, Boston Children’s Hospital, Harvard Medical School, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52", + "https://ror.org/00dvg7y05" + ] + }, + { + "affiliation": "IRISA, CNRS, Univ Rennes, Rennes, France", + "ror_ids": [ + "https://ror.org/015m7wh34", + "https://ror.org/00myn0z94" + ] + }, + { + "affiliation": "Freie Universität Berlin, Institute of Biology, Berlin, Germany", + "ror_ids": [ + "https://ror.org/046ak2485" + ] + }, + { + "affiliation": "KU Leuven, Department of Biosystems, Division of Animal and Human Health Engineering, Geel, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Institute of Botany, Chinese Academy of Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/05hr3ch11" + ] + }, + { + "affiliation": "Department of Computer, Control and Management Engineering Antonio Ruberti, Sapienza University of Rome, Rome, Italy", + "ror_ids": [ + "https://ror.org/02be6w209" + ] + }, + { + "affiliation": "Tananaev Institute of Chemistry and Technology of Rare Elements and Mineral Raw Materials (separate subdivision), Kola Scientific Center (Federal Research Center), Russian Academy of Sciences, Akademgorodok, Apatity, Murmansk oblast, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25", + "https://ror.org/056wf8856" + ] + }, + { + "affiliation": "Amity University, Noida, Uttar Pradesh, India", + "ror_ids": [ + "https://ror.org/02n9z0v62" + ] + }, + { + "affiliation": "GIBI230 Research Group on Biomedical Imaging, Instituto de Investigación Sanitaria La Fe, Valencia, Spain", + "ror_ids": [ + "https://ror.org/05n7v5997" + ] + }, + { + "affiliation": "Expertise Centre for Digital Media, Hasselt University, Hasselt, Belgium", + "ror_ids": [ + "https://ror.org/04nbhqj75" + ] + }, + { + "affiliation": "University of Alberta, Edmonton, Canada", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "School of Psychology, Speech and Hearing, University of Canterbury, Christchurch, New Zealand", + "ror_ids": [ + "https://ror.org/03y7q9t39" + ] + }, + { + "affiliation": "Endocrinology and Nutrition Department, Hospital Universitari Parc Taulí, Sabadell, Spain", + "ror_ids": [ + "https://ror.org/02pg81z63" + ] + }, + { + "affiliation": "Research group on psychosocial risks, organization of work and health, Universitat Autònoma de Barcelona, Cerdanyola del Vallès, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "School of Business, State University of New York at Oswego, Oswego, NY, USA", + "ror_ids": [ + "https://ror.org/01597g643" + ] + }, + { + "affiliation": "Department of Statistics and Data Science, Faculty of Statistical Studies, Complutense University of Madrid, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Faculty of Process and Environmental Engineering, Lodz University of Technology, Lodz, Poland", + "ror_ids": [ + "https://ror.org/00s8fpf52" + ] + }, + { + "affiliation": "B. Verkin Institute for Low Temperature Physics and Engineering of the National Academy of Sciences of Ukraine, Kharkiv, Ukraine", + "ror_ids": [ + "https://ror.org/02nk5bh05", + "https://ror.org/00je4t102" + ] + }, + { + "affiliation": "Computational and Systems Biology, Massachusetts Institute of Technology, Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Paton Electric Welding Institute, NationalAcademyofSciences, Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/01gxrtw55" + ] + }, + { + "affiliation": "Department of Neurology, Amsterdam University Medical Centers Location Vrije Universiteit, Amsterdam, Netherlands", + "ror_ids": [ + "https://ror.org/05grdyy37" + ] + }, + { + "affiliation": "Department of Women’s and Children’s Health, Uppsala Universitet, Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/048a87296" + ] + }, + { + "affiliation": "Department of Population and Public Health Sciences, Keck School of Medicine of USC, University of Southern California, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "School of Public Policy, University of California Riverside, Riverside, United States", + "ror_ids": [ + "https://ror.org/03nawhv43" + ] + }, + { + "affiliation": "Department of Medical Oncology, Jawaharlal Institute of Postgraduate Medical Education & Research (JIPMER), Puducherry, India", + "ror_ids": [ + "https://ror.org/02fq2px14" + ] + }, + { + "affiliation": "Penza State University, Penza, Russian Federation", + "ror_ids": [ + "https://ror.org/056r5vk88" + ] + }, + { + "affiliation": "Laboratory of Agro-Food, Biotechnologies and Valorization of Plant Bioresources, Faculty of Science Semlalia, Department of Biology, Cadi Ayyad University, Marrakech, Morocco", + "ror_ids": [ + "https://ror.org/04xf6nm78" + ] + }, + { + "affiliation": "Department of Physics, Faculty of Science, Chulalongkorn University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Department of Physics, Shaoxing University, Shaoxing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0435tej63" + ] + }, + { + "affiliation": "Department of Land Resources and Environmental Sciences, Montana State University, Bozeman, MT, USA", + "ror_ids": [ + "https://ror.org/02w0trx84" + ] + }, + { + "affiliation": "Department of Mathematical Sciences, Durham University, Durham, United Kingdom", + "ror_ids": [ + "https://ror.org/01v29qb04" + ] + }, + { + "affiliation": "Graduate School of Natural and Applied Sciences, Main Campus, Gazi University, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/054xkpr46" + ] + }, + { + "affiliation": "Department of Microbiology and Immunology, Yong Loo Lin School of Medicine, National University of Singapore, Singapore, Republic of Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Ruđer Bošković Institute, Zagreb, Croatia", + "ror_ids": [ + "https://ror.org/02mw21745" + ] + }, + { + "affiliation": "Section of Gastroenterology, Dartmouth-Hitchcock Medical Cancer, Lebanon, NH, USA", + "ror_ids": [ + "https://ror.org/00d1dhh09" + ] + }, + { + "affiliation": "Department of Informatics, Bioengineering, Robotics and Systems Engineering, University of Genova, Genova, Genova, Italy", + "ror_ids": [ + "https://ror.org/0107c5v14" + ] + }, + { + "affiliation": "Materials and Structural Engineering Department, Nanjing Hydraulic Research Institute, Nanjing, Jiangsu, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02403qw73" + ] + }, + { + "affiliation": "College of Computer Science and Engineering, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Klinik für Anästhesiologie und Intensivmedizin, Universitätsklinikum Jena, Jena, Deutschland", + "ror_ids": [ + "https://ror.org/035rzkx15" + ] + }, + { + "affiliation": "Bioethics Program, University Health Network, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/042xt5161" + ] + }, + { + "affiliation": "Department of Neurosurgery, Emory University School of Medicine, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Department of Basic Sciences, Middle East University, Amman, Jordan", + "ror_ids": [ + "https://ror.org/059bgad73" + ] + }, + { + "affiliation": "Institute of Agricultural Sciences, Federal Rural University of Amazonia - UFRA, Belém, PR, Brazil", + "ror_ids": [ + "https://ror.org/02j71c790" + ] + }, + { + "affiliation": "Center of Agrobiotechnology and Bioengineering, Research Unit Labelled CNRST (Centre AgroBiotech-URL-CNRST-05), Physiology of Abiotic Stresses Team, Cadi Ayyad University, Marrakesh, Morocco", + "ror_ids": [ + "https://ror.org/04xf6nm78" + ] + }, + { + "affiliation": "Department of Surgery, Division of Radiation Oncology, University of British Columbia, Faculty of Medicine, Vancouver, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Traditional Chinese Medicine, Guangzhou First People’s Hospital, School of Medicine, South China University of Technology, Guangzhou, Guangdong, China", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Department of Otorhinolaryngology and Head and Neck Surgery, Leiden University Medical Centre, Leiden, The Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17" + ] + }, + { + "affiliation": "Professor of Neurology, Center for Mind/Brain Studies, University of Trento, Trento, Italy", + "ror_ids": [ + "https://ror.org/05trd4x28" + ] + }, + { + "affiliation": "State Key Laboratory of Information Engineering in Surveying, Wuhan University, Wuhan, Hubei, China", + "ror_ids": [ + "https://ror.org/033vjfk17", + "https://ror.org/02bpap860" + ] + }, + { + "affiliation": "Institute of Oriental Studies, Russian Academy of Sciences, Moscow, Russia", + "ror_ids": [ + "https://ror.org/056635736", + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Department of Dermatology, Rasool Akram Medical Complex Clinical Research Development Center (RCRDC), School of Medicine, Iran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/03w04rv71" + ] + }, + { + "affiliation": "Graduate Program in System Health Science and Engineering, Ewha Womans University, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/053fp5c05" + ] + }, + { + "affiliation": "Economics Group, Indian Institute of Management Calcutta, Kolkata, India", + "ror_ids": [ + "https://ror.org/02zhewk16" + ] + }, + { + "affiliation": "Faculty of Medicine, University of Alberta, Edmonton, Canada", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Department of Microbiology, Faculty of Science, Chulalongkorn University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Laboratoire des Méthodes de Conception des Systèmes (LMCS), Ecole nationale Supérieure d’Informatique, Oued Smar, Algeria", + "ror_ids": [ + "https://ror.org/04dj1dn66" + ] + }, + { + "affiliation": "Department of Chemistry and Biotechnology, Tallinn University of Technology, Tallinn, Estonia", + "ror_ids": [ + "https://ror.org/0443cwa12" + ] + }, + { + "affiliation": "Cancer Computational Biology Center, Erasmus MC Cancer Institute, Erasmus University Medical Center, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/03r4m3349" + ] + }, + { + "affiliation": "Department of Stem Cell and Regeneration Medicine, Translational Medicine Research Center, Naval Medical University, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04tavpn47" + ] + }, + { + "affiliation": "Department of Pharmacy, Tangdu Hospital, Fourth Military Medical University, Xi’an, Shaanxi Province, China", + "ror_ids": [ + "https://ror.org/00ms48f15" + ] + }, + { + "affiliation": "Center of Nanomaterials for Renewable Energy, State Key Laboratory of Electrical Insulation and Power Equipment, School of Electrical Engineering, Xi’an Jiaotong University, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/017zhmm22" + ] + }, + { + "affiliation": "Max-Planck-Institut für Entwicklungsbiologie, Tübingen, Deutschland", + "ror_ids": [ + "https://ror.org/022jc0g24" + ] + }, + { + "affiliation": "Bielefeld University, Bielefeld, Germany", + "ror_ids": [ + "https://ror.org/02hpadn98" + ] + }, + { + "affiliation": "Department of Gastroenterology and Hepatology, School of Medicine, Koç University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/00jzwgz36" + ] + }, + { + "affiliation": "Department of Epidemiology, Center for Public Health, Medical University of Vienna, Vienna, Austria", + "ror_ids": [ + "https://ror.org/05n3x4p02" + ] + }, + { + "affiliation": "Geestelijk verzorger, Elisabeth-TweeSteden Ziekenhuis, Tilburg, Netherlands", + "ror_ids": [ + "https://ror.org/04gpfvy81" + ] + }, + { + "affiliation": "Guangzhou University of Chinese Medicine, Guangzhou, P. R. China", + "ror_ids": [ + "https://ror.org/03qb7bg95" + ] + }, + { + "affiliation": "School of Aeronautics, Northwestern Polytechnical University, Xi’an, Shanxi, China", + "ror_ids": [ + "https://ror.org/01y0j0j86" + ] + }, + { + "affiliation": "St Vincent’s Clinical School, University of NSW, Sydney, New South Wales, Australia", + "ror_ids": [ + "https://ror.org/03r8z3t63" + ] + }, + { + "affiliation": "Social and Education Sciences Department, School of Arts and Sciences, Lebanese American University, Jbeil, Lebanon", + "ror_ids": [ + "https://ror.org/00hqkan37" + ] + }, + { + "affiliation": "National Pedagogical Dragomanov University, Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/00batt813" + ] + }, + { + "affiliation": "University of South Africa, Department of Physics, Pretoria, South Africa", + "ror_ids": [ + "https://ror.org/048cwvf49" + ] + }, + { + "affiliation": "Division of Gastroenterology and Hepatology, Department of Medicine, Taipei Veterans General Hospital, Taipei, Taiwan, Republic of China", + "ror_ids": [ + "https://ror.org/03ymy8z76" + ] + }, + { + "affiliation": "School of English for International Business, Guangdong University of Foreign Studies, Guangzhou, China", + "ror_ids": [ + "https://ror.org/00fhc9y79" + ] + }, + { + "affiliation": "Department of Immunology and Infection, John Curtin School of Medical Research, Australian National University, Canberra, ACT, Australia", + "ror_ids": [ + "https://ror.org/019wvm592" + ] + }, + { + "affiliation": "Stony Brook Institute, Anhui University, Hefei, China", + "ror_ids": [ + "https://ror.org/05th6yx34" + ] + }, + { + "affiliation": "Expanded Programme of Immunization (EPI), Ministry of Health, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/04f90ax67" + ] + }, + { + "affiliation": "Department of Chemistry, Federal University of Paraná, Curitiba, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "Process Research Center of Tecnológico Comfenalco (CIPTEC), Industrial Engineering Program., Fundación Universitaria Tecnológico Comfenalco, Cartagena, Colombia", + "ror_ids": [ + "https://ror.org/04z1myv13" + ] + }, + { + "affiliation": "Department of Biosciences and Biomedical Engineering, Indian Institute of Technology Indore, Indore, Madhya Pradesh, India", + "ror_ids": [ + "https://ror.org/01hhf7w52" + ] + }, + { + "affiliation": "College of Computer and Information Engineering, Henan Normal University, Xinxiang, China", + "ror_ids": [ + "https://ror.org/00s13br28" + ] + }, + { + "affiliation": "Biomedical Science and Technologies Unit, IRCCS Istituto Ortopedico Rizzoli, Bologna, Italy", + "ror_ids": [ + "https://ror.org/02ycyys66" + ] + }, + { + "affiliation": "University of Rennes, Rennes, France", + "ror_ids": [ + "https://ror.org/015m7wh34" + ] + }, + { + "affiliation": "Department of Public Administration, Universitas Padjadjaran, Bandung, Indonesia", + "ror_ids": [ + "https://ror.org/00xqf8t64" + ] + }, + { + "affiliation": "School of Mathematics and Statistics, Lanzhou University, Lanzhou, Gansu, China", + "ror_ids": [ + "https://ror.org/01mkqqe32" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Indian Institute of Technology, Kanpur, India", + "ror_ids": [ + "https://ror.org/05pjsgx75" + ] + }, + { + "affiliation": "Anatomy Department, College of Medicine, Umm Al-Qura University, Makkah, Saudi Arabia", + "ror_ids": [ + "https://ror.org/01xjqrm90" + ] + }, + { + "affiliation": "Department of Surgery, Vascular Division, Icahn School of Medicine at Mount Sinai, New York, NY, USA", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "Department of General Surgery and Minimal Access Surgical Sciences, Sir H.N. Reliance Foundation Hospital, Mumbai, India", + "ror_ids": [ + "https://ror.org/014ezkx63" + ] + }, + { + "affiliation": "Department of Geodesy and Geographical Information Sciences, Institute of Earth and Space Sciences, Eskişehir Technical University, Eskişehir, Türkiye", + "ror_ids": [ + "https://ror.org/00gcgqv39" + ] + }, + { + "affiliation": "Yellow River Laboratory, Zhengzhou University, Zhengzhou, Henan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Department of Information and Industrial Management, Accounting and Management Faculty, Shahid Beheshti University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/0091vmj44" + ] + }, + { + "affiliation": "Department of Geography Environmental Sustainability and Resilience Building, Midlands State University, Gweru, Zimbabwe", + "ror_ids": [ + "https://ror.org/02gv1gw80" + ] + }, + { + "affiliation": "National Key Laboratory of Crop Genetic Improvement, Huazhong Agricultural University, Wuhan, China", + "ror_ids": [ + "https://ror.org/023b72294" + ] + }, + { + "affiliation": "Department of General Surgery, Gusu School, The Affiliated Suzhou Hospital of Nanjing Medical University, Suzhou Municipal Hospital, Nanjing Medical University, Suzhou, China", + "ror_ids": [ + "https://ror.org/02cdyrc89", + "https://ror.org/059gcgy73" + ] + }, + { + "affiliation": "School of Material Science, Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Zhejiang Institute of Tianjin University, Ningbo, Zhejiang, China", + "ror_ids": [ + "https://ror.org/012tb2g32" + ] + }, + { + "affiliation": "Departamento de Patologia Veterinária, Faculdade de Ciências Agrárias e Veterinárias, Universidade Estadual Paulista, Jaboticabal, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Nuclear Medicine and Diagnostic Imaging, International Atomic Energy Agency, Vienna, Austria", + "ror_ids": [ + "https://ror.org/02zt1gg83" + ] + }, + { + "affiliation": "Department of Biology, The Gandhigram Rural Institute (Deemed to be University), Gandhigram, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/01abtgj51" + ] + }, + { + "affiliation": "Department of Neurosciences, Rehabilitation, Ophthalmology, Genetics, Maternal and Child Health (DINOGMI), University of Genoa, IRCCS Istituto Giannina Gaslini, Genoa, Italy", + "ror_ids": [ + "https://ror.org/0107c5v14", + "https://ror.org/0424g0k78" + ] + }, + { + "affiliation": "DMPK, Protagonist Therapeutics, Inc, Newark, CA, USA", + "ror_ids": [ + "https://ror.org/00bp7kt89" + ] + }, + { + "affiliation": "Suzhou Hospital of Anhui Medical University, Suzhou Municipal Hospital of Anhui Province, Suzhou, China", + "ror_ids": [ + "https://ror.org/03xb04968", + "https://ror.org/02cdyrc89" + ] + }, + { + "affiliation": "Department of Electronic Engineering, Faculty of Engineering, The Chinese University of Hong Kong, Hong Kong, China", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Department of General Practice, North China University of Science and Technology Affiliated Hospital, Tangshan, Hebei, China", + "ror_ids": [ + "https://ror.org/015kdfj59" + ] + }, + { + "affiliation": "Monash Medical Centre, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/036s9kg65" + ] + }, + { + "affiliation": "Division of Emergency Radiology, Department of Radiology and Imaging Sciences, Emory University School of Medicine, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Institute for Materials Research (IMO-IMOMEC), Hasselt University, Diepenbeek, Belgium", + "ror_ids": [ + "https://ror.org/04nbhqj75" + ] + }, + { + "affiliation": "Radboud University Nijmegen, Nijmegen, The Netherlands", + "ror_ids": [ + "https://ror.org/016xsfp80" + ] + }, + { + "affiliation": "Switch Laboratory, VIB-KU Leuven Center for Brain & Disease Research, Leuven, Belgium", + "ror_ids": [ + "https://ror.org/045c7t348" + ] + }, + { + "affiliation": "Regional Water and Environmental Sanitation Centre, Civil Engineering Department, Kwame Nkrumah University of Science and Technology, Kumasi, Ghana", + "ror_ids": [ + "https://ror.org/00cb23x68" + ] + }, + { + "affiliation": "Department of Gastroenterology, The Second Affiliated Hospital of Chongqing Medical University, Chongqing, China", + "ror_ids": [ + "https://ror.org/00r67fz39" + ] + }, + { + "affiliation": "Department of Clinical Genetics, Central Hospital, Aichi Developmental Disability Center, Aichi, Japan", + "ror_ids": [ + "https://ror.org/05w4mbn40" + ] + }, + { + "affiliation": "Key Laboratory of Computing and Stochastic Mathematics (Ministry of Education), College of Mathematics and Statistics, Hunan Normal University, Changsha, China", + "ror_ids": [ + "https://ror.org/053w1zy07" + ] + }, + { + "affiliation": "Population Studies Center, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Department of Anesthesiology and Perioperative Medicine, Mayo Clinic, Rochester, MN, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "School of Mechanical Engineering and Automation, Harbin Institute of Technology, Shenzhen, China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Leibniz Institute of Photonic Technology e.V., Jena, Germany", + "ror_ids": [ + "https://ror.org/02se0t636" + ] + }, + { + "affiliation": "Department of Neurosurgery, Kyung Hee University Hospital, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/01vbmek33" + ] + }, + { + "affiliation": "Doctor of Business Administration Program, School of Business, University of Maryland Global Campus, Largo, MD, USA", + "ror_ids": [ + "https://ror.org/01w1pbe36" + ] + }, + { + "affiliation": "Higher Education Institute of Rab-Rashid, Tabriz, Iran", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Economics, The University of Tokyo, Bunkyo-Ku, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Instituto de Investigaciones sobre los Recursos Naturales, Universidad Michoacana de San Nicolás de Hidalgo, Morelia, Michoacán, México", + "ror_ids": [ + "https://ror.org/00z0kq074" + ] + }, + { + "affiliation": "Neuroscience Center of Excellence, School of Medicine, Louisiana State University Health New Orleans, New Orleans, LA, USA", + "ror_ids": [ + "https://ror.org/01qv8fp92" + ] + }, + { + "affiliation": "Department of Physical Medicine and Rehabilitation, Faculty of Medicine, Cukurova University, Adana, Turkey", + "ror_ids": [ + "https://ror.org/05wxkj555" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Michigan State University College of Engineering, East Lansing, MI, USA", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "Zhejiang Chinese Medical University, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/04epb4p87" + ] + }, + { + "affiliation": "Department of Acupuncture, Dongzhimen Hospital Beijing University of Chinese Medicine, Beijing, China", + "ror_ids": [ + "https://ror.org/05damtm70" + ] + }, + { + "affiliation": "Medical Computer Vision and Robotics Lab, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Jiangsu Cancer Hospital & Jiangsu Institute of Cancer Control &, Nanjing Medical University Cancer Hospital, Nanjing, Jiangsu, China", + "ror_ids": [ + "https://ror.org/059gcgy73", + "https://ror.org/03108sf43" + ] + }, + { + "affiliation": "Reproductive and Genetic Hospital of CITIC-Xiangya, Changsha, China", + "ror_ids": [ + "https://ror.org/01ar3e651" + ] + }, + { + "affiliation": "Faculty of Chemistry and Chemical Engineering, Malek Ashtar University of Technology, Tehran, Iran", + "ror_ids": [ + "https://ror.org/0043ezw98" + ] + }, + { + "affiliation": "Nonlinear Analysis and Applied Mathematics (NAAM)-Research Group, Department of Mathematics, Faculty of Science, King Abdulaziz University, Jeddah, Saudi Arabia", + "ror_ids": [ + "https://ror.org/02ma4wv74" + ] + }, + { + "affiliation": "Faculty of Medicine, Nicolae Testemițanu State University of Medicine and Pharmacy, Chișinău, Moldova", + "ror_ids": [ + "https://ror.org/03xww6m08" + ] + }, + { + "affiliation": "Youz, Parnassia Psychiatric Institute, den Hague, The Netherlands", + "ror_ids": [ + "https://ror.org/002wh3v03" + ] + }, + { + "affiliation": "Clinical Cooperation Unit Nuclear Medicine, German Cancer Research Center, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/04cdgtt98" + ] + }, + { + "affiliation": "Scientific Officer RP&AD, Bhabha Atomic Research Centre, Mumbai, India", + "ror_ids": [ + "https://ror.org/05w6wfp17" + ] + }, + { + "affiliation": "Bioinformatics Program, Institute of Biological Sciences, Faculty of Science, Universiti Malaya, Kuala Lumpur, Malaysia", + "ror_ids": [ + "https://ror.org/00rzspn62" + ] + }, + { + "affiliation": "Department of Languages, Literature and Communication, Utrecht University, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "School of Artificial Intelligence and Automation, Huazhong University of Science and Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Corporate R&D Institute, Samsung Electro-Mechanics, Suwon, Korea", + "ror_ids": [ + "https://ror.org/04w3jy968" + ] + }, + { + "affiliation": "Centre for Machining and Material Testing, Department of Mechanical Engineering, KPR Institute of Engineering and Technology, Coimbatore, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/02q9f3a53" + ] + }, + { + "affiliation": "Department of Ophthalmology and Visual Sciences, University of Michigan Kellogg Eye Center, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Key Lab of Robotics, Shenyang Institute of Automation, Chinese Academy of Sciences, Shenyang, Liaoning, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/00ft6nj33" + ] + }, + { + "affiliation": "School of Population Health, University of Auckland, Auckland, New Zealand", + "ror_ids": [ + "https://ror.org/03b94tp07" + ] + }, + { + "affiliation": "Faculty of Mechanical Engineering, Institute of General Mechanics, RWTH Aachen University, Aachen, Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "Institute of Plasma Physics, Hefei Institutes of Physical Science, Chinese Academy of Sciences, Hefei, People’s Republic of China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/046n57345" + ] + }, + { + "affiliation": "Department of Biochemistry, Weill Cornell Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02r109517" + ] + }, + { + "affiliation": "Department of Physical Medicine and Rehabilitation, University of Colorado Anschutz Medical Campus, Aurora, CO, USA", + "ror_ids": [ + "https://ror.org/03wmf1y16" + ] + }, + { + "affiliation": "Institute of Pure and Applied Mathematics, UCLA, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "School of Materials and Energy, Yunnan University, Kunming, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0040axw97" + ] + }, + { + "affiliation": "Department of Pediatrics, National Cheng-Kung University Hospital, Tainan, Taiwan", + "ror_ids": [ + "https://ror.org/04zx3rq17" + ] + }, + { + "affiliation": "Department of Molecular and Human Genetics, Baylor College of Medicine, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/02pttbw34" + ] + }, + { + "affiliation": "Center for Translational Neuroscience, Isfahan University of Medical Sciences, Isfahan, Iran", + "ror_ids": [ + "https://ror.org/04waqzz56" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Dicle University, Diyarbakir, Turkey", + "ror_ids": [ + "https://ror.org/0257dtg16" + ] + }, + { + "affiliation": "Department of Internal Medicine, National Taiwan University Hospital Bei-Hu Branch, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/03nteze27" + ] + }, + { + "affiliation": "Tecnológico de Monterrey, Monterrey, Mexico", + "ror_ids": [ + "https://ror.org/03ayjn504" + ] + }, + { + "affiliation": "Bioinformation & DDBJ Center, National Institute of Genetics (NIG), Mishima, Japan", + "ror_ids": [ + "https://ror.org/02xg1m795" + ] + }, + { + "affiliation": "Beijing National Research Center for Information Science and Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Beijing University of Aeronautics and Astronautics, Beijing, China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Faculty of Agro-Industry, Chiang Mai University, Chiang Mai, Thailand", + "ror_ids": [ + "https://ror.org/05m2fqn25" + ] + }, + { + "affiliation": "School of Civil and Environmental Engineering, College of Engineering, Architecture and Technology, Oklahoma State University, Stillwater, OK, USA", + "ror_ids": [ + "https://ror.org/01g9vbr38" + ] + }, + { + "affiliation": "Pathology Unit, Department of Medicine and Technological Innovation, University of Insubria, Varese, Italy", + "ror_ids": [ + "https://ror.org/00s409261" + ] + }, + { + "affiliation": "Department of Conservative Dentistry, Faculty of Dentistry, Thamar University, Thamar, Yemen", + "ror_ids": [ + "https://ror.org/04tsbkh63" + ] + }, + { + "affiliation": "Instituto de Inmunología, Facultad de Medicina, Universidad Austral de Chile, Valdivia, Chile", + "ror_ids": [ + "https://ror.org/029ycp228" + ] + }, + { + "affiliation": "Personalized Genomic Medicine Research Center, Korea Research Institute of Bioscience and Biotechnology, Daejeon, Korea", + "ror_ids": [ + "https://ror.org/03ep23f07" + ] + }, + { + "affiliation": "Institute of Metallurgy, Ural Branch, Russian Academy of Sciences, Yekaterinburg, Russia", + "ror_ids": [ + "https://ror.org/04rb38388", + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Government of Canada, Statistics Canada, Ottawa, Canada", + "ror_ids": [ + "https://ror.org/05k71ja87", + "https://ror.org/010q4q527" + ] + }, + { + "affiliation": "Department of Internal Medicine, Skane University Hospital, Lund, Sweden", + "ror_ids": [ + "https://ror.org/02z31g829" + ] + }, + { + "affiliation": "GCAP-CASPER, Physics Department, Baylor University, Waco, TX, USA", + "ror_ids": [ + "https://ror.org/005781934" + ] + }, + { + "affiliation": "The Surgical Planning Laboratory, Department of Radiology, Brigham and Women’s Hospital, Harvard Medical School, Boston, USA", + "ror_ids": [ + "https://ror.org/03vek6s52", + "https://ror.org/04b6nzv94" + ] + }, + { + "affiliation": "Center for Spinal Surgery and Neurotraumatology, Berufsgenossenschaftliche Unfallklinik Frankfurt am Main, Frankfurt, Germany", + "ror_ids": [ + "https://ror.org/04kt7f841" + ] + }, + { + "affiliation": "School of Social & Cultural Studies, Victoria University of Wellington, Wellington, New Zealand", + "ror_ids": [ + "https://ror.org/0040r6f76" + ] + }, + { + "affiliation": "Faculty of Fine Arts, Department of Gastronomy and Culinary Arts, Munzur University, Tunceli, Turkey", + "ror_ids": [ + "https://ror.org/05v0p1f11" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Landmark University, Omu-Aran, Nigeria", + "ror_ids": [ + "https://ror.org/04gw4zv66" + ] + }, + { + "affiliation": "Laboratorio de Ingeniería Genética, Departamento de Biotecnología, Facultad de Ciencias Químicas, Universidad Autónoma de Coahuila, Saltillo, Coah, Mexico", + "ror_ids": [ + "https://ror.org/00dpnh189" + ] + }, + { + "affiliation": "Department of Biology, College of Science, University of Sulaimani, Sulaimani, Kurdistan Region, Iraq", + "ror_ids": [ + "https://ror.org/00saanr69" + ] + }, + { + "affiliation": "Department of Mathematics, Nalanda College, Patliputra University, Biharsharif, Patna, India", + "ror_ids": [ + "https://ror.org/04rjeh836" + ] + }, + { + "affiliation": "Department of Oncology, Danzhou People’s Hospital, Danzhou City, Hainan, Province, China", + "ror_ids": [ + "https://ror.org/00r398124" + ] + }, + { + "affiliation": "Escuela Nacional de Estudios Superiores (ENES) Unidad Morelia, Universidad Nacional Autónoma de México (UNAM), Morelia, Michoacán, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "College of Robotics, Beijing Union University, Beijing, China", + "ror_ids": [ + "https://ror.org/01hg31662" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Arts and Sciences, University of Kırklareli, Kırklareli, Turkey", + "ror_ids": [ + "https://ror.org/00jb0e673" + ] + }, + { + "affiliation": "Strength and Conditioning Center, Chengdu Sport University, Chengdu, China", + "ror_ids": [ + "https://ror.org/05580ht21" + ] + }, + { + "affiliation": "State Key Laboratory of Water Resource Protection and Utilization in Coal Mining, China Energy Investment Group, Beijing, China", + "ror_ids": [ + "https://ror.org/03x0rzg54" + ] + }, + { + "affiliation": "BJ Medical College, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/0408b4j80" + ] + }, + { + "affiliation": "Shihezi University, Shihezi City, Xinjiang Uygur Autonomous Region, China", + "ror_ids": [ + "https://ror.org/04x0kvm78" + ] + }, + { + "affiliation": "Medizinische Klinik, AGAPLESION Markus-Krankenhaus, Frankfurt am Main, Deutschland", + "ror_ids": [ + "https://ror.org/04hd04g86" + ] + }, + { + "affiliation": "Department of Pathology, Osaka City General Hospital, Osaka, Japan", + "ror_ids": [ + "https://ror.org/00v053551" + ] + }, + { + "affiliation": "Engineering Mathematics and Physics Department, Faculty of Engineering, Fayoum University, Fayoum, Egypt", + "ror_ids": [ + "https://ror.org/023gzwx10" + ] + }, + { + "affiliation": "Department of Industrial Electronics and Control Engineering, Faculty of Electronic Engineering, Menoufia University, Menouf, Egypt", + "ror_ids": [ + "https://ror.org/05sjrb944" + ] + }, + { + "affiliation": "Institute of Sport and Motion Science, University of Stuttgart, Stuttgart, Germany", + "ror_ids": [ + "https://ror.org/04vnq7t77" + ] + }, + { + "affiliation": "Faculty of Computer and Software, Huaiyin Institute of Technology, Huaian, Jiangsu, China", + "ror_ids": [ + "https://ror.org/0555ezg60" + ] + }, + { + "affiliation": "Committee on Immunology, University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of Pathology, the Affiliated Suqian Hospital of Xuzhou Medical University (Suqian Hospital of Nanjing Drum Tower Hospital Group), Suqian, China", + "ror_ids": [ + "https://ror.org/026axqv54" + ] + }, + { + "affiliation": "Huaqiao University, Huaqiao, China", + "ror_ids": [ + "https://ror.org/03frdh605" + ] + }, + { + "affiliation": "Department of Anesthesiology, Creighton University School of Medicine, Omaha, NE, USA", + "ror_ids": [ + "https://ror.org/05wf30g94" + ] + }, + { + "affiliation": "Department of Electronic Engineering, Chinese University of Hong Kong, Shatin, Hong Kong", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Department of Industrial Engineering, Central Tehran Branch, Islamic Azad University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01kzn7k21" + ] + }, + { + "affiliation": "Department of Mathematics, Texas A&M University-Kingsville, Kingsville, TX, USA", + "ror_ids": [ + "https://ror.org/05abs3w97" + ] + }, + { + "affiliation": "Graduate Program in Mechanical Engineering, Universidade Federal de Minas Gerais, Belo Horizonte, MG, Brazil", + "ror_ids": [ + "https://ror.org/0176yjw32" + ] + }, + { + "affiliation": "School of Physics Science and Engineering, Tongji University, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "Department of Physical and Biological Sciences, The College of Saint Rose, Albany, NY, USA", + "ror_ids": [ + "https://ror.org/00nv9r617" + ] + }, + { + "affiliation": "Department of Pathology, St. Olavs Hospital, Trondheim University Hospital, Trondheim, Norway", + "ror_ids": [ + "https://ror.org/01a4hbq44" + ] + }, + { + "affiliation": "Department of General Psychiatry, Taipei City Psychiatric Center, Taipei City Hospital, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/047n4ns40", + "https://ror.org/02gzfb532" + ] + }, + { + "affiliation": "Lombardi Comprehensive Cancer Center, Georgetown University, Washington, D.C., USA", + "ror_ids": [ + "https://ror.org/05vzafd60" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Birla Institute of Technology & Science-Pilani, Hyderabad, Telangana, India", + "ror_ids": [ + "https://ror.org/001p3jz28" + ] + }, + { + "affiliation": "LOEWE Centre for Translational Biodiversity Genomics, Frankfurt, Germany", + "ror_ids": [ + "https://ror.org/0396gab88" + ] + }, + { + "affiliation": "Department of Health Management and Policy, School of Health, Georgetown University, Washington DC, USA", + "ror_ids": [ + "https://ror.org/05vzafd60" + ] + }, + { + "affiliation": "CREST, Japan Science and Technology Agency, Kawaguchi, Japan", + "ror_ids": [ + "https://ror.org/00097mb19" + ] + }, + { + "affiliation": "College of Physical Education and Dance, Federal University of Goias, Goiania, Brazil", + "ror_ids": [ + "https://ror.org/0039d5757" + ] + }, + { + "affiliation": "Lero — The Irish Software Research Centre, University of Limerick, Limerick, Ireland", + "ror_ids": [ + "https://ror.org/00a0n9e72" + ] + }, + { + "affiliation": "Department of Biostatistics and Center for Statistical Genetics, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "ICGM, Univ Montpellier, CNRS, ENSCM, Montpellier, France", + "ror_ids": [ + "https://ror.org/051escj72" + ] + }, + { + "affiliation": "Department of Mathematics, The Technion – Israel Institute of Technology, Haifa, Israel", + "ror_ids": [ + "https://ror.org/03qryx823" + ] + }, + { + "affiliation": "Department of Infrastructure Engineering & Melbourne Climate Futures Academy, University of Melbourne, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Instituto de Investigación en Informática de Albacete (I3A), Universidad de Castilla-La Mancha, Albacete, Spain", + "ror_ids": [ + "https://ror.org/05r78ng12" + ] + }, + { + "affiliation": "School of Science and Engineering, São Paulo State University, Tupã, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Key Laboratory of Advanced Manufacturing and Intelligent Technology of Ministry of Education, School of Mechanical Power Engineering, Harbin University of Science and Technology, Harbin, China", + "ror_ids": [ + "https://ror.org/04e6y1282" + ] + }, + { + "affiliation": "Department of Clinical Sciences, Danderyd University Hospital, Karolinska Institute, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/056d84691" + ] + }, + { + "affiliation": "Department of Cardiology, Carl-Thiem-Klinikum Cottbus, Cottbus, Germany", + "ror_ids": [ + "https://ror.org/044fhy270" + ] + }, + { + "affiliation": "School of Architecture, Xi’an University of Architecture and Technology, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/04v2j2k71" + ] + }, + { + "affiliation": "Department of Invertebrate Evolution, Institute of Zoology and Biomedical Research, Faculty of Biology, Jagiellonian University, Kraków, Poland", + "ror_ids": [ + "https://ror.org/03bqmcz70" + ] + }, + { + "affiliation": "Department of Psychiatry, University of Melbourne, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Department of Oral and Maxillofacial Clinical Science, Faculty of Dentistry, Universiti Malaya, Kuala Lumpur, Malaysia", + "ror_ids": [ + "https://ror.org/00rzspn62" + ] + }, + { + "affiliation": "Rio de Janeiro State University, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/0198v2949" + ] + }, + { + "affiliation": "Department of Public health, Pontificia Universidad Católica de Chile, Santiago, Chile", + "ror_ids": [ + "https://ror.org/04teye511" + ] + }, + { + "affiliation": "Department of Plastic Surgery, Hospital Italiano de Buenos Aires, University of Buenos Aires School of Medicine (UBA) and Hospital Italiano de Buenos Aires University Institute (IUHIBA), Buenos Aires, Argentina", + "ror_ids": [ + "https://ror.org/00bq4rw46", + "https://ror.org/0081fs513" + ] + }, + { + "affiliation": "Department of Medicinal Chemistry, Faculty of Pharmacy, Minia University, Minia, Egypt", + "ror_ids": [ + "https://ror.org/02hcv4z63" + ] + }, + { + "affiliation": "Labcom - Comunicação e Artes, Universidade da Beira Interior, Covilhã, Portugal", + "ror_ids": [ + "https://ror.org/03nf36p02" + ] + }, + { + "affiliation": "Behavioral Science for Disease Prevention and Health Care, Technical University of Munich, Munich, Germany", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Department of Clinical Laboratory, Women’s Hospital, School of Medicine Zhejiang University, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/042t7yh44", + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "School of Management, Harbin Institute of Technology, Harbin, China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Institute of Physics, Bhubaneswar, India", + "ror_ids": [ + "https://ror.org/01741jv66" + ] + }, + { + "affiliation": "Institute of Applied Mathematics and Mechanics, Donetsk, Russia", + "ror_ids": [ + "https://ror.org/029fhmb28" + ] + }, + { + "affiliation": "Sustainability Research Cluster, Universitas Esa Unggul, Jakarta, Indonesia", + "ror_ids": [ + "https://ror.org/00cwwxh37" + ] + }, + { + "affiliation": "Department Biological, Geological and Environmental Sciences, University of Catania, Catania, Italy", + "ror_ids": [ + "https://ror.org/03a64bh57" + ] + }, + { + "affiliation": "Department of Ecology, College of Natural Resources and Environment, South China Agricultural University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/05v9jqt67" + ] + }, + { + "affiliation": "Department of Chemistry, College of Science, Oregon State University, Corvallis, OR, USA", + "ror_ids": [ + "https://ror.org/00ysfqy60" + ] + }, + { + "affiliation": "Department of Oncology, Guang’anmenHospital, China Academy of Chinese Medical Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/042pgcv68" + ] + }, + { + "affiliation": "UK Dementia Research Institute at UCL and Department of Neurodegenerative Disease, UCL Queen Square Institute of Neurology, London, UK", + "ror_ids": [ + "https://ror.org/02wedp412" + ] + }, + { + "affiliation": "Novosibirsk State University, Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/04t2ss102" + ] + }, + { + "affiliation": "Department of Thoracic Radiotherapy, Institute of Cancer and Basic Medicine, Chinese Academy of Sciences, Cancer Hospital of the University of Chinese Academy of Sciences, Zhejiang Cancer Hospital, Hangzhou, China", + "ror_ids": [ + "https://ror.org/0144s0951", + "https://ror.org/05qbk4x57" + ] + }, + { + "affiliation": "Department of Rehabilitation Medicine, Seoul National University Hospital, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/01z4nnt86" + ] + }, + { + "affiliation": "Occupational Health and Safety Program, Graduate School of Natural and Applied Sciences, Middle East Technical Univ., Ankara, Turkey", + "ror_ids": [ + "https://ror.org/014weej12" + ] + }, + { + "affiliation": "Institute of Nanoscience and Applications, Southern University of Science and Technology, Shenzhen, China", + "ror_ids": [ + "https://ror.org/049tv2d57" + ] + }, + { + "affiliation": "Department of Neurological Surgery, Chang Gung Memorial Hospital Chiayi Branch, Chia-Yi, Taiwan", + "ror_ids": [ + "https://ror.org/04gy6pv35" + ] + }, + { + "affiliation": "Institute of Health Research, University of Notre Dame Australia, Fremantle, WA, Australia", + "ror_ids": [ + "https://ror.org/02stey378" + ] + }, + { + "affiliation": "Radboud University Medical Center, Nijmegen, The Netherlands", + "ror_ids": [ + "https://ror.org/05wg1m734" + ] + }, + { + "affiliation": "Agriculture Victoria, Ellinbank Dairy Centre, Ellinbank, VIC, Australia", + "ror_ids": [ + "https://ror.org/01mqx8q10" + ] + }, + { + "affiliation": "Laboratório de Instrumentação e Física Experimental de Partículas — LIP, Lisboa, Portugal", + "ror_ids": [ + "https://ror.org/01hys1667" + ] + }, + { + "affiliation": "Department of Computer Technology, Kongu Engineering College, Perundurai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Department of Clinical Anatomy, College of Health Sciences, University of KwaZulu-Natal, Durban, South Africa", + "ror_ids": [ + "https://ror.org/04qzfn040" + ] + }, + { + "affiliation": "School of Electronic and Optical Engineering, Nanjing University of Science and Technology, Nanjing, China", + "ror_ids": [ + "https://ror.org/00xp9wg62" + ] + }, + { + "affiliation": "Department of Mathematics, Niagara University, Lewiston, NY, USA", + "ror_ids": [ + "https://ror.org/05309tf52" + ] + }, + { + "affiliation": "Department of Engineering Management, College of Engineering, Prince Sultan University, Riyadh, Kingdom of Saudi Arabia", + "ror_ids": [ + "https://ror.org/053mqrf26" + ] + }, + { + "affiliation": "Department of Earth Sciences, Southern Methodist University, Dallas, TX, USA", + "ror_ids": [ + "https://ror.org/042tdr378" + ] + }, + { + "affiliation": "School of Ecology and Environment, Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Department of Neuroscience, University of Montreal, Montreal, QC, Canada", + "ror_ids": [ + "https://ror.org/0161xgx34" + ] + }, + { + "affiliation": "Department of Computer Science and Software Engineering, College of Information Technology, United Arab Emirates University, Al Ain, United Arab Emirates", + "ror_ids": [ + "https://ror.org/01km6p862" + ] + }, + { + "affiliation": "Chair of Vegetative Anatomy, Faculty of Medicine, Institute of Anatomy, Ludwig-Maximilians-University (LMU) Munich, Munich, Germany", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "The Department of Anesthesiology, Perioperative Care, and Pain Medicine, NYU Grossman School of Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "Department of Electrophysics, National Yang Ming Chiao Tung University, Hsinchu, Taiwan, R.O.C.", + "ror_ids": [ + "https://ror.org/00se2k293" + ] + }, + { + "affiliation": "Departamento de Ingeniería Aeroespacial y Mecánica de Fluidos, ETSI, Universidad de Sevilla, Seville, Spain", + "ror_ids": [ + "https://ror.org/03yxnpp24" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, DMI College of Engineering, Chennai, Tamilnadu, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Department of Metallurgical Engineering, Andhra University, Visakhapatnam, Andhra Pradesh, India", + "ror_ids": [ + "https://ror.org/049skhf47" + ] + }, + { + "affiliation": "Physics Department, Marquette University, Milwaukee, WI, USA", + "ror_ids": [ + "https://ror.org/04gr4te78" + ] + }, + { + "affiliation": "Department of Gastrointestinal Surgery, Saitama City Hospital, Saitama, Japan", + "ror_ids": [ + "https://ror.org/0378e9394" + ] + }, + { + "affiliation": "Institute of Polymer and Dye Technology, Faculty of Chemistry, Lodz University of Technology, Lodz, Poland", + "ror_ids": [ + "https://ror.org/00s8fpf52" + ] + }, + { + "affiliation": "Department of Language and Communication Studies, University of Jyväskylä, Jyväskylä, Finland", + "ror_ids": [ + "https://ror.org/05n3dz165" + ] + }, + { + "affiliation": "The Rural Development Academy & Agricultural Experiment Station, Zhejiang University, Huzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Animal Model Research Group, Korea Institute of Toxicology, Jeongeup, Jellabuk-do, Republic of Korea", + "ror_ids": [ + "https://ror.org/0159w2913" + ] + }, + { + "affiliation": "Department of Educational Technology, Wenzhou University, Wenzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/020hxh324" + ] + }, + { + "affiliation": "Institute of Critical Materials for Integrated Circuits, Shenzhen Polytechnic, Shenzhen, China", + "ror_ids": [ + "https://ror.org/00d2w9g53" + ] + }, + { + "affiliation": "Department of Family Medicine and Primary Care, School of Clinical Medicine, Li Ka Shing Faculty of Medicine, The University of Hong Kong, Hong Kong SAR, China", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "K G Jebsen Centre for Genetic Epdiemiology, Department of Public Health and General Practice, Norwegian University of Science and Technology, Trondheim, Norway", + "ror_ids": [ + "https://ror.org/05xg72x27" + ] + }, + { + "affiliation": "Department of Pathology, Fox Chase Cancer Center, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/0567t7073" + ] + }, + { + "affiliation": "Zhejiang Provincial Key Laboratory of Plant Evolutionary Ecology and Conservation, Taizhou University, Taizhou, China", + "ror_ids": [ + "https://ror.org/04fzhyx73" + ] + }, + { + "affiliation": "Southern Marine Science and Engineering Guangdong Laboratory (Zhuhai), Zhuhai, China", + "ror_ids": [ + "https://ror.org/03swgqh13" + ] + }, + { + "affiliation": "Department of Dermatology, Institute of Dermatology, Jiangxi Academy of Clinical Medical Sciences, The First Affiliated Hospital of Nanchang University, Nanchang, Jiangxi, China", + "ror_ids": [ + "https://ror.org/05gbwr869" + ] + }, + { + "affiliation": "Department of Prosthodontics, Saveetha Dental College and Hospital, Saveetha Institute of Medical and Technical Sciences (SIMATS), Saveetha University, Chennai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/0034me914" + ] + }, + { + "affiliation": "Business Decisions and Data Science, University of Passau, Passau, Germany", + "ror_ids": [ + "https://ror.org/05ydjnb78" + ] + }, + { + "affiliation": "Programa de Posgrado en Biología, Universidad de Costa Rica, San Pedro, San José, Costa Rica", + "ror_ids": [ + "https://ror.org/02yzgww51" + ] + }, + { + "affiliation": "Grassland Science and Renewable Plant Resources, Universität Kassel, Witzenhausen, Germany", + "ror_ids": [ + "https://ror.org/04zc7p361" + ] + }, + { + "affiliation": "Department of Pharmacology and Toxicology, and the Cardiovascular Center, Medical College of Wisconsin, Milwaukee, WI, USA", + "ror_ids": [ + "https://ror.org/00qqv6244" + ] + }, + { + "affiliation": "School of Engineering and Technology, Pondicherry University, Puducherry, India", + "ror_ids": [ + "https://ror.org/01a3mef16" + ] + }, + { + "affiliation": "Department of Advanced Convergence, Handong Global University, Pohang, Republic of Korea", + "ror_ids": [ + "https://ror.org/00txhkt32" + ] + }, + { + "affiliation": "Department of Geography, University of Cambridge, Cambridge, UK", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Meteorological Research Division, Environment and Climate Change Canada, Dorval, Canada", + "ror_ids": [ + "https://ror.org/026ny0e17" + ] + }, + { + "affiliation": "Ethox Centre, Nuffield Department of Population Health, University of Oxford, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Institute for Human Health & Disease Intervention and Department of Chemistry & Biochemistry, Florida Atlantic University, Jupiter, FL, USA", + "ror_ids": [ + "https://ror.org/05p8w6387" + ] + }, + { + "affiliation": "Department of Biology, Trent University, Peterborough, ON, Canada", + "ror_ids": [ + "https://ror.org/03ygmq230" + ] + }, + { + "affiliation": "Graduate School of ISEE, Kyushu University, Fukuoka, Japan", + "ror_ids": [ + "https://ror.org/00p4k0j84" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Faculty of Engineering and Architectural Sciences, Eskisehir Osmangazi University, Eskisehir, Turkey", + "ror_ids": [ + "https://ror.org/01dzjez04" + ] + }, + { + "affiliation": "Peking University-Yunnan Baiyao International Medical Research Center, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Global Alliance for Mental Health and Sport, School of Psychology, University of Wollongong, Wollongong, Australia", + "ror_ids": [ + "https://ror.org/00jtmb277" + ] + }, + { + "affiliation": "Department of Diabetes and Endocrinology, Salford Royal NHS Foundation Trust, Salford, UK", + "ror_ids": [ + "https://ror.org/019j78370" + ] + }, + { + "affiliation": "Division of Molecular Genetics, The Netherlands Cancer Institute, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/03xqtf034" + ] + }, + { + "affiliation": "Department of Surgery, Hospital Alemán of Buenos Aires, Buenos Aires, Argentina", + "ror_ids": [ + "https://ror.org/03ydmxb41" + ] + }, + { + "affiliation": "Key Laboratory of Forest Ecology and Environment of National Forestry and Grassland Administration, Ecology and Nature Conservation Institute, Chinese Academy of Forestry, Beijing, China", + "ror_ids": [ + "https://ror.org/0360dkv71" + ] + }, + { + "affiliation": "Construction Research Institute, National Water Research Center, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/04320xd69" + ] + }, + { + "affiliation": "Respiratory Diseases Unit, Department of Medical and Surgical Sciences & Neurosciences, University of Siena, Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "Department of Radiology, Beijing Shijitan Hospital, Capital Medical University, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0569k1630", + "https://ror.org/013xs5b60" + ] + }, + { + "affiliation": "Department of Biophysics, University of Texas Southwestern Medical Center, Dallas, TX, USA", + "ror_ids": [ + "https://ror.org/05byvp690" + ] + }, + { + "affiliation": "Department of Mathematics, Heritage Institute of Technology, Kolkata, West Bengal, India", + "ror_ids": [ + "https://ror.org/030tcae29" + ] + }, + { + "affiliation": "Tilganga Institute of Ophthalmology, Kathmandu, Nepal", + "ror_ids": [ + "https://ror.org/03m8b9646" + ] + }, + { + "affiliation": "Eunice Kennedy Shriver National Institute of Child Health and Human Development, Bethesda, MD, USA", + "ror_ids": [ + "https://ror.org/04byxyr05" + ] + }, + { + "affiliation": "Department of Cardiology, Royal Prince Alfred Hospital, Camperdown, NSW, Australia", + "ror_ids": [ + "https://ror.org/05gpvde20" + ] + }, + { + "affiliation": "School of Life and Environmental Sciences, Shaoxing University, Shaoxing, Zhejiang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0435tej63" + ] + }, + { + "affiliation": "Rehabilitation and Prevention Center, Heart Vascular Stroke Institute, Samsung Medical Center, Sungkyunkwan University School of Medicine, Seoul, Korea", + "ror_ids": [ + "https://ror.org/05a15z872", + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Department of Cellular and Molecular Biology, Faculty of Advanced Science and Technology, Tehran Medical Sciences, Islamic Azad University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01kzn7k21" + ] + }, + { + "affiliation": "College of Food Science, Sichuan Agricultural University, Ya’an, Sichuan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0388c3403" + ] + }, + { + "affiliation": "Section of Endocrinology and Metabolism of Organ and Cellular Transplantation, AOUP Cisanello University Hospital, Pisa, Italy", + "ror_ids": [ + "https://ror.org/05xrcj819" + ] + }, + { + "affiliation": "Institute of Education, University of London, London, UK", + "ror_ids": [ + "https://ror.org/04cw6st05" + ] + }, + { + "affiliation": "Civil and Environmental Engineering, University of Waterloo, Waterloo, Ontario, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "University of Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/021018s57" + ] + }, + { + "affiliation": "Department of Urology, NTT Medical Center Tokyo, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/0285prp25" + ] + }, + { + "affiliation": "Distinguished Visiting Professor at the College of Pharmaceutical Sciences, Dayananda Sagar University, Bengaluru, Karnataka, India", + "ror_ids": [ + "https://ror.org/01xapxe37" + ] + }, + { + "affiliation": "Oklahoma State University Department of Orthopedic Surgery, Tulsa, OK, USA", + "ror_ids": [ + "https://ror.org/01g9vbr38" + ] + }, + { + "affiliation": "Laboratory of Ichthyology, Department of Zoology, School of Biology, Aristotle University of Thessaloniki, Thessaloniki, Greece", + "ror_ids": [ + "https://ror.org/02j61yw88" + ] + }, + { + "affiliation": "Translational Genomics and Targeted Therapeutics in Solid Tumors Lab – IDIBAPS, Hospital Clinic Barcelona, Universidad de Barcelona, Barcelona, España", + "ror_ids": [ + "https://ror.org/021018s57", + "https://ror.org/02a2kzf50" + ] + }, + { + "affiliation": "National Key Laboratory of Medical Immunology, Institute of Immunology, Naval Medical University, Shanghai, China", + "ror_ids": [ + "https://ror.org/01caehj63" + ] + }, + { + "affiliation": "Aerospace and Mechanical Engineering Group, Ronin Institute, Montclair, NJ, USA", + "ror_ids": [ + "https://ror.org/04awze035" + ] + }, + { + "affiliation": "School of Nursing and Midwifery, Faculty of Health, University of Technology Sydney, Ultimo, NSW, Australia", + "ror_ids": [ + "https://ror.org/03f0f6041" + ] + }, + { + "affiliation": "Instituto de Investigaciones sobre los Recursos Naturales-Universidad Michoacana de San Nicolás de Hidalgo, Morelia, Michoacán, México", + "ror_ids": [ + "https://ror.org/00z0kq074" + ] + }, + { + "affiliation": "Department of Textile Engineering, University of Minho, Guimarães, Portugal", + "ror_ids": [ + "https://ror.org/037wpkx04" + ] + }, + { + "affiliation": "Department of Dermatology, School of Medicine, University of Patras, Rio-Patras, Greece", + "ror_ids": [ + "https://ror.org/017wvtq80" + ] + }, + { + "affiliation": "Departamento de Matemáticas Fundamentales, Facultad de Ciencias, UNED, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02msb5n36" + ] + }, + { + "affiliation": "Ecole Nationale d’Ingénieurs de Carthage, Université de Carthage, Tunis, Tunisia", + "ror_ids": [ + "https://ror.org/057x6za15" + ] + }, + { + "affiliation": "Department of Cardiac Surgery, The First Affiliated Hospital of Third Military Medical University (Army Medical University), Chongqing, China", + "ror_ids": [ + "https://ror.org/05w21nn13" + ] + }, + { + "affiliation": "State Key Laboratory of Biogeology and Environmental Geology, China University of Geosciences, Beijing, China and Department of Geology and Environmental Earth Science, Miami University, Oxford, OH, USA", + "ror_ids": [ + "https://ror.org/05nbqxr67", + "https://ror.org/04q6c7p66" + ] + }, + { + "affiliation": "University of Kent, Canterbury, UK", + "ror_ids": [ + "https://ror.org/00xkeyj56" + ] + }, + { + "affiliation": "Department of Economics and Statistics, CELPE, University of Salerno, Fisciano, SA, Italy", + "ror_ids": [ + "https://ror.org/0192m2k53" + ] + }, + { + "affiliation": "Department of Neurology, Cooper Medical School at Rowan University, Camden, USA", + "ror_ids": [ + "https://ror.org/049v69k10", + "https://ror.org/007evha27" + ] + }, + { + "affiliation": "Department of Education Studies, University of California, San Diego, USA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Department of Food Engineering, Faculty of Engineering, Ege University, İzmir, Bornova, Türkiye", + "ror_ids": [ + "https://ror.org/02eaafc18" + ] + }, + { + "affiliation": "Department of Radiation Oncology, Medical Center – University of Freiburg, Faculty of Medicine, University of Freiburg, German Cancer Consortium (DKTK), partner site DKTK-Freiburg, Freiburg, Germany", + "ror_ids": [ + "https://ror.org/0245cg223", + "https://ror.org/02pqn3g31" + ] + }, + { + "affiliation": "Osnabrück University, Osnabrück, Germany", + "ror_ids": [ + "https://ror.org/04qmmjx98" + ] + }, + { + "affiliation": "Faculty of Technology, Department of Electrical Engineering, University of Brasília, Brasília, Brazil", + "ror_ids": [ + "https://ror.org/02xfp8v59" + ] + }, + { + "affiliation": "Zibo Maternal and Child Health Hospital, Zibo, China", + "ror_ids": [ + "https://ror.org/00zsezt30" + ] + }, + { + "affiliation": "Department of Emergency Medicine, University of British Columbia, Vancouver, BC, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Triglyceride Science, Graduate School of Medicine, Osaka University, Osaka, Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "College of Science, Guilin University of Technology, Guilin, Guangxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03z391397" + ] + }, + { + "affiliation": "Institute of Medical Sciences, Department of Surgery, Banaras Hindu University, Varanasi, India", + "ror_ids": [ + "https://ror.org/04cdn2797", + "https://ror.org/04y75dx46" + ] + }, + { + "affiliation": "National Institute of Technology Uttarakhand, Srinagar Garhwal, Uttarakhand, India", + "ror_ids": [] + }, + { + "affiliation": "School of chemical engineering, State Key Lab of Polymer Materials Engineering, Sichuan University, Chengdu, PR China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "Department of Civil Engineering, Aalto University, Espoo, Finland", + "ror_ids": [ + "https://ror.org/020hwjq30" + ] + }, + { + "affiliation": "Department of Sports Medicine, Medical Clinic VII, University Hospital Heidelberg, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/013czdx64" + ] + }, + { + "affiliation": "Institute of High Performance Computing (IHPC), Agency for Science, Technology and Research (A*STAR), Singapore, Republic of Singapore", + "ror_ids": [ + "https://ror.org/02n0ejh50", + "https://ror.org/036wvzt09" + ] + }, + { + "affiliation": "Center for Individualized Medicine and Department of Clinical Genomics, Mayo Clinic, Rochester, MN, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Sri Ramakrishna Engineering College, Coimbatore, India", + "ror_ids": [ + "https://ror.org/056nttx82" + ] + }, + { + "affiliation": "Sektion Berufsdermatologie, Zentrum Hautklinik, Universitätsklinikum Heidelberg, Heidelberg, Deutschland", + "ror_ids": [ + "https://ror.org/013czdx64" + ] + }, + { + "affiliation": "Department of Rehabilitation and Human Performance, Icahn School of Medicine at Mount Sinai, New York, NY, USA", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "CBIOS-Universidade Lusófona’s Research Center for Biosciences and Health Technologies, Lisbon, Portugal", + "ror_ids": [ + "https://ror.org/05xxfer42" + ] + }, + { + "affiliation": "Department of Physics, Faculty of Science, University of Gujrat, Hafiz Hayat Campus, Gujrat, Pakistan", + "ror_ids": [ + "https://ror.org/01xe5fb92" + ] + }, + { + "affiliation": "Department of Medical Oncology, The Sixth Affiliated Hospital of Sun-Yat Sen University, Guangzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/005pe1772" + ] + }, + { + "affiliation": "Jockey Club School of Public Health and Primary Care, The Chinese University of Hong Kong, Hong Kong, China", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Department of Civil Engineering, Universiti Putra Malaysia, Serdang, Malaysia", + "ror_ids": [ + "https://ror.org/02e91jd64" + ] + }, + { + "affiliation": "Range Cattle Research and Education Center, University of Florida, Ona, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Civil and Environmental Engineering, Michigan State University, East Lansing, MI, USA", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "ONIRIS-UMR GEPEA CNRS 6144, Nantes, France", + "ror_ids": [ + "https://ror.org/05q0ncs32" + ] + }, + { + "affiliation": "Faculty of Architecture, Eastern Mediterranean University, Famagusta, Cyprus", + "ror_ids": [ + "https://ror.org/00excyz84" + ] + }, + { + "affiliation": "The Wharton School, University of Pennsylvania, Philadelphia, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "The School of Computer Science & Data Engineering, NingboTech University, Ningbo, China", + "ror_ids": [] + }, + { + "affiliation": "Department of Geological Sciences, New Mexico State University, Las Cruces, NM, USA", + "ror_ids": [ + "https://ror.org/00hpz7z43" + ] + }, + { + "affiliation": "RWTH Aachen University, Digital Additive Production (DAP), Aachen, Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "CHU de Québec-Université Laval Research Centre, Québec, Québec, Canada", + "ror_ids": [ + "https://ror.org/006a7pj43", + "https://ror.org/04sjchr03" + ] + }, + { + "affiliation": "Skövde Artificial Intelligence Lab, School of Informatics, University of Skövde, Skövde, Sweden", + "ror_ids": [ + "https://ror.org/051mrsz47" + ] + }, + { + "affiliation": "Donald and Barbara Zucker School of Medicine, Hofstra/Northwell, Hempstead, New York, NY, USA", + "ror_ids": [ + "https://ror.org/01ff5td15" + ] + }, + { + "affiliation": "PG Department of Mathematics, GDC, Baramulla, India", + "ror_ids": [ + "https://ror.org/028qd3f30" + ] + }, + { + "affiliation": "Department of Non-Viral Delivery, RNA & Gene Therapies, Novo Nordisk A/S, Måløv, Denmark", + "ror_ids": [ + "https://ror.org/0435rc536" + ] + }, + { + "affiliation": "Psychology, University of Cyprus, Nicosia, Cyprus", + "ror_ids": [ + "https://ror.org/02qjrjx09" + ] + }, + { + "affiliation": "Department of Chemical Engineering, School of Engineering, The University of Manchester, Manchester, UK", + "ror_ids": [ + "https://ror.org/027m9bs27" + ] + }, + { + "affiliation": "Department of Medicine, Vanderbilt University Medical Center, Nashville, TN, USA", + "ror_ids": [ + "https://ror.org/05dq2gs74" + ] + }, + { + "affiliation": "Forestry Faculty, Bauman Moscow State Technical University, Mytischi, Russia", + "ror_ids": [ + "https://ror.org/00pb8h375" + ] + }, + { + "affiliation": "Department of Radiology and Magnetic Resonance, UZ Brussel, Brussels, Belgium", + "ror_ids": [ + "https://ror.org/038f7y939" + ] + }, + { + "affiliation": "Chair of Engineering Geology and Hydrogeology, RWTH-Aachen University, Aachen, Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "Acharya Narendra Dev College, University of Delhi, New Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Victoria University of Wellington, Wellington, New Zealand", + "ror_ids": [ + "https://ror.org/0040r6f76" + ] + }, + { + "affiliation": "School of Natural Sciences, Macquarie University, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/01sf06y89" + ] + }, + { + "affiliation": "Swiss Data Science Center, ETH Zürich and EPFL, Zürich, Switzerland", + "ror_ids": [ + "https://ror.org/02hdt9m26", + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Department of Global Development and Planning, University of Agder, Kristiansand, Norway", + "ror_ids": [ + "https://ror.org/03x297z98" + ] + }, + { + "affiliation": "Department of Internal Medicine, Amsterdam UMC Location University of Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463" + ] + }, + { + "affiliation": "Medical faculty, University of Geneva, Geneva, Switzerland", + "ror_ids": [ + "https://ror.org/01swzsf04" + ] + }, + { + "affiliation": "Department of Ocean Science, Hong Kong University of Science and Technology, Kowloon, Hong Kong, China", + "ror_ids": [ + "https://ror.org/00q4vv597" + ] + }, + { + "affiliation": "Machine Learning Group, Technische Universität Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/03v4gjf40" + ] + }, + { + "affiliation": "Division of Human Nutrition and Health, Wageningen University & Research, Wageningen, The Netherlands", + "ror_ids": [ + "https://ror.org/04qw24q55" + ] + }, + { + "affiliation": "Department of Pharmacy, Beijing Youan Hospital, Capital Medical University, Beijing, China", + "ror_ids": [ + "https://ror.org/04etaja30", + "https://ror.org/013xs5b60" + ] + }, + { + "affiliation": "The European Mobile Laboratory Consortium, Bernhard-Nocht-Institute for Tropical Medicine, Hamburg, Germany", + "ror_ids": [ + "https://ror.org/01evwfd48" + ] + }, + { + "affiliation": "Institute of Clinical Medicine, College of Medicine, National Cheng Kung University, Tainan, Taiwan", + "ror_ids": [ + "https://ror.org/01b8kcc49" + ] + }, + { + "affiliation": "Department of Urology, Haukeland University Hospital, Bergen, Norway", + "ror_ids": [ + "https://ror.org/03np4e098" + ] + }, + { + "affiliation": "Environmental Microbiology Laboratory, Water Pollution Research Department, Environmental Research and Climate Change Institute, National Research Centre, Giza, Egypt", + "ror_ids": [ + "https://ror.org/02n85j827" + ] + }, + { + "affiliation": "Purdue University, West Lafayette, Indiana, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Institut de Cancérologie Strasbourg Europe, Strasbourg, France", + "ror_ids": [ + "https://ror.org/008fdbn61" + ] + }, + { + "affiliation": "Division of Medical Physics, Department of Diagnostic and Interventional Radiology, Medical Center – University of Freiburg, Faculty of Medicine, University of Freiburg, Freiburg, Deutschland", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "Centro de Investigación y Desarrollo em Criotecnologia de Alimentos (CIDCA), Facultad de Ciencias Exactas, Universidad Nacional de La Plata, La Plata, Argentina", + "ror_ids": [ + "https://ror.org/01tjs6929", + "https://ror.org/04v30e006" + ] + }, + { + "affiliation": "Departament of Computer Engineering, Faculty of Information Technology, Polytechnic University of Tirana, Tirane, Albania", + "ror_ids": [ + "https://ror.org/05aec4025" + ] + }, + { + "affiliation": "Department of Geography – Research Group for Earth Observation (rgeo), Heidelberg University of Education, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/0044w3h23" + ] + }, + { + "affiliation": "Uniformed Services University of the Health Sciences, Bethesda, MD, USA", + "ror_ids": [ + "https://ror.org/04r3kq386" + ] + }, + { + "affiliation": "Suzhou Institute for Advanced Research, University of Science and Technology of China, Suzhou, P. R. China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Division of Gastroenterology and Hepatology, Department of Internal Medicine, Hyogo Medical University, Nishinomiya, Hyogo, Japan", + "ror_ids": [ + "https://ror.org/001yc7927" + ] + }, + { + "affiliation": "BGI-Shenzhen, Shenzhen, China", + "ror_ids": [ + "https://ror.org/045pn2j94" + ] + }, + { + "affiliation": "Centre for Climate-Resilient and Low-Carbon Cities, School of Architecture and Urban Planning, Chongqing University, Chongqing, China", + "ror_ids": [ + "https://ror.org/023rhb549" + ] + }, + { + "affiliation": "Institute for Clinical and Experimental Surgery, Saarland University, Homburg, Germany", + "ror_ids": [ + "https://ror.org/01jdpyv68" + ] + }, + { + "affiliation": "Department of General Surgery, School of Clinical Medicine, Weifang Medical University, Weifang, Shandong, China", + "ror_ids": [ + "https://ror.org/03tmp6662" + ] + }, + { + "affiliation": "Immunology Center of Georgia, Augusta University, Augusta, GA, USA", + "ror_ids": [ + "https://ror.org/012mef835" + ] + }, + { + "affiliation": "Division of Pediatric Nephrology, University Children’s Hospital, Belgrade, Serbia", + "ror_ids": [ + "https://ror.org/05422jd13" + ] + }, + { + "affiliation": "Icahn School of Medicine at Mount Sinai, Department of Surgery, Mount Sinai Hospital, New York, NY, USA", + "ror_ids": [ + "https://ror.org/01zkyz108" + ] + }, + { + "affiliation": "College of Computer and Information Engineering, Hubei University, Wuhan, Hubei Province, China", + "ror_ids": [ + "https://ror.org/03a60m280" + ] + }, + { + "affiliation": "Songshan Lake Materials Laboratory, Dongguan, P. R. China", + "ror_ids": [ + "https://ror.org/020vtf184" + ] + }, + { + "affiliation": "Mass Spectrometry Laboratory/Organic Pollutants, Institute of Environmental Assessment and Water Research, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/056yktd04" + ] + }, + { + "affiliation": "Guangdong Provincial Key Laboratory of Computer Integrated Manufacturing System, State Key Laboratory of Precision Electronic Manufacturing Technology and Equipment, Guangdong University of Technology, Guangzhou, China", + "ror_ids": [ + "https://ror.org/04azbjn80" + ] + }, + { + "affiliation": "Department of Clinical Laboratory, Xinhua Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/04dzvks42" + ] + }, + { + "affiliation": "Department of Surgery, Open NBI Convergence Technology Research Laboratory, Yonsei University College of Medicine, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/01wjejq96" + ] + }, + { + "affiliation": "Department of General Surgery, Shaanxi Provincial People’s Hospital, Xi’an, China", + "ror_ids": [ + "https://ror.org/009czp143" + ] + }, + { + "affiliation": "Far Eastern Federal University, Vladivostok, Russian Federation", + "ror_ids": [ + "https://ror.org/0412y9z21" + ] + }, + { + "affiliation": "School of Mechanical Engineering, Hubei University of Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/02d3fj342" + ] + }, + { + "affiliation": "Department of Physics, University of Wisconsin, Madison, WI, USA", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Electrical Engineering Department, Colorado School of Mines, Golden, CO, USA", + "ror_ids": [ + "https://ror.org/04raf6v53" + ] + }, + { + "affiliation": "Department of Economics, Loyola University Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/04b6x2g63" + ] + }, + { + "affiliation": "Department of Hematology, All India Institute of Medical Sciences, New Delhi, India", + "ror_ids": [ + "https://ror.org/02dwcqs71" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Southern University of Science and Technology, Shenzhen, China", + "ror_ids": [ + "https://ror.org/049tv2d57" + ] + }, + { + "affiliation": "Department of Thoracic Surgery and State Key Laboratory of Genetic Engineering, Fudan University Shanghai Cancer Center, Shanghai, China", + "ror_ids": [ + "https://ror.org/00my25942" + ] + }, + { + "affiliation": "Office of the Dean of Teaching and Learning, Maynooth University, Maynooth, Ireland", + "ror_ids": [ + "https://ror.org/048nfjm95" + ] + }, + { + "affiliation": "CHEP, Indian Institute of Science, Bangalore, India", + "ror_ids": [ + "https://ror.org/04dese585" + ] + }, + { + "affiliation": "Department of Physics, University of Buenos Aires, Buenos Aires, Argentina", + "ror_ids": [ + "https://ror.org/0081fs513" + ] + }, + { + "affiliation": "Department of Vascular Surgery, MedStar Georgetown University Hospital, Washington, DC, USA", + "ror_ids": [ + "https://ror.org/03ja1ak26" + ] + }, + { + "affiliation": "New York City College of Technology, The City University of New York, Brooklyn, NY, USA", + "ror_ids": [ + "https://ror.org/021a7pw18", + "https://ror.org/00453a208" + ] + }, + { + "affiliation": "Clinical Laboratory, Shunde Hospital, Southern Medical University (The First People’s Hospital of Shunde Foshan), Foshan, Guangdong, China", + "ror_ids": [ + "https://ror.org/00wwb2b69", + "https://ror.org/01vjw4z39" + ] + }, + { + "affiliation": "Northeast Medical Group, Yale New Haven Health, New Haven, CT, USA", + "ror_ids": [ + "https://ror.org/01s1hsq14" + ] + }, + { + "affiliation": "Educational Psychology, Counseling, and Special Education (EPCSE), The Pennsylvania State University, University Park, PA, USA", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Medizinische Klinik und Poliklinik 2 – Onkologie, Gastroenterologie, Hepatologie, Pneumologie, Universitätsklinikum Leipzig, Leipzig, Deutschland", + "ror_ids": [ + "https://ror.org/028hv5492" + ] + }, + { + "affiliation": "Hunan Provincial Key Laboratory of High Efficiency and Precision Machining of Difficult-to-Cut Material, Hunan University of Science and Technology, Xiangtan, Hunan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02m9vrb24" + ] + }, + { + "affiliation": "Department of Surgery, Atrium Health, Charlotte, NC, USA", + "ror_ids": [ + "https://ror.org/0594s0e67" + ] + }, + { + "affiliation": "Computer Graphics and Geomatics Group, EPS Jaén, University of Jaén, Jaén, Jaén, Spain", + "ror_ids": [ + "https://ror.org/0122p5f64" + ] + }, + { + "affiliation": "Department of Clinical Sciences and Nutrition, University of Chester, Chester, UK", + "ror_ids": [ + "https://ror.org/01drpwb22" + ] + }, + { + "affiliation": "The Critical Illness, Brain Dysfunction, Survivorship (CIBS) Center at Vanderbilt University Medical Center and the Veteran’s Affairs Tennessee Valley Geriatric Research Education Clinical Center (GRECC), Nashville, TN, USA", + "ror_ids": [ + "https://ror.org/01nh3sx96", + "https://ror.org/05dq2gs74" + ] + }, + { + "affiliation": "College of Pharmacy, Woosuk University, Wanju-Gun, Republic of Korea", + "ror_ids": [ + "https://ror.org/00emz0366" + ] + }, + { + "affiliation": "School of Mathematical Science, Sichuan Normal University, Chengdu, China", + "ror_ids": [ + "https://ror.org/043dxc061" + ] + }, + { + "affiliation": "Isfahan University of Medical Sciences, Isfahan, Iran", + "ror_ids": [ + "https://ror.org/04waqzz56" + ] + }, + { + "affiliation": "Jiangsu Key Laboratory for Molecular Medicine, Medical School of Nanjing University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "Department of Physiological Chemistry, LMU Biomedical Center Munich, Ludwig-Maximilians-University, Munich, Germany", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "School of Materials and Physics, China University of Mining and Technology, Xuzhou, China", + "ror_ids": [ + "https://ror.org/01xt2dr21" + ] + }, + { + "affiliation": "Department of Hematology, Wuhu City Second People’s Hospital, Wuhu, Anhui, People’s Republic of China", + "ror_ids": [ + "https://ror.org/042g3qa69" + ] + }, + { + "affiliation": "Department of Chemical and Biomolecular Engineering, University of Connecticut, Storrs, CT, USA", + "ror_ids": [ + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "Department of EEE, Sri Ramakrishna Engineering College, Coimbatore, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/056nttx82" + ] + }, + { + "affiliation": "Ahmanson Translational Theranostics Division, Department of Molecular and Medical Pharmacology, David Geffen School of Medicine at UCLA, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "The Swedish School of Sport and Health Sciences, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/046hach49" + ] + }, + { + "affiliation": "Observation and Research Station of Wetland Ecosystem in the Beibu Gulf, Ministry of Natural Resources, Beihai, China", + "ror_ids": [ + "https://ror.org/02kxqx159" + ] + }, + { + "affiliation": "Sheffield Childrens NHS Foundation Trust, Sheffield, England, UK", + "ror_ids": [ + "https://ror.org/02md8hv62" + ] + }, + { + "affiliation": "School of Nursing, Guangzhou University of Chinese Medicine, Guangzhou, Guangdong, China", + "ror_ids": [ + "https://ror.org/03qb7bg95" + ] + }, + { + "affiliation": "Math and CS Department, Drake University, Des Moines, IA, USA", + "ror_ids": [ + "https://ror.org/001skmk61" + ] + }, + { + "affiliation": "Department of Biology, Dalhousie University, Halifax, NS, Canada", + "ror_ids": [ + "https://ror.org/01e6qks80" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, Kochi Medical School, Kochi University, Nankoku, Kochi, Japan", + "ror_ids": [ + "https://ror.org/01xxp6985" + ] + }, + { + "affiliation": "Institute of Pathology, University of Würzburg and Comprehensive Cancer Center Main, Würzburg, Germany", + "ror_ids": [ + "https://ror.org/00fbnyb24", + "https://ror.org/013tmk464" + ] + }, + { + "affiliation": "MOE Key Laboratory of Metabolism and Molecular Medicine, Department of Biochemistry and Molecular Biology, School of Basic Medical Sciences, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Faculty of Technology, Policy and Management, Delft University of Technology, Delft, The Netherlands", + "ror_ids": [ + "https://ror.org/02e2c7k09" + ] + }, + { + "affiliation": "Department of Remote Sensing and GIS, University of Tehran, Tehran, Iran", + "ror_ids": [ + "https://ror.org/05vf56z40" + ] + }, + { + "affiliation": "School of Pharmaceutical Sciences, Sun Yat-Sen University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/0064kty71" + ] + }, + { + "affiliation": "School of Finance and Business, Shanghai Normal University, Shanghai, China", + "ror_ids": [ + "https://ror.org/01cxqmw89" + ] + }, + { + "affiliation": "Proteomics and Signal Transduction, Max Planck Institute of Biochemistry, #N/A, #N/A, Germany", + "ror_ids": [ + "https://ror.org/04py35477" + ] + }, + { + "affiliation": "School of Business, Law, and Entrepreneurship, Swinburne University of Technology, Hawthorn, VIC, Australia", + "ror_ids": [ + "https://ror.org/031rekg67" + ] + }, + { + "affiliation": "Faculty of Medicine, University of Benghazi, Benghazi, Libya", + "ror_ids": [ + "https://ror.org/03fh7t044" + ] + }, + { + "affiliation": "Immunology and Molecular Oncology Unit, Veneto Institute of Oncology IOV-IRCCS, Padova, Italy", + "ror_ids": [ + "https://ror.org/01xcjmy57" + ] + }, + { + "affiliation": "Department of General Surgery, Sakarya University Training and Research Hospital, Sakarya, Turkey", + "ror_ids": [ + "https://ror.org/04ttnw109" + ] + }, + { + "affiliation": "Facultad de Ciencias Empresariales y Turismo. Campus de “La Merced”, Universidad de Huelva, Huelva, Spain", + "ror_ids": [ + "https://ror.org/03a1kt624" + ] + }, + { + "affiliation": "State Key Labortaory for Fine Exploration and Intelligent Development of Coal Resources, China University of Mining and Technology (Beijing), Beijing, China", + "ror_ids": [ + "https://ror.org/01xt2dr21" + ] + }, + { + "affiliation": "Center for Petroleum Energy Economics and Law (CPEEL), University of Ibadan, Ibadan, Oyo State, Nigeria", + "ror_ids": [ + "https://ror.org/03wx2rr30" + ] + }, + { + "affiliation": "Department of Mathematics, Indian Institute of Technology, Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/049tgcd06" + ] + }, + { + "affiliation": "Department of Statistical Sciences - University of Bologna, Bologna, Italy", + "ror_ids": [ + "https://ror.org/01111rn36" + ] + }, + { + "affiliation": "Research Unit for Metabolic Bone Disease in CKD patients, Faculty of Medicine, Chulalongkorn University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Department of Anatomy and Histology, School of Medicine, Sefako Makgatho Health Sciences University, Ga-Rankuwa, South Africa", + "ror_ids": [ + "https://ror.org/003hsr719" + ] + }, + { + "affiliation": "Department of Physics and Astronomy, Macquarie University, Sydney, New South Wales, Australia", + "ror_ids": [ + "https://ror.org/01sf06y89" + ] + }, + { + "affiliation": "Department of Artificial Intelligence, College of Software, Jeju National University, Jeju, Republic of Korea", + "ror_ids": [ + "https://ror.org/05hnb4n85" + ] + }, + { + "affiliation": "Department of Pharmacy, Renmin Hospital of Wuhan University, Wuhan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03ekhbz91" + ] + }, + { + "affiliation": "Dipartimento Gestionale di Ricerca e Sviluppo Clinico, Direzione Scientifica, Fondazione IRCCS Istituto Neurologico Carlo Besta, Milan, Italy", + "ror_ids": [ + "https://ror.org/05rbx8m02" + ] + }, + { + "affiliation": "Department of Environmental Science, iClimate Center, Aarhus University, Roskilde, Denmark", + "ror_ids": [ + "https://ror.org/01aj84f44" + ] + }, + { + "affiliation": "Department of Life, Light and Matter, University of Rostock, Rostock, Germany", + "ror_ids": [ + "https://ror.org/03zdwsf69" + ] + }, + { + "affiliation": "Department of Agriculture, Food, Environment and Forestry (DAGRI), University of Florence, Florence, Italy", + "ror_ids": [ + "https://ror.org/04jr1s763" + ] + }, + { + "affiliation": "UCL Brain Sciences, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Viet Nam National University Ho Chi Minh City, Ho Chi Minh City, Vietnam", + "ror_ids": [ + "https://ror.org/00waaqh38" + ] + }, + { + "affiliation": "Emergency Medicine Department, Muhimbili University of Health and Allied Sciences, Dar es Salaam, Tanzania", + "ror_ids": [ + "https://ror.org/027pr6c67" + ] + }, + { + "affiliation": "Faculty of Mining and Geology, Department of Hydrogeology, University of Belgrade, Belgrade, Serbia", + "ror_ids": [ + "https://ror.org/02qsmb048" + ] + }, + { + "affiliation": "Department of Food and Nutrition, BioNanocomposite Research Center, Kyung Hee University, Dongdaemun-Gu, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/01zqcg218" + ] + }, + { + "affiliation": "Centro de Variabilidad y Cambio Climático (CEVARCAM), Facultad de Ingeniería y Ciencias Hídricas (FICH), Universidad Nacional del Litoral (UNL), Santa Fe, Argentina", + "ror_ids": [ + "https://ror.org/00pt8r998" + ] + }, + { + "affiliation": "Orthopaedic and Traumatology Department, Reims University Hospital, Reims, France", + "ror_ids": [ + "https://ror.org/03hypw319" + ] + }, + { + "affiliation": "Faculty of Veterinary Medicine, Universidade Norte do Paraná, Arapongas, Paraná, Brazil", + "ror_ids": [ + "https://ror.org/00vvm7f23" + ] + }, + { + "affiliation": "Emerging Pathogen Serology group, UK Health Security Agency, Porton Down, Wiltshire, UK", + "ror_ids": [ + "https://ror.org/018h10037" + ] + }, + { + "affiliation": "College of Engineering, Florida A&M University, Tallahassee, FL, USA", + "ror_ids": [ + "https://ror.org/00c4wc133" + ] + }, + { + "affiliation": "Department of Handicraft Design and Production, Faculty of Fine Arts, Kütahya Dumlupınar University, Kütahya, Turkey", + "ror_ids": [ + "https://ror.org/03jtrja12" + ] + }, + { + "affiliation": "Département de Mathématiques, Université de Fribourg, Fribourg, Switzerland", + "ror_ids": [ + "https://ror.org/022fs9h90" + ] + }, + { + "affiliation": "Department of Educational Psychology, University of Utah, Salt Lake City, UT, USA", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "Faculté des Sciences de Bizerte, Université de Carthage & LR Analysis and Control of PDEs, University of Monastir, Monastir, Tunisia", + "ror_ids": [ + "https://ror.org/00nhtcg76", + "https://ror.org/057x6za15" + ] + }, + { + "affiliation": "Graduate Program in Civil Engineering, Engineering Center, Federal University of Pelotas, Pelotas, Brazil", + "ror_ids": [ + "https://ror.org/05msy9z54" + ] + }, + { + "affiliation": "Rohrer College of Business, Rowan University, Glassboro, NJ, USA", + "ror_ids": [ + "https://ror.org/049v69k10" + ] + }, + { + "affiliation": "Department of Computer Science, Faculty of Science, Srinakharinwirot University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/04718hx42" + ] + }, + { + "affiliation": "Johann Bernoulli Institute for Mathematics and Computer Science, University of Groningen, Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Federal University of Amazonas (UFAM), Manaus, Brazil", + "ror_ids": [ + "https://ror.org/02263ky35" + ] + }, + { + "affiliation": "Department of Spinal Surgery, The Affiliated Hospital of Qingdao University, Qingdao, Shandong, China", + "ror_ids": [ + "https://ror.org/026e9yy16" + ] + }, + { + "affiliation": "Technical University of Dresden, Dresden, Germany", + "ror_ids": [ + "https://ror.org/042aqky30" + ] + }, + { + "affiliation": "Department of Neuroscience, Biomedicine and Movement Sciences, University of Verona, Verona, Italy", + "ror_ids": [ + "https://ror.org/039bp8j42" + ] + }, + { + "affiliation": "African Centre of Excellence for Public Health and Toxicological Research (ACE-PUTOR), University of Port Harcourt, PMB, Port Harcourt, Choba, Nigeria", + "ror_ids": [ + "https://ror.org/005bw2d06" + ] + }, + { + "affiliation": "Guangdong Provincial Key Laboratory of Semiconductor Optoelectronic Materials and Intelligent Photonic Systems, Shenzhen Engineering Lab for Supercapacitor Materials, School of Material Science and Engineering, Harbin Institute of Technology, , China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Department of Special Needs Education & Rehabilitation, Carl von Ossietzky Universität of Oldenburg, Oldenburg, Germany", + "ror_ids": [ + "https://ror.org/033n9gh91" + ] + }, + { + "affiliation": "Climate and Ecosystem Sciences Division, Lawrence Berkeley National Laboratory, Berkeley, USA", + "ror_ids": [ + "https://ror.org/02jbv0t02" + ] + }, + { + "affiliation": "Università Cattolica, Milan, Italy, and Accademia Nazionale dei Lincei, Rome, Italy", + "ror_ids": [ + "https://ror.org/05wfehw39" + ] + }, + { + "affiliation": "Dr. Panjwani Center for Molecular Medicine, International Center for Chemical and Biological Sciences (ICCBS-PCMD), University of Karachi, Karachi, Pakistan", + "ror_ids": [ + "https://ror.org/05bbbc791", + "https://ror.org/024ghrf67" + ] + }, + { + "affiliation": "National Institute of Nutrition, Hyderabad, India", + "ror_ids": [ + "https://ror.org/04970qw83" + ] + }, + { + "affiliation": "Division of Cancer Epidemiology, Department of Epidemiology and Public Health, University of Maryland School of Medicine, Baltimore, MD, USA", + "ror_ids": [ + "https://ror.org/04rq5mt64" + ] + }, + { + "affiliation": "World Class Research Program, Universitas Diponegoro, Semarang, Indonesia", + "ror_ids": [ + "https://ror.org/056bjta22" + ] + }, + { + "affiliation": "Department of Medical Sciences, Cardiovascular Epidemiology, Uppsala University Hospital, Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/01apvbh93" + ] + }, + { + "affiliation": "Department of Botany, Jangipur College, University of Kalyani, West Bengal, India", + "ror_ids": [ + "https://ror.org/03v783k16" + ] + }, + { + "affiliation": "International School of Information Science and Engineering, Dalian University of Technology, Dalian, China", + "ror_ids": [ + "https://ror.org/023hj5876" + ] + }, + { + "affiliation": "Clem Jones Centre for Regenerative Medicine, Faculty of Health Sciences and Medicine, Bond University, Gold Coast, QLD, Australia", + "ror_ids": [ + "https://ror.org/006jxzx88" + ] + }, + { + "affiliation": "Department of Physics, College of Science, Imam Mohammad Ibn Saud Islamic University (IMSIU), Riyadh, Saudi Arabia", + "ror_ids": [ + "https://ror.org/05gxjyb39" + ] + }, + { + "affiliation": "Master Program in Food Safety, College of Nutrition, Taipei Medical University, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05031qk94" + ] + }, + { + "affiliation": "MRC Centre for Global Infectious Disease Analysis, School of Public Health, Imperial College London, London, UK", + "ror_ids": [ + "https://ror.org/041kmwe10" + ] + }, + { + "affiliation": "Department of Nephrology, Tokyo Women’s Medical University, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/03kjjhe36" + ] + }, + { + "affiliation": "Higher Institute of Computer Science and Management, University of Kairouan, Kairouan, Tunisia", + "ror_ids": [ + "https://ror.org/024mpte60" + ] + }, + { + "affiliation": "Government Pharmacy College, BRD Medical College Campus, Gorakhpur, India", + "ror_ids": [ + "https://ror.org/05br52903" + ] + }, + { + "affiliation": "School of Chemistry and Environment, Faculty of Applied Sciences, Universiti Teknologi MARA (UiTM), Shah Alam, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/05n8tts92" + ] + }, + { + "affiliation": "Energy and Environment Institute, University of São Paulo, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Universität Bonn - Helmholtz-Institut für Strahlen und Kernphysik, Bonn, Germany", + "ror_ids": [ + "https://ror.org/041nas322" + ] + }, + { + "affiliation": "School of Economics and Management, Communication University of China, Beijing, China", + "ror_ids": [ + "https://ror.org/04facbs33" + ] + }, + { + "affiliation": "The Warren Alpert Medical School of Brown University, Providence, RI, USA", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Yildiz Technical University, Beşiktaş, Istanbul, Türkiye", + "ror_ids": [ + "https://ror.org/0547yzj13" + ] + }, + { + "affiliation": "Institute of Technology and Business in České Budějovice, České Budějovice, Czech Republic", + "ror_ids": [ + "https://ror.org/05a70k539" + ] + }, + { + "affiliation": "School of Electrical Engineering and Information, Southwest Petroleum University, Chengdu, Sichuan, China", + "ror_ids": [ + "https://ror.org/03h17x602" + ] + }, + { + "affiliation": "College of Foreign Languages, Chongqing Medical University, Chongqing, China", + "ror_ids": [ + "https://ror.org/017z00e58" + ] + }, + { + "affiliation": "Department of Urology, Miyagi Cancer Center, Natori, Miyagi, Japan", + "ror_ids": [ + "https://ror.org/01qt7mp11" + ] + }, + { + "affiliation": "Zhangjiang Fudan International Innovation Centre, Human Phenome Institute, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Bahcesehir University, Faculty of Engineering and Natural Sciences, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/00yze4d93" + ] + }, + { + "affiliation": "MagicX (Media and Games Center of Excellence), Universiti Teknologi Malaysia, Johor, Malaysia", + "ror_ids": [ + "https://ror.org/026w31v75" + ] + }, + { + "affiliation": "Department of Agricultural, Guru Nanak Dev University, Amritsar, Punjab, India", + "ror_ids": [ + "https://ror.org/05ghzpa93" + ] + }, + { + "affiliation": "Division of Pediatric Neurology, Department of Pediatrics, University of Michigan and C.S. Mott Children’s Hospital, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291", + "https://ror.org/05h0f1d70" + ] + }, + { + "affiliation": "Adult Learning Disability Service, Leicestershire Partnership NHS Trust, Leicester, UK", + "ror_ids": [ + "https://ror.org/045wcpc71" + ] + }, + { + "affiliation": "State Key Laboratory of Optoelectronic Materials and Technologies, Sun Yat-Sen University, Guangzhou, Guangdong, China", + "ror_ids": [ + "https://ror.org/0064kty71", + "https://ror.org/010fszt18" + ] + }, + { + "affiliation": "Environmental Engineering and Earth Sciences, Clemson University, Anderson, SC, USA", + "ror_ids": [ + "https://ror.org/037s24f05" + ] + }, + { + "affiliation": "Department of Biology and Biochemistry, South Kazakhstan Medical Academy, Shymkent, Kazakhstan", + "ror_ids": [ + "https://ror.org/025hwk980" + ] + }, + { + "affiliation": "Biotechnology and Bioinformatics Division, Jawaharlal Nehru Tropical Botanic Garden & Research Institute, Palode, Thiruvananthapuram, Kerala, India", + "ror_ids": [ + "https://ror.org/05w47ap08" + ] + }, + { + "affiliation": "Department of Clinical Nutrition, Institute of Public Health and Clinical Nutrition, University of Eastern Finland, Kuopio, Finland", + "ror_ids": [ + "https://ror.org/00cyydd11" + ] + }, + { + "affiliation": "Department of Rehabilitation Medicine, School of Medicine, Kyungpook National University, Daegu, South Korea", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "Nikhef, Theory Group, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/00f9tz983" + ] + }, + { + "affiliation": "Department of Surgery, Stamford Hospital, Stamford, CT, USA", + "ror_ids": [ + "https://ror.org/05jr4qt09" + ] + }, + { + "affiliation": "Epidemiology and Population Health Research Group (GESP), School of Public Health, Universidad del Valle, Cali, Colombia", + "ror_ids": [ + "https://ror.org/00jb9vg53" + ] + }, + { + "affiliation": "Department of Organic and Biochemistry, Faculty of Chemistry, University of Tabriz, Tabriz, Iran", + "ror_ids": [ + "https://ror.org/01papkj44" + ] + }, + { + "affiliation": "Department of Family Medicine, Lehigh Valley Health Network, Allentown, PA, USA", + "ror_ids": [ + "https://ror.org/00sf92s91" + ] + }, + { + "affiliation": "School of Astronomy and Space Science, University of Science and Technology of China, Hefei, China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "College of Civil Engineering, Chongqing Jiaotong University, Chongqing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01t001k65" + ] + }, + { + "affiliation": "School of Electronics and Information Engineering, Lanzhou Jiaotong University, Lanzhou, China", + "ror_ids": [ + "https://ror.org/03144pv92" + ] + }, + { + "affiliation": "Department of Cardiology, Ankara City Hospital, Ankara, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Pediatric Movement Disorders Program, Division of Pediatric Neurology, Barrow Neurological Institute, Phoenix Children’s Hospital, Phoenix, AZ, USA", + "ror_ids": [ + "https://ror.org/01fwrsq33", + "https://ror.org/03ae6qy41" + ] + }, + { + "affiliation": "Beijing Frontier Research Center for Biological Structures, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Department of Horticultural Sciences, Texas A&M University, College Station, TX, USA", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "Black Dog Institute and School of Psychology, University of New South Wales, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/03r8z3t63", + "https://ror.org/04rfr1008" + ] + }, + { + "affiliation": "Electrical and Electronics Engineering, AMET University, Chennai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/05dpv4c71" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, University of California San Diego, La Jolla, CA, USA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "SHU Center of Green Urban Mining & Industry Ecology, School of Environmental and Chemical Engineering, Shanghai University, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/006teas31" + ] + }, + { + "affiliation": "Department of Zoology, Kirori Mal College, University of Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Department of Nursing, Bucak School of Health, Burdur Mehmet Akif Ersoy University, Burdur, Turkey", + "ror_ids": [ + "https://ror.org/04xk0dc21" + ] + }, + { + "affiliation": "UR 4360 APEMAC (Health Adjustment, Measurement and Assessment, Interdisciplinary Approaches), University of Lorraine, Nancy, France", + "ror_ids": [ + "https://ror.org/04vfs2w97" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, College of Medicine, Seoul St. Mary’s Hospital, The Catholic University of Korea, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/056cn0e37", + "https://ror.org/01fpnj063" + ] + }, + { + "affiliation": "Department of Mathematics and Statistics, University of Nebraska, Lincoln, NE, ", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "Department of Medical Oncology, Ospedale degli Infermi, Biella, Italy", + "ror_ids": [ + "https://ror.org/00edt5124" + ] + }, + { + "affiliation": "PRINCE Laboratory Research, ISITcom, University of Sousse, Hammam Sousse, Tunisia", + "ror_ids": [ + "https://ror.org/00dmpgj58" + ] + }, + { + "affiliation": "Division of Health Services Research, University of Iowa College of Pharmacy, Iowa City, IA, USA", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "IRCCS - Istituto Ortopedico Rizzoli, Bologna, Italy", + "ror_ids": [ + "https://ror.org/02ycyys66" + ] + }, + { + "affiliation": "Department of Colorectal Surgery, the First Affiliated Hospital, School of Medicine, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Immunology, St. Jude Children’s Research Hospital, Memphis, TN, USA", + "ror_ids": [ + "https://ror.org/02r3e0967" + ] + }, + { + "affiliation": "Centre de Recherche du Centre Hospitalier de l’Université de Montréal, Montreal, QC, Canada", + "ror_ids": [ + "https://ror.org/0410a8y51" + ] + }, + { + "affiliation": "Department of Paediatrics, Royal College of Surgeons in Ireland, Dublin, 2, Ireland", + "ror_ids": [ + "https://ror.org/01hxy9878" + ] + }, + { + "affiliation": "Institute of Laser Physics, Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/00b5qjr76" + ] + }, + { + "affiliation": "Key Laboratory of Mountain Hazards and Earth Surface Processes, Institute of Mountain Hazards and Environment, Chinese Academy of Sciences, Chengdu, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/02z0nsb22" + ] + }, + { + "affiliation": "School of Education and Engineering and Physical Sciences, University of Birmingham, Birmingham, UK", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "Department of Medical Microbiology, Galway University Hospitals, Galway, Ireland", + "ror_ids": [ + "https://ror.org/04scgfz75" + ] + }, + { + "affiliation": "Department of Government and Politics, University of Maryland, College Park, MD, USA", + "ror_ids": [ + "https://ror.org/047s2c258" + ] + }, + { + "affiliation": "School of Rehabilitation Therapy, Queen’s University, Kingston, ON, Canada", + "ror_ids": [ + "https://ror.org/02y72wh86" + ] + }, + { + "affiliation": "University Centre of the Westfjords, Isafjordur, Iceland", + "ror_ids": [ + "https://ror.org/00z2vfv58" + ] + }, + { + "affiliation": "Department of Food and Nutrition, Punjab Agricultural University, Ludhiana, India", + "ror_ids": [ + "https://ror.org/02qbzdk74" + ] + }, + { + "affiliation": "Department of Media, Communication and Journalism, California State University, Fresno, CA, USA", + "ror_ids": [ + "https://ror.org/03enmdz06" + ] + }, + { + "affiliation": "Department of Oral and Maxillofacial-Head & Neck Oncology, Shanghai Ninth People’s Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/010826a91" + ] + }, + { + "affiliation": "Ghent University, Ghent, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Department of Diagnostic and Interventional Radiology, Leipzig University Medical Center, Leipzig, Germany", + "ror_ids": [ + "https://ror.org/03s7gtk40" + ] + }, + { + "affiliation": "Department of Internal Medicine, Chi Mei Medical Center, Tainan, Taiwan", + "ror_ids": [ + "https://ror.org/02y2htg06" + ] + }, + { + "affiliation": "Key Laboratory of Neuropharmacology and Translational Medicine of Zhejiang Province, School of Pharmaceutical Sciences, Zhejiang Chinese Medical University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/04epb4p87" + ] + }, + { + "affiliation": "Energy Transformation Research Laboratory, Central Research Institute of Electric Power Industry (CRIEPI), Yokosuka, Kanagawa, Japan", + "ror_ids": [ + "https://ror.org/041jswc25" + ] + }, + { + "affiliation": "University of Miskolc, Miskolc-Egyetemváros, Hungary", + "ror_ids": [ + "https://ror.org/038g7dk46" + ] + }, + { + "affiliation": "Laboratory of Theoretical Physics, Institute of Physics, University of Tartu, Tartu, Estonia", + "ror_ids": [ + "https://ror.org/03z77qz90" + ] + }, + { + "affiliation": "Department of Hematology and Oncology, Brookdale University Hospital Medical Center, Brooklyn, NY, USA", + "ror_ids": [ + "https://ror.org/0065vkd37" + ] + }, + { + "affiliation": "State Key Laboratory of Membrane Biology, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549", + "https://ror.org/03mq8q210" + ] + }, + { + "affiliation": "Instituto Nacional de Câncer, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/055n68305" + ] + }, + { + "affiliation": "Laboratory of Ocean and Coast Geology, Third Institute of Oceanography, Ministry of Natural Resources, Xiamen, China", + "ror_ids": [ + "https://ror.org/02kxqx159" + ] + }, + { + "affiliation": "Department of Pharmaceutical and Pharmacological Sciences, Molecular Modeling Section (MMS), University of Padova, Padova, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Department of Biotechnology, Persian Gulf Research Institute, Persian Gulf University, Bushehr, Iran", + "ror_ids": [ + "https://ror.org/03n2mgj60" + ] + }, + { + "affiliation": "The Azrieli Faculty of Medicine, Bar-Ilan University, Safed, Israel", + "ror_ids": [ + "https://ror.org/03kgsv495" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Amity School of Engineering and Technology, Amity University Madhya Pradesh, Gwalior, Madhya Pradesh, India", + "ror_ids": [ + "https://ror.org/02n9z0v62" + ] + }, + { + "affiliation": "University of Vienna, Center for Molecular Biology, Department of Structural and Computational Biology, Vienna, Austria", + "ror_ids": [ + "https://ror.org/03prydq77" + ] + }, + { + "affiliation": "Department of Pediatric Dentistry, West China Hospital of Stomatology, Sichuan University, Chengdu, China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "Department of Anesthesia, University of Iowa Hospitals and Clinics, Iowa City, IA, USA", + "ror_ids": [ + "https://ror.org/04g2swc55" + ] + }, + { + "affiliation": "Centre for Veterinary Wildlife Research, Faculty of Veterinary Science, University of Pretoria, Tshwane, Onderstepoort, South Africa", + "ror_ids": [ + "https://ror.org/00g0p6g84" + ] + }, + { + "affiliation": "Klinikum Bamberg, Sozialstiftung Bamberg, Bamberg, Deutschland", + "ror_ids": [ + "https://ror.org/04pa5pz64" + ] + }, + { + "affiliation": "Department of Chemistry ‘‘Ugo Schiff”, University of Florence, Florence, Italy", + "ror_ids": [ + "https://ror.org/04jr1s763" + ] + }, + { + "affiliation": "Department of Paediatric Surgery, Royal Manchester Children’s Hospital, Manchester, UK", + "ror_ids": [ + "https://ror.org/052vjje65" + ] + }, + { + "affiliation": "Department of Textile System Engineering, Kyungpook National University, Daegu, Republic of Korea", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "College of Mathematics and Statistics, Chongqing Jiaotong University, Chongqing, China", + "ror_ids": [ + "https://ror.org/01t001k65" + ] + }, + { + "affiliation": "Molecular Neurobiology Laboratory, Massachusetts General Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "CISUC, Coimbra, Portugal", + "ror_ids": [ + "https://ror.org/04z8k9a98" + ] + }, + { + "affiliation": "Department of Biomedical Data Sciences, Leiden University Medical Center, Leiden, The Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17" + ] + }, + { + "affiliation": "Department of Plastic Surgery, Zagazig University Hospital, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/053g6we49" + ] + }, + { + "affiliation": "Section of Surgical Sciences, Epithelial Biology Center, Vanderbilt University Medical Center, Nashville, TN, USA", + "ror_ids": [ + "https://ror.org/05dq2gs74" + ] + }, + { + "affiliation": "College of Economics and Management, Economics and Management building, Yunnan Agriculture University, Helongtan, Kunming, Panlong District, China", + "ror_ids": [ + "https://ror.org/04dpa3g90" + ] + }, + { + "affiliation": "Department of Applied Mathematics, University of Calcutta, Kolkata, India", + "ror_ids": [ + "https://ror.org/01e7v7w47" + ] + }, + { + "affiliation": "MTA-DE Biodiversity and Ecosystem Services Research Group, University of Debrecen, Debrecen, Hungary", + "ror_ids": [ + "https://ror.org/02xf66n48" + ] + }, + { + "affiliation": "Department of Plant Pathology, Federal University of Lavras, Lavras, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0122bmm03" + ] + }, + { + "affiliation": "Faculté d’administration, Université de Moncton, Moncton, Canada", + "ror_ids": [ + "https://ror.org/029tnqt29" + ] + }, + { + "affiliation": "Geographisches Institut, Universität Bern, Bern, Schweiz", + "ror_ids": [ + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "János Szentágothai Research Centre, Bioinformatics Research Group, University of Pécs, Pécs, Hungary", + "ror_ids": [ + "https://ror.org/037b5pv06" + ] + }, + { + "affiliation": "Department of Biological Sciences, Faculty of Science, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": " Key Laboratory of Smart Drug Delivery of MOE, School of Pharmacy, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Division of Nephrology and Hypertension, Department of Medicine, Mayo Clinic, Rochester, MN, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Department of Neuroradiology, University Hospital of Southampton, Southampton, UK", + "ror_ids": [ + "https://ror.org/0485axj58" + ] + }, + { + "affiliation": "Van Swinderen Institute, University of Groningen, Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Division of Entomology, Indian Agricultural Research Institute, New Delhi, India", + "ror_ids": [ + "https://ror.org/01bzgdw81" + ] + }, + { + "affiliation": "Parkville Familial Cancer Centre, Peter MacCallum Cancer Centre and Royal Melbourne Hospital, Melbourne, VIC, Australia", + "ror_ids": [ + "https://ror.org/02a8bt934", + "https://ror.org/005bvs909" + ] + }, + { + "affiliation": "Department of Anesthesiology, The Affiliated Traditional Chinese Medical Hospital of Southwest Medical University, Luzhou, China", + "ror_ids": [ + "https://ror.org/00g2rqs52" + ] + }, + { + "affiliation": "Department of Medical, Surgical and Neuroscience Sciences, University of Siena, Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "Department of Orthodontics and Dentofacial Orthopedics, School of Dental Medicine, University of Bern, Bern, Switzerland", + "ror_ids": [ + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "Szentágothai Research Centre, University of Pécs, Pécs, Hungary", + "ror_ids": [ + "https://ror.org/037b5pv06" + ] + }, + { + "affiliation": "Addiction Biology Unit, Department of Psychiatry and Neurochemistry, Institute of Neuroscience and Physiology, Sahlgrenska Academy, University of Gothenburg, Gothenburg, SE, Sweden", + "ror_ids": [ + "https://ror.org/01tm6cn81" + ] + }, + { + "affiliation": "Shanghai Institute of Nutrition and Health, Shanghai, China", + "ror_ids": [ + "https://ror.org/00rytkh49" + ] + }, + { + "affiliation": "Student Research Committee, College of Medicine, Mashhad University of Medical Sciences, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/04sfka033" + ] + }, + { + "affiliation": "Centre for Biomedical Ethics, Yong Loo Lin School of Medicine, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Department of Molecular Genetics, Weizmann Institute of Science, Rehovot, Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "Faculty of Agriculture and Life Sciences, Lincoln University, Lincoln, New Zealand", + "ror_ids": [ + "https://ror.org/04ps1r162" + ] + }, + { + "affiliation": "Department of Epidemiology and Data Science, Amsterdam Public Health, Amsterdam University Medical Centers, University of Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463", + "https://ror.org/05grdyy37" + ] + }, + { + "affiliation": "Department of Neurology, Baoding No.1 Central Hospital, Baoding, China", + "ror_ids": [ + "https://ror.org/022nvaw58" + ] + }, + { + "affiliation": "Laboratory of Chemical Physics, National Institute of Diabetes and Digestive and Kidney Diseases, National Institutes of Health, Bethesda, MD, USA", + "ror_ids": [ + "https://ror.org/00adh9b73" + ] + }, + { + "affiliation": "Faculty of Science and Technology, Oita University, Oita, Japan", + "ror_ids": [ + "https://ror.org/01nyv7k26" + ] + }, + { + "affiliation": "University Women’s Polytechnic, Z. H. College of Engineering and Technology, Aligarh Muslim University, Aligarh, India", + "ror_ids": [ + "https://ror.org/03kw9gc02" + ] + }, + { + "affiliation": "Department of Plant Protection, Faculty of Agriculture, Ferdowsi University of Mashhad, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/00g6ka752" + ] + }, + { + "affiliation": "Population Health and Policy Research Unit, Graduate School of Medicine, Medical Education Center/International Education Section, Kyoto University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Max Planck Institute for Biological Intelligence, Department Genes – Circuits – Behavior, Martinsried, Germany", + "ror_ids": [ + "https://ror.org/03g267s60" + ] + }, + { + "affiliation": "Syngenta, Jealott’s Hill International Research Centre, Bracknell, UK", + "ror_ids": [ + "https://ror.org/000bdn450" + ] + }, + { + "affiliation": "Universitas Negeri Yogyakarta, Yogyakarta, Indonesia", + "ror_ids": [ + "https://ror.org/05fryw881" + ] + }, + { + "affiliation": "Science and Technology on Antennas and Microwave Laboratory, Xidian University, Xi’an, China", + "ror_ids": [ + "https://ror.org/05s92vm98" + ] + }, + { + "affiliation": "Department of Health Sciences, University of Genoa, Genoa, Italy", + "ror_ids": [ + "https://ror.org/0107c5v14" + ] + }, + { + "affiliation": "Department of Mathematics, Universidade Federal de Santa Catarina, Blumenau, Santa Catarina, Brazil", + "ror_ids": [ + "https://ror.org/041akq887" + ] + }, + { + "affiliation": "Management Department, Sunway Business School, Sunway University, Petaling Jaya, Malaysia", + "ror_ids": [ + "https://ror.org/04mjt7f73" + ] + }, + { + "affiliation": "Immunology and Genetics Unit, Complejo Hospitalario Universitario de Cáceres, Cáceres, Spain", + "ror_ids": [ + "https://ror.org/01mhgyv56" + ] + }, + { + "affiliation": "Department of Applied Social Sciences, Munich University of Applied Sciences, Munich, Germany", + "ror_ids": [ + "https://ror.org/012k1v959" + ] + }, + { + "affiliation": "Laboratory for Neural Circuits and Behavior, RIKEN Center for Brain Science, Wako, Saitama, Japan", + "ror_ids": [ + "https://ror.org/04j1n1c04" + ] + }, + { + "affiliation": "Universitäres Centrum für Tumorerkrankungen (UCT) Mainz, Universitätsmedizin der Johannes Gutenberg-Universität Mainz, Mainz, Deutschland", + "ror_ids": [ + "https://ror.org/00q1fsf04", + "https://ror.org/023b0x485" + ] + }, + { + "affiliation": "Departments of Chemical and Biomolecular Engineering, and Biomedical Engineering, Faculty of Engineering, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Mathematical Engineering Academy of Chinese Medicine, Guangzhou University of Chinese Medicine, Guangzhou, China", + "ror_ids": [ + "https://ror.org/03qb7bg95" + ] + }, + { + "affiliation": "Department of Nephrology, Dialysis and Transplantation, San Bortolo Hospital, Vicenza, Italy", + "ror_ids": [ + "https://ror.org/05wd86d64" + ] + }, + { + "affiliation": "Zentrale Interdisziplinäre Notaufnahme, Klinikum rechts der Isar, Technische Universität München, München, Deutschland", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Nutrition and Endocrine Research Center, Research Institute for Endocrine Sciences, Shahid Beheshti University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/034m2b326", + "https://ror.org/01kpm1136" + ] + }, + { + "affiliation": "Preventive Treatment of Disease Center, The First Affiliated Hospital of Guangxi University of Chinese Medicine, Nanning, Guangxi Zhuang Autonomous Region, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01qh7se39", + "https://ror.org/024v0gx67" + ] + }, + { + "affiliation": "Departments of Child Health, Neurology, and Cellular & Molecular Medicine, and Program in Genetics, University of Arizona College of Medicine-Phoenix, Phoenix, AZ, USA", + "ror_ids": [ + "https://ror.org/03m2x1q45" + ] + }, + { + "affiliation": "Department of Mathematics and Computer sciences, University of Oum El Bouaghi, Oum El Bouaghi, Algeria", + "ror_ids": [ + "https://ror.org/0034tbg85" + ] + }, + { + "affiliation": "Department of Cardiovascular Medicine, Tokai University Hachioji Hospital, Hachioji, Japan", + "ror_ids": [ + "https://ror.org/00gr1q288" + ] + }, + { + "affiliation": "Division of Gastroenterology, Hepatology and Nutrition, NYU Long Island School of Medicine, NYU Langone—Long Island Hospital, Mineola, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "EIEF, Rome, Italy", + "ror_ids": [ + "https://ror.org/04e874t64" + ] + }, + { + "affiliation": "Department of Plant Breeding and Biotechnology, College of Agriculture, Shahrekord University, Shahrekord, Iran", + "ror_ids": [ + "https://ror.org/051rngw70" + ] + }, + { + "affiliation": "Department of Maternal and Fetal Medicine, Miyagi Children’s Hospital, Sendai, Japan", + "ror_ids": [ + "https://ror.org/007e71662" + ] + }, + { + "affiliation": "Department of Pharmaceutics, Faculty of Pharmacy, Minia University, Minia, Egypt", + "ror_ids": [ + "https://ror.org/02hcv4z63" + ] + }, + { + "affiliation": "Sustainable Transportation Lab, Department of Logistics and Transport Technology, Federal University of Technology, Akure, Nigeria", + "ror_ids": [ + "https://ror.org/01pvx8v81" + ] + }, + { + "affiliation": "Department of Mathematics, Dr. B.C. Roy Engineering College, Makaut, West Bengal, India", + "ror_ids": [ + "https://ror.org/030tcae29" + ] + }, + { + "affiliation": "State Key Laboratory of Superlattices and Microstructures, Institute of Semiconductors, Chinese Academy of Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/048dd0611" + ] + }, + { + "affiliation": "Department of Social and Human Research, Romanian Academy, Cluj-Napoca, Romania", + "ror_ids": [ + "https://ror.org/0561n6946" + ] + }, + { + "affiliation": "Department of Trauma Surgery, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Mansfield College, Oxford University, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Institute for Molecular Medicine Finland–FIMM, University of Helsinki, Helsinki, Finland", + "ror_ids": [ + "https://ror.org/040af2s02", + "https://ror.org/030sbze61" + ] + }, + { + "affiliation": "Center for Women and Work, University of Massachusetts Lowell, Lowell, MA, USA", + "ror_ids": [ + "https://ror.org/03hamhx47" + ] + }, + { + "affiliation": "Institute of Pathology, Friedrich-Alexander University, Erlangen, Germany", + "ror_ids": [ + "https://ror.org/00f7hpc57" + ] + }, + { + "affiliation": "Department of Radiology, Cancer Hospital of Shantou University Medical College, Shantou, Guangdong, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00a53nq42" + ] + }, + { + "affiliation": "Universidad San Sebastian, Providencia, Chile", + "ror_ids": [ + "https://ror.org/04jrwm652" + ] + }, + { + "affiliation": "Department of Computer Science, Virginia Tech, Blacksburg, VA, USA", + "ror_ids": [ + "https://ror.org/02smfhw86" + ] + }, + { + "affiliation": "Laboratory for Drug Discovery, Pharmaceuticals Research Center, Asahi Kasei Pharma Corporation, Izunokuni-shi, Japan", + "ror_ids": [ + "https://ror.org/018wp0236" + ] + }, + { + "affiliation": "Nursing, Midwifery and Allied Health Professions Research Unit (NMAHP-RU), Faculty of Health Sciences and Sport, University of Stirling, Stirling, UK", + "ror_ids": [ + "https://ror.org/045wgfr59" + ] + }, + { + "affiliation": "Universidad de Alcalá, Departamento de Educación, Madrid, Alcalá de Henares, España", + "ror_ids": [ + "https://ror.org/04pmn0e78" + ] + }, + { + "affiliation": "Beijing Engineering Research Center of 3D Printing for Digital Medical Health, Beijing University of Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/037b1pp87" + ] + }, + { + "affiliation": "Energy Research and Technology Group, CSIR-Central Mechanical Engineering Research Institute (CMERI), Durgapur, India", + "ror_ids": [ + "https://ror.org/059h0ng81" + ] + }, + { + "affiliation": "George Washington University, Washington, DC, USA", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "Division of Nephrology, Department of Medicine, Faculty of Medicine, Chulalongkorn University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Department of Medicine, Autonomous University of Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Department of Molecular Imaging, Royal Prince Alfred Hospital, Sydney, Australia", + "ror_ids": [ + "https://ror.org/05gpvde20" + ] + }, + { + "affiliation": "School of Agricultural Science and Engineering, Liaocheng University, Liaocheng, China", + "ror_ids": [ + "https://ror.org/03yh0n709" + ] + }, + { + "affiliation": "INSERM LNC UMR1231, University of Burgundy, Dijon, France", + "ror_ids": [ + "https://ror.org/03k1bsr36" + ] + }, + { + "affiliation": "Department of Metallurgical and Materials Engineering, National Institute of Technology, Durgapur, West Bengal, India", + "ror_ids": [ + "https://ror.org/04ds0jm32" + ] + }, + { + "affiliation": "Wellcome Sanger Institute, Wellcome Genome Campus, Hinxton, UK", + "ror_ids": [ + "https://ror.org/05cy4wa09" + ] + }, + { + "affiliation": "Department of Economics, University of Wuppertal, Wuppertal, Nordrhein-Westfalen, Germany", + "ror_ids": [ + "https://ror.org/00613ak93" + ] + }, + { + "affiliation": "Department of Life Sciences, University of Siena, Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "Department of Pharmacology, Weill Medical College, Cornell University, New York, NY, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Physics, Faculty of Science and Health, Koya University, Koya, Kurdistan Region, Iraq", + "ror_ids": [ + "https://ror.org/017pq0w72" + ] + }, + { + "affiliation": "Zoology Department, Faculty of Science, Minia University, El-Minia, Egypt", + "ror_ids": [ + "https://ror.org/02hcv4z63" + ] + }, + { + "affiliation": "Cardiac Electrophysiology Section, Department of Cardiovascular Medicine, Cleveland Clinic, Cleveland, OH, USA", + "ror_ids": [ + "https://ror.org/03xjacd83" + ] + }, + { + "affiliation": "Department of Pharmacology and Toxicology, Ruhr-Universität Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Department of Land Resources and Agricultural Technology, College of Agriculture and Veterinary Sciences, University of Nairobi, Nairobi, Kenya", + "ror_ids": [ + "https://ror.org/02y9nww90" + ] + }, + { + "affiliation": "Department of Hematology, Postgraduate Institute of Medical Education and Research, Chandigarh, India", + "ror_ids": [ + "https://ror.org/009nfym65" + ] + }, + { + "affiliation": "Laboratory of Biochemistry, Clínica Universidad de Navarra, Pamplona, Spain", + "ror_ids": [ + "https://ror.org/03phm3r45" + ] + }, + { + "affiliation": "Instituto de Ecología, A.C., Red Biodiversidad y Sistemática, Xalapa, Veracruz, México", + "ror_ids": [ + "https://ror.org/03yvabt26" + ] + }, + { + "affiliation": "Energy Conversion Science, Kyoto University, Sakyo-ku, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Desertification Research Centre (CIDE) (CSIC-UV-GV), University of Valencia, Valencia, Spain", + "ror_ids": [ + "https://ror.org/043nxc105" + ] + }, + { + "affiliation": "Department of Neurosurgery, Central Hospital of Jing’an District, The Affiliated Central Hospital of Jing’an District, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Nuclear Controls and Planning Wing, Department of Atomic Energy, Mumbai, India", + "ror_ids": [ + "https://ror.org/02m388s04" + ] + }, + { + "affiliation": "Department of Mathematical and Physical Sciences, Concordia University of Edmonton, Edmonton, Canada", + "ror_ids": [ + "https://ror.org/04013rx15" + ] + }, + { + "affiliation": "Department of Oral and Maxillofacial Surgery, Houston Methodist Research Institute, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/027zt9171" + ] + }, + { + "affiliation": "Instituto de Investigaciones Bioquímicas de Bahía Blanca (INIBIBB-CONICET), Bahía Blanca, Argentina", + "ror_ids": [ + "https://ror.org/021rr7t48" + ] + }, + { + "affiliation": "Department of Head and Neck and Urogenital Neoplasm, Harbin Medical University Cancer Hospital, Harbin, China", + "ror_ids": [ + "https://ror.org/01f77gp95", + "https://ror.org/05jscf583" + ] + }, + { + "affiliation": "Department of Systems Biotechnology, Chung-Ang University, Anseong, Gyeonggi, Korea", + "ror_ids": [ + "https://ror.org/01r024a98" + ] + }, + { + "affiliation": "Department of Commerce, University of Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Department of Economics, University of Western Macedonia, Kastoria, Greece", + "ror_ids": [ + "https://ror.org/00a5pe906" + ] + }, + { + "affiliation": "School of Psychology, Bond University, Robina, Australia", + "ror_ids": [ + "https://ror.org/006jxzx88" + ] + }, + { + "affiliation": "Nutritional Epidemiology Research Team (EREN), Centre of Research in Epidemiology and Statistics Sorbonne Paris Cité, Inserm (U1153), Inra (U1125), Cnam, Paris 13 University, COMUE Sorbonne Paris Cité, Bobigny, France", + "ror_ids": [ + "https://ror.org/0199hds37", + "https://ror.org/00t9egj41" + ] + }, + { + "affiliation": "College of Computer Science and Engineering, Teerthanker Mahaver University, Moradabad, India", + "ror_ids": [ + "https://ror.org/04vkd2013" + ] + }, + { + "affiliation": "Hepatobiliary Surgery Department, Guangxi Medical University Cancer Hospital, Nanning, China", + "ror_ids": [ + "https://ror.org/03dveyr97" + ] + }, + { + "affiliation": "Service de Neurochirurgie, Hôpital Fondation Adolphe de Rothschild, Paris, France", + "ror_ids": [ + "https://ror.org/02mdxv534" + ] + }, + { + "affiliation": "School of Architecture and Art Design, Hebei University of Technology, Tianjin, China", + "ror_ids": [ + "https://ror.org/018hded08" + ] + }, + { + "affiliation": "IRCCS Ospedale Policlinico San Martino, Genova, Italy", + "ror_ids": [ + "https://ror.org/04d7es448" + ] + }, + { + "affiliation": "Medical Laboratory Technology Department, College of Applied Medical Sciences, Jazan University, Jazan, Saudi Arabia", + "ror_ids": [ + "https://ror.org/02bjnq803" + ] + }, + { + "affiliation": "Department of Radiological Technology, Radiological Diagnosis, National Cancer Center Hospital, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/03rm3gk43" + ] + }, + { + "affiliation": "School of Computer Science, Academic College of Tel-Aviv Yaffo, Tel Aviv, Israel", + "ror_ids": [ + "https://ror.org/04cg6c004" + ] + }, + { + "affiliation": "Department of Clinical Pharmacology and Toxicology, University Hospital Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/01462r250" + ] + }, + { + "affiliation": "Henan University of Technology, Zhengzhou, Henan, China", + "ror_ids": [ + "https://ror.org/05sbgwt55" + ] + }, + { + "affiliation": "An-Najah National University, Nablus, Palestine", + "ror_ids": [ + "https://ror.org/0046mja08" + ] + }, + { + "affiliation": "School of Artificial Intelligence and Big Data, Hefei University, Hefei, Anhui, China", + "ror_ids": [ + "https://ror.org/01f5rdf64" + ] + }, + { + "affiliation": "Department of Psychological & Brain Sciences, Boston University, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/05qwgg493" + ] + }, + { + "affiliation": "Department of Urology, Policlinico San Martino Hospital, University of Genova, Genova, Italy", + "ror_ids": [ + "https://ror.org/0107c5v14", + "https://ror.org/04d7es448" + ] + }, + { + "affiliation": "University of Nova Gorica, Vipava, Slovenia", + "ror_ids": [ + "https://ror.org/00mw0tw28" + ] + }, + { + "affiliation": "Department of Chemistry, Washington University in St. Louis, St. Louis, MO, USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Department of Thoracic Surgery, Suzhou Kowloon Hospital, Shanghai Jiao Tong University School of Medicine, Suzhou, China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/00kkxne40" + ] + }, + { + "affiliation": "Department of Physiology, Yong Loo Lin School of Medicine, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Service d’Immunologie Clinique, CHU Saint-Louis, Université de Paris, Paris, France", + "ror_ids": [ + "https://ror.org/05f82e368" + ] + }, + { + "affiliation": "School of Nursing, McMaster University, Hamilton, ON, Canada", + "ror_ids": [ + "https://ror.org/02fa3aq29" + ] + }, + { + "affiliation": "Departamento de Ingeniería Eléctrica, Facultad de Ingeniería, Universidad de Antioquia (UdeA), Medellín, Colombia", + "ror_ids": [ + "https://ror.org/03bp5hc83" + ] + }, + { + "affiliation": "School of Mathematics, University of Bristol, Bristol, UK", + "ror_ids": [ + "https://ror.org/0524sp257" + ] + }, + { + "affiliation": "The Key Laboratory of Big Data Intelligent Computing of Zhejiang Province, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Diagnostic and Interventional Radiology, University Hospital Marburg, Philipps-University Marburg, Marburg, Germany", + "ror_ids": [ + "https://ror.org/01rdrb571" + ] + }, + { + "affiliation": "MOE International Joint Research Laboratory on Synthetic Biology and Medicines, School of Biology and Biological Engineering, South China University of Technology, Guangzhou, China", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Glorious Sun School of Business & Management, Donghua University, Shanghai, China", + "ror_ids": [ + "https://ror.org/035psfh38" + ] + }, + { + "affiliation": "Department of Pathology and Laboratory Medicine, Larner College of Medicine, University of Vermont, Burlington, VT, USA", + "ror_ids": [ + "https://ror.org/0155zta11" + ] + }, + { + "affiliation": "Department of Health Science, Global Health, University Medical Center Groningen, Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/03cv38k47" + ] + }, + { + "affiliation": "All-Russia Research Institute for Agricultural Microbiology, Petersburg, Russia", + "ror_ids": [ + "https://ror.org/01f02ww36" + ] + }, + { + "affiliation": "Brain Tumor Center at Siteman Cancer Center, Washington University School of Medicine, St. Louis, MO, USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "New Children’s Hospital and Clinical Nutrition Unit, Internal Medicine and Rehabilitation, University of Helsinki and Helsinki University Hospital, Helsinki, Finland", + "ror_ids": [ + "https://ror.org/02e8hzf44", + "https://ror.org/040af2s02" + ] + }, + { + "affiliation": "Centro de Física Aplicada y Tecnología Avanzada, Universidad Nacional Autónoma de México, Juriquilla, Querétaro, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "Mechanical Engineering Faculty, VIT University, Vellore, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/00qzypv28" + ] + }, + { + "affiliation": "Theoretical Computer Science Group, Goethe-Universität Frankfurt, Frankfurt, Germany", + "ror_ids": [ + "https://ror.org/04cvxnb49" + ] + }, + { + "affiliation": "Faculty of Science, Academic Assembly, University of Toyama, Toyama, Toyama, Japan", + "ror_ids": [ + "https://ror.org/0445phv87" + ] + }, + { + "affiliation": "Department of Plant Pathology, University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Wellcome Centre for Integrative Neuroimaging, University of Oxford, Oxford, United Kingdom", + "ror_ids": [ + "https://ror.org/052gg0110", + "https://ror.org/0172mzb45" + ] + }, + { + "affiliation": "Department of Tissue Engineering and Applied cell Sciences, School of Medicine ,Semnan University of Medical Science, Semnan, Iran", + "ror_ids": [ + "https://ror.org/05y44as61" + ] + }, + { + "affiliation": "Centre for Learning Analytics, Faculty of Information Technology, Monash University, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/02bfwt286" + ] + }, + { + "affiliation": "Department of Computer Science & Engineering, Indian Institute of Information Technology Bhagalpur, Bhagalpur, Bihar, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Environmental Health Engineering, School of Health, Ahvaz Jundishapur University of Medical Sciences, Ahvaz, Iran", + "ror_ids": [ + "https://ror.org/01rws6r75" + ] + }, + { + "affiliation": "Department of Physics, Central Institute of Technology Kokrajhar (Deemed to be University, MoE, Govt. of India), Kokrajhar, Assam, India", + "ror_ids": [ + "https://ror.org/0329af416" + ] + }, + { + "affiliation": "Institute for Genetics, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "College of Humanities, Xi’an Shiyou University, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/040c7js64" + ] + }, + { + "affiliation": "Human Sciences Research Council, HSRC Building, Pretoria, South Africa", + "ror_ids": [ + "https://ror.org/056206b04" + ] + }, + { + "affiliation": "College of Animal Science and Technology, Northwest A&F University, Yangling, China", + "ror_ids": [ + "https://ror.org/0051rme32" + ] + }, + { + "affiliation": "Yildiz Technical University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/0547yzj13" + ] + }, + { + "affiliation": "Indian Council of Forestry Research and Education (ICFRE), Dehra Dun, India", + "ror_ids": [ + "https://ror.org/04r2bgz73" + ] + }, + { + "affiliation": "State and Local Joint Engineering Laboratory for Novel Functional Polymeric Materials, College of Chemistry, Chemical Engineering and Materials Science, Soochow University, Suzhou, China", + "ror_ids": [ + "https://ror.org/05t8y2r12" + ] + }, + { + "affiliation": "Department of Urology, Center for Reproductive Medicine, Peking University Third Hospital, Beijing, China", + "ror_ids": [ + "https://ror.org/04wwqze12" + ] + }, + { + "affiliation": "Stark Neurosciences Research Institute, Indiana University School of Medicine, Indianapolis, IN, USA", + "ror_ids": [ + "https://ror.org/02ets8c94" + ] + }, + { + "affiliation": "Student Research Committee, School of Medicine, Shahroud University of Medical Sciences, Shahroud, Iran", + "ror_ids": [ + "https://ror.org/023crty50" + ] + }, + { + "affiliation": "Department of Medical Imaging and Image-guided Therapy, Sun Yat-Sen University Cancer Center, State Key Laboratory of Oncology in South China, Collaborative Innovation Center for Cancer Medicine, Guangzhou, China", + "ror_ids": [ + "https://ror.org/0400g8r85", + "https://ror.org/04dn2ax39" + ] + }, + { + "affiliation": "Tetrad Graduate Program, University of California, San Francisco, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Department of Epidemiology and Biostatistics, University of California, San Francisco School of Medicine, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Department of Mathematics, Amity School of Applied Sciences, Amity University Haryana, Gurugram, Manesar, India", + "ror_ids": [ + "https://ror.org/02n9z0v62" + ] + }, + { + "affiliation": "Department of Anaesthesia and Perioperative Care, Division of Critical Care Medicine, University of California San Francisco, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Purdue University Northwest, Hammond, IN, USA", + "ror_ids": [ + "https://ror.org/04keq6987" + ] + }, + { + "affiliation": "National Demonstration Center for Experimental Mechanical and Electrical Engineering Education (Tianjin University of Technology), Tianjin, China", + "ror_ids": [ + "https://ror.org/00zbe0w13" + ] + }, + { + "affiliation": "Psychology and Counseling Department, An-Najah National University, Nablus, Palestine", + "ror_ids": [ + "https://ror.org/0046mja08" + ] + }, + { + "affiliation": "Chongqing Key Laboratory of Child Infection and Immunity, Ministry of Education Key Laboratory of Child Development and Disorders, National Clinical Research Center for Child Health and Disorders, China International Science and Technology Cooperation Base of Child Development and Critical Disorders, Children’s Hospital of Chongqing Medical University, , China", + "ror_ids": [ + "https://ror.org/05pz4ws32", + "https://ror.org/00bsdxt65" + ] + }, + { + "affiliation": "Research and Study Group in Clinical Simulation and Obstetric Practices (GPESPO), School of Arts, Sciences and Humanities of University of Sao Paulo, São Paulo, SP, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Chemistry, Annamalai University, Tamil Nadu, Annamalainagar, India", + "ror_ids": [ + "https://ror.org/01x24z140" + ] + }, + { + "affiliation": "East Suffolk and North Essex NHS Foundation Trust, Essex, UK", + "ror_ids": [ + "https://ror.org/019g08z42" + ] + }, + { + "affiliation": "Department of Sciences, Nirma University, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/05qkq7x38" + ] + }, + { + "affiliation": "Department of Water Engineering, School of Agriculture, Shiraz University, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/028qtbk54" + ] + }, + { + "affiliation": "Osmaniye Korkut Ata University, Duzici Vocational High School, Motor Vehicles and Transport Technology, Osmaniye, Türkiye", + "ror_ids": [ + "https://ror.org/03h8sa373" + ] + }, + { + "affiliation": "Med-X Engineering Center for Medical Equipment and Technology, School of Biomedical Engineering, Shanghai Jiao Tong University, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Department of Clinical Engineering, Otemae Hospital, Osaka, Japan", + "ror_ids": [ + "https://ror.org/05m7r3n78" + ] + }, + { + "affiliation": "Department of Product Design, Sanming University, Sanming, Fujian, China", + "ror_ids": [ + "https://ror.org/044pany34" + ] + }, + { + "affiliation": "Institute of Basic and Applied Sciences, Faculty of Engineering, Arab Academy for Science, Technology and Maritime Transport, Alexandria, Egypt", + "ror_ids": [ + "https://ror.org/0004vyj87" + ] + }, + { + "affiliation": "Department of Environmental Science, Sri Pratap College, Cluster University Srinagar, Srinagar, Kashmir, India", + "ror_ids": [ + "https://ror.org/0127tex41" + ] + }, + { + "affiliation": "Department of Mathematics, University of Illinois, Urbana, IL, USA", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Institute of Environmental Sciences, Jagiellonian University, Kraków, Poland", + "ror_ids": [ + "https://ror.org/03bqmcz70" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Jülich-UNIST Joint Leading Institute for Advanced Energy Research, Ulsan National Institute of Science and Technology (UNIST), Ulsan, Republic of Korea", + "ror_ids": [ + "https://ror.org/017cjz748" + ] + }, + { + "affiliation": "The Second Affiliated Hospital of Harbin Medical University, Harbin, China", + "ror_ids": [ + "https://ror.org/03s8txj32" + ] + }, + { + "affiliation": "University of Applied Sciences & Arts Hannover, Hannover, Germany", + "ror_ids": [ + "https://ror.org/03m2kj587" + ] + }, + { + "affiliation": "Biostatistics and Research Method Center, University Hospital of Liege, Liege, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "State Key Laboratory of Southwestern Chinese Medicine Resources, Innovative Institute of Chinese Medicine and Pharmacy, Chengdu University of Traditional Chinese Medicine, Chengdu, China", + "ror_ids": [ + "https://ror.org/00pcrz470" + ] + }, + { + "affiliation": "School of Nuclear Science and Technology, University of Chinese Academy of Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/05qbk4x57" + ] + }, + { + "affiliation": "Sorbonne Université, CNRS IMJ-PRG, Paris Cedex 05, France", + "ror_ids": [ + "https://ror.org/02en5vm52" + ] + }, + { + "affiliation": "Department of Epidemiology and Medical Statistics, College of Medinec, University of Ibadan, Ibadan, Nigeria", + "ror_ids": [ + "https://ror.org/03wx2rr30" + ] + }, + { + "affiliation": "Department of Pathology and Laboratory Medicine, Warren Alpert Medical School & Legorreta Cancer Center, Brown University, Providence, USA", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "Division of Genetics and Cell Biology, San Raffaele Scientific Institute, Milan, Italy", + "ror_ids": [ + "https://ror.org/039zxt351" + ] + }, + { + "affiliation": "School of Mathematics, East China University of Science and Technology, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01vyrm377" + ] + }, + { + "affiliation": "Department of Electrical Engineering, Pandit Deendayal Energy University, Gandhinagar, Gujarat, India", + "ror_ids": [ + "https://ror.org/02nsv5p42" + ] + }, + { + "affiliation": "Dalian Ocean University, Dalian, Liaoning, China", + "ror_ids": [ + "https://ror.org/0523b6g79" + ] + }, + { + "affiliation": "National Centre for Microbial Resource (NCMR), National Centre for Cell Science, Pune, Maharashtra, India", + "ror_ids": [ + "https://ror.org/01bp81r18" + ] + }, + { + "affiliation": "School of Chemistry, University of Nottingham, University Park, Nottingham, UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Health Evaluation, Technology, and Economics Group, Federal University of Espírito Santo, Alegre, Brazil", + "ror_ids": [ + "https://ror.org/05sxf4h28" + ] + }, + { + "affiliation": "Università della Basilicata, Potenza, Italy", + "ror_ids": [ + "https://ror.org/03tc05689" + ] + }, + { + "affiliation": "Institute of Horticultural Biotechnology, Fujian Agriculture and Forestry University, Fuzhou, China", + "ror_ids": [ + "https://ror.org/04kx2sy84" + ] + }, + { + "affiliation": "Novosibirsk State Technical University (NSTU), Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/01b2f6h61" + ] + }, + { + "affiliation": "Princess Margaret Cancer Centre, University Health Network, Toronto, Canada", + "ror_ids": [ + "https://ror.org/042xt5161", + "https://ror.org/03zayce58" + ] + }, + { + "affiliation": "Department of Engineering Sciences, Izmir Katip Celebi University, Izmir, Turkey", + "ror_ids": [ + "https://ror.org/024nx4843" + ] + }, + { + "affiliation": "Department of Health Services Research and Policy, London School of Hygiene and Tropical Medicine, London, UK", + "ror_ids": [ + "https://ror.org/00a0jsq62" + ] + }, + { + "affiliation": "Institut für Technische Optik, University of Stuttgart, Stuttgart, Germany", + "ror_ids": [ + "https://ror.org/04vnq7t77" + ] + }, + { + "affiliation": "Brisol Myers Squibb, Montreal, Québec, Canada", + "ror_ids": [ + "https://ror.org/01r00g076" + ] + }, + { + "affiliation": "Department of Pathology, University Hospital of Pitié-salpêtrière-Charles Foix, Paris, France", + "ror_ids": [ + "https://ror.org/02mh9a093" + ] + }, + { + "affiliation": "Réanimation Médicale, CHU Rennes, Rennes, France", + "ror_ids": [ + "https://ror.org/05qec5a53" + ] + }, + { + "affiliation": "Dokuz Eylül University, Faculty of Engineering, Department of Metallurgical and Materials Engineering, Buca, İzmir, Turkey", + "ror_ids": [ + "https://ror.org/00dbd8b73" + ] + }, + { + "affiliation": "Department of Biology (Biotechnology), Faculty of Science, Hacettepe University, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/04kwvgz42" + ] + }, + { + "affiliation": "Department of Business and Management Science, NHH Norwegian School of Economics, Bergen, Norway", + "ror_ids": [ + "https://ror.org/04v53s997" + ] + }, + { + "affiliation": "School of Rural Medicine, Charles Sturt University, Orange, NSW, Australia", + "ror_ids": [ + "https://ror.org/00wfvh315" + ] + }, + { + "affiliation": "Green Technology Group, Faculty of Science, Alexandria University, Alexandria, Egypt", + "ror_ids": [ + "https://ror.org/00mzz1w90" + ] + }, + { + "affiliation": "Surgical Pathology Department, Hospital Clínico San Carlos, IdiSSC, Universidad Complutense de Madrid, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045", + "https://ror.org/04d0ybj29" + ] + }, + { + "affiliation": "Service of Obstetrics and Prenatal Medecine, Universitair Ziekenhuis Brussel, Brussels, Belgium", + "ror_ids": [ + "https://ror.org/038f7y939" + ] + }, + { + "affiliation": "College of Ecology and Environment, Xinjiang University, Urumqi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/059gw8r13" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Faculty of Engineering, Shahid Chamran University of Ahvaz, Ahvaz, Iran", + "ror_ids": [ + "https://ror.org/01k3mbs15" + ] + }, + { + "affiliation": "State Key Laboratory of Mountain Bridge and Tunnel Engineering, Chongqing Jiaotong University, Chongqing, P.R. China", + "ror_ids": [ + "https://ror.org/01t001k65" + ] + }, + { + "affiliation": "Department of Software Engineering, CITIC, University of Granada, Granada, Spain", + "ror_ids": [ + "https://ror.org/04njjy449" + ] + }, + { + "affiliation": "Key Laboratory of Tumor Microenvironment and Immune Therapy of Zhejiang Province, Second Affiliated Hospital, Zhejiang University School of Medicine, Hangzhou, P.R. China", + "ror_ids": [ + "https://ror.org/059cjpv64", + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "The State Key Lab of Explosion Science and Technology, Beijing Institute of Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "Klinik für Neurologie, Friedrich-Ebert-Krankenhaus Neumünster GmbH, Neumünster, Deutschland", + "ror_ids": [ + "https://ror.org/0257syp95" + ] + }, + { + "affiliation": "Division of Public Health Sciences, Department of Surgery, Washington University School of Medicine, Saint Louis, MO, USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Departiment of Culture and Languages, University of Modena and Reggio Emilia, Modena, Italy", + "ror_ids": [ + "https://ror.org/02d4c4y02" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, Maternal and Perinatal Care Center, Seirei Hamamatsu General Hospital, Hamamatsu, Japan", + "ror_ids": [ + "https://ror.org/036pfyf12" + ] + }, + { + "affiliation": "Department of English, The High School Affiliated to Jiangxi Normal University, Jiangxi, China", + "ror_ids": [ + "https://ror.org/05nkgk822" + ] + }, + { + "affiliation": "University of Greenwich, London, UK", + "ror_ids": [ + "https://ror.org/00bmj0a71" + ] + }, + { + "affiliation": "Department of CS & IT (MCA), Central University of Haryana, Jant, India", + "ror_ids": [ + "https://ror.org/03mtwkv54" + ] + }, + { + "affiliation": "Department of Ophthalmology, Asan Medical Center, Seoul, Korea", + "ror_ids": [ + "https://ror.org/03s5q0090" + ] + }, + { + "affiliation": "College of Horticulture, Odisha University of Agriculture and Technology, Chiplima, India", + "ror_ids": [ + "https://ror.org/03tg0z446" + ] + }, + { + "affiliation": "Dental Research Center, School of dentistry, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Black Hole Initiative at Harvard University, Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Weierstrass Institute for Applied Analysis and Stochastics (WIAS), Berlin, Germany", + "ror_ids": [ + "https://ror.org/00h1x4t21" + ] + }, + { + "affiliation": "Division of Transfusion Medicine, Cell Therapeutics and Haemostaseology, University Hospital, Ludwig-Maximilians-Universität München, Munich, Germany", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "Department of Intensive Care, School of Medicine, University of São Paulo, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Leibniz Institute of Freshwater Ecology and Inland Fisheries, Berlin, Germany", + "ror_ids": [ + "https://ror.org/01nftxb06" + ] + }, + { + "affiliation": "McGill University Health Centre, Montreal, QC, Canada", + "ror_ids": [ + "https://ror.org/04cpxjv19" + ] + }, + { + "affiliation": "Nano-Biotech Research Group, Post Graduate and Research, Department of Biotechnology & Microbiology National College Trichy, Tiruchirappalli, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/03tjsyq23" + ] + }, + { + "affiliation": "Department of Medicine, Surgery and Neurosciences, Rheumatology Unit, University of Siena, Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "Department of Biological Models, Institute of Biochemistry, Life Science Center, Vilnius University, Vilnius, Lithuania", + "ror_ids": [ + "https://ror.org/03nadee84" + ] + }, + { + "affiliation": "Hitit University Faculty of Science and Letters, Department of Anthropology, Çorum, Türkiye", + "ror_ids": [ + "https://ror.org/01x8m3269" + ] + }, + { + "affiliation": "Fergana State University, Fergana, Uzbekistan", + "ror_ids": [ + "https://ror.org/0190ze463" + ] + }, + { + "affiliation": "University of South China, Hengyang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03mqfn238" + ] + }, + { + "affiliation": "Department of Applied Sciences, Haldia Institute of Technology, Purba Midnapore, West Bengal, India", + "ror_ids": [ + "https://ror.org/0211bs523" + ] + }, + { + "affiliation": "Intelligent Manufacturing Institute of HFUT, Hefei, China", + "ror_ids": [ + "https://ror.org/02czkny70" + ] + }, + { + "affiliation": "National Gastroenterology and Hepatology Program, Veterans Health Administration, Department of Veterans Affairs, Washington, DC, USA", + "ror_ids": [ + "https://ror.org/05eq41471", + "https://ror.org/05rsv9s98" + ] + }, + { + "affiliation": "Unidad Territorial Infección Nosocomial y Política Antibiòtica (UTIN), Hospital Universitari Arnau de Vilanova, Lleida, Spain", + "ror_ids": [ + "https://ror.org/01p3tpn79" + ] + }, + { + "affiliation": "Department of Applied Physics, Science for Life Laboratory, KTH Royal Institute of Technology, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/026vcq606", + "https://ror.org/04ev03g22" + ] + }, + { + "affiliation": "High Energy Physics Division, Argonne National Laboratory, Argonne, IL, United States of America", + "ror_ids": [ + "https://ror.org/05gvnxz63" + ] + }, + { + "affiliation": "University of Groningen, CAMA and CIRANO, Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Biotechnology, Faculty of Advanced Science and Technology, Tehran Medical Sciences, Islamic Azad University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01kzn7k21" + ] + }, + { + "affiliation": "Department of Cardiology, Renji Hospital, School of Medicine, Shanghai Jiaotong University, Shanghai, China", + "ror_ids": [ + "https://ror.org/03ypbx660", + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Trauma and Transfusion Medicine Research Center, Department of Surgery, University of Pittsburgh Medical Center, Pittsburgh, PA, USA", + "ror_ids": [ + "https://ror.org/04ehecz88" + ] + }, + { + "affiliation": "Department of Thoracic Surgery and Lung Transplantation, Hôpital Foch, Suresnes, France", + "ror_ids": [ + "https://ror.org/058td2q88" + ] + }, + { + "affiliation": "Reproductive and Maternal Health Research Group, Public Health Department, Institute of Tropical Medicine Antwerp, Antwerp, Belgium", + "ror_ids": [ + "https://ror.org/03xq4x896" + ] + }, + { + "affiliation": "Applied Artificial Intelligence Research Centre, Computer Engineering Department, Near East University, Lefkosa, Northern Cyprus, Turkey", + "ror_ids": [ + "https://ror.org/02x8svs93" + ] + }, + { + "affiliation": "National Clinical Research Center for Geriatric Disorders, Xiangya Hospital, Changsha, China", + "ror_ids": [ + "https://ror.org/05c1yfj14" + ] + }, + { + "affiliation": "Department of Advanced Biomedical Sciences, Federico II University Hospital, Naples, Italy", + "ror_ids": [ + "https://ror.org/02jr6tp70" + ] + }, + { + "affiliation": "Department of Mathematics, Indian Institute of Technology Guwahati, Guwahati, India", + "ror_ids": [ + "https://ror.org/0022nd079" + ] + }, + { + "affiliation": "Nantes Université, CHU Nantes, INSERM, Center for Research in Transplantation and Translational Immunology, UMR 1064, Nantes, France", + "ror_ids": [ + "https://ror.org/03gnr7b55", + "https://ror.org/01165k395" + ] + }, + { + "affiliation": "Instituto de Informática, Universidad Austral de Chile, Valdivia, Chile", + "ror_ids": [ + "https://ror.org/029ycp228" + ] + }, + { + "affiliation": "Sustainable Thermal Energy Systems Laboratory (STESL), Department of Mechanical Engineering, National Institute of Technology Rourkela, Rourkela, Odisha, India", + "ror_ids": [ + "https://ror.org/011gmn932" + ] + }, + { + "affiliation": "International Center for Climate and Environment Sciences, Institute of Atmospheric Physics, Chinese Academy of Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/0424h4e32" + ] + }, + { + "affiliation": "Department of Gastroenterology and Nutrition, Nutrition Support and Intestinal Failure Team, Birmingham Women’s and Children’s Hospital, Birmingham, West Midlands, UK", + "ror_ids": [ + "https://ror.org/017k80q27" + ] + }, + { + "affiliation": "Faculdade de Medicina, Centro de Ciências Biológicas e da Saúde, Universidade Federal do Maranhão, São Luís, MA, Brazil", + "ror_ids": [ + "https://ror.org/043fhe951" + ] + }, + { + "affiliation": "Cardiac Surgery, Handa City Hospital, Aichi, Japan", + "ror_ids": [ + "https://ror.org/037a76178" + ] + }, + { + "affiliation": "Department of Electronics and Communication Engineering, SRM Institute of Science and Technology, Delhi NCR Campus, Ghaziabad, India", + "ror_ids": [ + "https://ror.org/050113w36" + ] + }, + { + "affiliation": "Institute of Water Chemistry, Chair of Analytical Chemistry and Water Chemistry, School of Natural Science, Technical University of Munich, Garching, Germany", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Chair of Materials Technology, Ruhr-University Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Bank of Italy, Currency Circulation Management Directorate, Rome, Italy", + "ror_ids": [ + "https://ror.org/03v2nbx43" + ] + }, + { + "affiliation": "College of Education, Department of Educational Administration and Foundations, Yarmouk University, Irbid, Jordan", + "ror_ids": [ + "https://ror.org/004mbaj56" + ] + }, + { + "affiliation": "Rzeszow University of Technology, Rzeszów, Poland", + "ror_ids": [ + "https://ror.org/056xse072" + ] + }, + { + "affiliation": "Department of Organic Chemistry, Faculty of Chemistry, Bu-Ali Sina University, Hamedan, Iran", + "ror_ids": [ + "https://ror.org/04ka8rx28" + ] + }, + { + "affiliation": "Department of Mathematics, Kwangwoon University, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/02e9zc863" + ] + }, + { + "affiliation": "Department of Comparative Medicine, Stanford University, Stanford, CA, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "School of Chemical Engineering, Guizhou Minzu University, Guiyang, Guizhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00qm4t918" + ] + }, + { + "affiliation": "Faculty of Clinical Medicine, Zhejiang University School of Medicine, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Intensive Care, Yuhuan Second People’s Hospital of Health Community Group, Taizhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/042g3qa69" + ] + }, + { + "affiliation": "Department of Pathology, Hidaka Hospital, Takasaki City, Gunma, Japan", + "ror_ids": [ + "https://ror.org/01cxg6q60" + ] + }, + { + "affiliation": "The Ohio State University, Educational Studies, Columbus, OH, USA", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Department of Aquaculture, Doğanşehir V.K. Vocational School, Malatya Turgut Özal University, Malatya, Turkey", + "ror_ids": [ + "https://ror.org/01v2xem26" + ] + }, + { + "affiliation": "Australian Centre for Water and Environmental Biotechnology (ACWEB), Faculty of Engineering, Architecture and Information Technology, University of Queensland, Brisbane, Australia", + "ror_ids": [ + "https://ror.org/00rqy9422" + ] + }, + { + "affiliation": "Turku PET Centre, University of Turku and Turku University Hospital, Turku, Finland", + "ror_ids": [ + "https://ror.org/05vghhr25", + "https://ror.org/05dbzj528", + "https://ror.org/01761e930" + ] + }, + { + "affiliation": "Università degli Studi di Milano-Bicocca & INFN Sezione di Milano-Bicocca, Milano, Italy", + "ror_ids": [ + "https://ror.org/01ynf4891", + "https://ror.org/03xejxm22" + ] + }, + { + "affiliation": "Department of Pathology, Rampurhat Government Medical College, Rampurhat, West Bengal, India", + "ror_ids": [ + "https://ror.org/04aznd361" + ] + }, + { + "affiliation": "College of Nursing and Health Innovation, The University of Texas at Arlington, Arlington, TX, USA", + "ror_ids": [ + "https://ror.org/019kgqr73" + ] + }, + { + "affiliation": "University College Venlo, Faculty of Science and Engineering, Maastricht University, Maastricht, The Netherlands", + "ror_ids": [ + "https://ror.org/02jz4aj89" + ] + }, + { + "affiliation": "Thomas Francis School of Public Health, University of Michigan, Raleigh, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "DeCA, Department of Communication and Art, University of Aveiro, Aveiro, Portugal", + "ror_ids": [ + "https://ror.org/00nt41z93" + ] + }, + { + "affiliation": "Research Institute for Sustainable Humanosphere, Kyoto University, Gokasho, Uji, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Dipartimento di Fisica e Astronomia dell’Università and Sezione INFN, Bologna, Italy", + "ror_ids": [ + "https://ror.org/01111rn36", + "https://ror.org/04j0x0h93" + ] + }, + { + "affiliation": "Shanghai Children’s Medical Center, School of Medicine, Shanghai Jiao Tong University, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Ulm University, Ulm, Germany", + "ror_ids": [ + "https://ror.org/032000t02" + ] + }, + { + "affiliation": "Third Faculty of Medicine, Charles University in Prague, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/024d6js02" + ] + }, + { + "affiliation": "School of Mathematics and Statistics, Shandong University of Technology, Zibo, Shandong, China", + "ror_ids": [ + "https://ror.org/02mr3ar13" + ] + }, + { + "affiliation": "Department of Infectious, Tropical Diseases and Microbiology, IRCCS Sacro Cuore Don Calabria Hospital, Verona, Italy", + "ror_ids": [ + "https://ror.org/010hq5p48" + ] + }, + { + "affiliation": "Department of IT and Computer Engineering, Urmia University of Technology, Urmia, Iran", + "ror_ids": [ + "https://ror.org/02v319z25" + ] + }, + { + "affiliation": "Departamento Traumatología, Complejo Asistencial Dr. Sótero del Río, Santiago, Chile", + "ror_ids": [ + "https://ror.org/049jkjr31" + ] + }, + { + "affiliation": "Pediatric Cardiology, Mount Sinai Kravis Children’s Hospital, New York, NY, USA", + "ror_ids": [ + "https://ror.org/01zkyz108" + ] + }, + { + "affiliation": "Univ. Bordeaux, CNRS, MCC, PACEA, UMR 5199, Pessac, France", + "ror_ids": [ + "https://ror.org/057qpr032" + ] + }, + { + "affiliation": "Department of Humanist Chaplaincy Studies for a Plural Society, University of Humanistic Studies, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/04w5ec154" + ] + }, + { + "affiliation": "Hunan University of Arts and Science, Changde, China", + "ror_ids": [ + "https://ror.org/01ggnn306" + ] + }, + { + "affiliation": "Research School of Biology, Australian National University, Canberra, ACT, Australia", + "ror_ids": [ + "https://ror.org/019wvm592" + ] + }, + { + "affiliation": "Deptartment of Ophthalmology, Wenzhou Medical University, Wenzhou, China", + "ror_ids": [ + "https://ror.org/00rd5t069" + ] + }, + { + "affiliation": "NYS Psychiatric Institute and Department of Psychiatry, Vagelos College of Physicians & Surgeons of Columbia University, New York, NY, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "Saw Swee Hock School of Public Health, The National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Pattern Analysis and Learning Group, Heidelberg University Hospital, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/013czdx64" + ] + }, + { + "affiliation": "The Affiliated Traditional Chinese Medicine Hospital of Guangzhou Medical University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/00zat6v61" + ] + }, + { + "affiliation": "Departments of Ophthalmology and Neurology, University of Pennsylvania, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Department of Ophthalmology, Seoul Metropolitan Government–Seoul National University Boramae Medical Center, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/002wfgr58", + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Department of Dermatology and Allergy, Comprehensive Allergy Center, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Department of Microbiology, Federal University of Viçosa, Viçosa, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0409dgb37" + ] + }, + { + "affiliation": "Department of Environmental and Biological Chemistry, Chungbuk National University Cheongju, Chungbuk, Republic of Korea", + "ror_ids": [ + "https://ror.org/02wnxgj78" + ] + }, + { + "affiliation": "Genetics Department, Institute of Ophthalmology “Conde de Valenciana”, Mexico City, Mexico", + "ror_ids": [ + "https://ror.org/036awca68" + ] + }, + { + "affiliation": "IcatKnee, Hospital Universitari Dexeus – Universitat Autònoma de Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, National Institute of Technology, Meghalaya, India", + "ror_ids": [ + "https://ror.org/020vd6n84" + ] + }, + { + "affiliation": "Department of Chemical and Biological Engineering, Sookmyung Women’s University, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/00vvvt117" + ] + }, + { + "affiliation": "Key Laboratory of Cognition and Personality (Ministry of Education), Southwest University, Chongqing, China", + "ror_ids": [ + "https://ror.org/01kj4z117" + ] + }, + { + "affiliation": "Virus Facility, Research Animal Resource Center, Korea Institute of Science and Technology, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/05kzfa883" + ] + }, + { + "affiliation": "Department of Radiology, Massachusetts General Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Renewable Energy Development Unit in Arid Zones (UDERZA), University of El Oued, El Oued, Algeria", + "ror_ids": [ + "https://ror.org/05416s909" + ] + }, + { + "affiliation": "A.N. Bach Institute of Biochemistry, Moscow, Russia", + "ror_ids": [ + "https://ror.org/0009wsb17" + ] + }, + { + "affiliation": "Department of Energy Systems Engineering, School of Advanced Technology, Iran University of Science and Technology, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01jw2p796" + ] + }, + { + "affiliation": "Department of Mathematics, College of Basic Education, University of Raparin, Ranya, Kurdistan Region, Iraq", + "ror_ids": [ + "https://ror.org/00fs9wb06" + ] + }, + { + "affiliation": "Urban and Environmental Engineering Research Unit, Université de Liège, Liège, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "Department of Biotechnology, PSG College of Technology, Coimbatore, India", + "ror_ids": [ + "https://ror.org/03tjsyq23" + ] + }, + { + "affiliation": "Department of Pedagogy and Methods of Primary Education, Nerungri Technical Institute (Branch) of M.K. Ammosov North-Eastern Federal University, Nerungri, Russia", + "ror_ids": [ + "https://ror.org/02p6aa271" + ] + }, + { + "affiliation": "Mechanical Engineering Department, Presidency University, Itgalpura, Bangalore, India", + "ror_ids": [ + "https://ror.org/04xgbph11" + ] + }, + { + "affiliation": "R&D Hydraulic Laboratory, Vattenfall AB, Älvkarleby, Sweden", + "ror_ids": [ + "https://ror.org/028v4fg64" + ] + }, + { + "affiliation": "Department of Psychology, Education and Child Studies, Erasmus University Rotterdam, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/057w15z03" + ] + }, + { + "affiliation": "Telecommunications Engineering Department, Yarmouk University, Irbid, Jordan", + "ror_ids": [ + "https://ror.org/004mbaj56" + ] + }, + { + "affiliation": "Philosophisch-Sozialwissenschaftliche Fakultät, Raum: 2059, Gebäude D, Universität Augsburg, Augsburg, Deutschland", + "ror_ids": [ + "https://ror.org/03p14d497" + ] + }, + { + "affiliation": "Department of Control Engineering and Signaling, School of Railway Engineering, Iran University of Science and Technology (IUST), Tehran, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01jw2p796" + ] + }, + { + "affiliation": "Institut Teknologi Bandung, Bandung, Indonesia", + "ror_ids": [ + "https://ror.org/00apj8t60" + ] + }, + { + "affiliation": "German Center for Neurodegenerative Diseases (DZNE), partner site Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/043j0f473" + ] + }, + { + "affiliation": "University of Health Sciences, Gulhane Institute of Health Sciences, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "Fakultät für Tourismus, Hochschule München, München, Deutschland", + "ror_ids": [ + "https://ror.org/012k1v959" + ] + }, + { + "affiliation": "Children’s Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/0282qcz50" + ] + }, + { + "affiliation": "Diabetes Center, the Second Xiangya Hospital, Institute of Metabolism and Endocrinology, Central South University, Changsha, China", + "ror_ids": [ + "https://ror.org/00f1zfq44", + "https://ror.org/053v2gh09" + ] + }, + { + "affiliation": "Department of Hematology/Oncology, Saitama Children’s Medical Center, Saitama, Japan", + "ror_ids": [ + "https://ror.org/00smq1v26" + ] + }, + { + "affiliation": "Clinical Medical College, Ningxia Medical University, Yinchuan, China", + "ror_ids": [ + "https://ror.org/02h8a1848" + ] + }, + { + "affiliation": "Department of Metallurgical, Materials and Biomedical Engineering, University of Texas, El Paso, TX, USA", + "ror_ids": [ + "https://ror.org/04d5vba33" + ] + }, + { + "affiliation": "Department of Biotechnology, National Institute of Technology, Tadepalligudem, India", + "ror_ids": [ + "https://ror.org/03tjsyq23" + ] + }, + { + "affiliation": "Institute of Environment and Department of Biology, Florida International University, North Miami, FL, USA", + "ror_ids": [ + "https://ror.org/02gz6gg07" + ] + }, + { + "affiliation": "School of Material Science and Engineering, Nanjing University of Science and Technology, Nanjing, China", + "ror_ids": [ + "https://ror.org/00xp9wg62" + ] + }, + { + "affiliation": "Department of Statistics and Actuarial Science, University of Waterloo, Waterloo, ON, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "National Institute for Research and Development in Tourism, Bucharest, Romania", + "ror_ids": [ + "https://ror.org/008fkr426" + ] + }, + { + "affiliation": "Department of Primary Education, University of the Aegean, Rhodes, Greece", + "ror_ids": [ + "https://ror.org/03zsp3p94" + ] + }, + { + "affiliation": "Human Aging Research Institute and School of Life Science, Nanchang University, and Jiangxi Key Laboratory of Human Aging, Jiangxi, China", + "ror_ids": [ + "https://ror.org/042v6xz23" + ] + }, + { + "affiliation": "Janssen Research & Development, LLC, San Diego, CA, USA", + "ror_ids": [] + }, + { + "affiliation": "Department of Otorhinolaryngology-Head Neck Surgery, School of Medical Sciences, Universiti Sains Malaysia Health Campus, 16150 Kubang Kerian, Kelantan, Malaysia", + "ror_ids": [ + "https://ror.org/02rgb2k63" + ] + }, + { + "affiliation": "LC Campbell Cognitive Neurology Unit, Hurvitz Brain Sciences Program, Sunnybrook Research Institute, University of Toronto, Toronto, Ontario, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087", + "https://ror.org/05n0tzs53" + ] + }, + { + "affiliation": "Department of Computer Science, College of Computer Science and Information Technology, Jazan University, Jizan, Kingdom of Saudi Arabia", + "ror_ids": [ + "https://ror.org/02bjnq803" + ] + }, + { + "affiliation": "Department of Computer Science, Alagappa University, Karaikudi, India", + "ror_ids": [ + "https://ror.org/04ec9cc06" + ] + }, + { + "affiliation": "Helmholtz-Institute Münster, IEK-12, Forschungszentrum Jülich GmbH, Münster, Germany", + "ror_ids": [ + "https://ror.org/04ktat366", + "https://ror.org/02nv7yv05" + ] + }, + { + "affiliation": "EaRSLab—Earth Remote Sensing Laboratory, University of Évora, Évora, Portugal", + "ror_ids": [ + "https://ror.org/02gyps716" + ] + }, + { + "affiliation": "Université Paris Cité, UFR de Médecine, Paris, France", + "ror_ids": [ + "https://ror.org/05f82e368" + ] + }, + { + "affiliation": "Department of Human-Artificial Intelligence Interaction, Sungkyunkwan University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Environmental Management Laboratory, Mykolas Romeris University, Vilnius, Lithuania", + "ror_ids": [ + "https://ror.org/0052k0e03" + ] + }, + { + "affiliation": "Faculty of Medicine and Dentistry, University of Toronto, Toronto, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Faculty of Health Sciences, University of Beira Interior, Covilhã, Portugal", + "ror_ids": [ + "https://ror.org/03nf36p02" + ] + }, + { + "affiliation": "Embrapa Recursos Genéticos e Biotecnologia, Brasília, Brasil", + "ror_ids": [ + "https://ror.org/0482b5b22" + ] + }, + { + "affiliation": "Research Center for Food and Cosmetic Safety, College of Human Ecology, Chang Gung University of Science and Technology, Taoyuan, Taiwan", + "ror_ids": [ + "https://ror.org/009knm296" + ] + }, + { + "affiliation": "Department of Mathematics, Swansea University, Swansea, UK", + "ror_ids": [ + "https://ror.org/053fq8t95" + ] + }, + { + "affiliation": "Child and Adolescent Mental Health Odense, Mental Health Services in the Region of Southern Denmark, Odense C, Denmark", + "ror_ids": [ + "https://ror.org/0290a6k23" + ] + }, + { + "affiliation": "University of Sharjah, Sharjah, United Arab Emirates", + "ror_ids": [ + "https://ror.org/00engpz63" + ] + }, + { + "affiliation": "Department of Chemistry and Engineering Research Center of Advanced Rare-Earth Materials of Ministry of Education, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Cytel, Waltham, MA, USA", + "ror_ids": [ + "https://ror.org/01ftkxq60" + ] + }, + { + "affiliation": "Department of Computer Science, University of Oxford, Oxford, United Kingdom", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Clinic of Rheumatology and Clinical Immunology, University Hospital of Larissa, Larissa, Greece", + "ror_ids": [ + "https://ror.org/01s5dt366" + ] + }, + { + "affiliation": "Oncology Center, Yamaguchi University Hospital, Ube, Japan", + "ror_ids": [ + "https://ror.org/02dgmxb18" + ] + }, + { + "affiliation": "Institute of Physics and Department of Physics, Key Laboratory of Low Dimensional Quantum Structures and Quantum Control of Ministry of Education, Synergetic Innovation Center for Quantum Effects and Applications, Hunan Normal University, , China", + "ror_ids": [ + "https://ror.org/053w1zy07" + ] + }, + { + "affiliation": "Department of Cardiac Thoracic Vascular Sciences and Public Health, Public Health Section, University of Padua, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Department of Agroecology & Crop Production, Faculty of Agrobiology Food & Natural Resources, Czech University of Life Sciences, Prague, Prague 6, Suchdol, Czech Republic", + "ror_ids": [ + "https://ror.org/0415vcw02" + ] + }, + { + "affiliation": "School of Education, Communication and Society, King’s College London, London, UK", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "Department of Immunology and Microbiology, LEO Foundation Skin Immunology Research Center, University of Copenhagen, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/035b05819", + "https://ror.org/02rgsr590" + ] + }, + { + "affiliation": "Division of Infectious Diseases, Department of Medicine, Long School of Medicine, University of Texas Health Science Center San Antonio, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/02f6dcw23" + ] + }, + { + "affiliation": "Gujarat University, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/017f2w007" + ] + }, + { + "affiliation": "Bayerisches Staatsministerium des Innern, für Sport und Integration, München, Deutschland", + "ror_ids": [ + "https://ror.org/00d2xk240" + ] + }, + { + "affiliation": "BET Research Institute, Chung-Ang University, Anseong, Republic of Korea", + "ror_ids": [ + "https://ror.org/01r024a98" + ] + }, + { + "affiliation": "National Centre for Earth Observation, PML, Plymouth, UK", + "ror_ids": [ + "https://ror.org/0375jbm11" + ] + }, + { + "affiliation": "Institute of Forensic Medicine, Forensic Molecular Biology, Head of Department (R&T), University of Bern, Bern, Switzerland", + "ror_ids": [ + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "Department of Ceramic, Faculty of Fine Arts and Design, Inönü University, #N/A, #N/A, Turkey", + "ror_ids": [ + "https://ror.org/04asck240" + ] + }, + { + "affiliation": "Brandon University, Brandon, Canada", + "ror_ids": [ + "https://ror.org/02qp25a50" + ] + }, + { + "affiliation": "Department of Human Nutrition, Bahauddin Zakariya University, Multan, Pakistan", + "ror_ids": [ + "https://ror.org/05x817c41" + ] + }, + { + "affiliation": "School of Materials Science and Engineering, Shanghai Dianji University, Shanghai, China", + "ror_ids": [ + "https://ror.org/055fene14" + ] + }, + { + "affiliation": "Wuhan Center for Disease Control and Prevention, Wuhan, Hubei, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05t45gr77" + ] + }, + { + "affiliation": "Department of English Language and Literature, Faculty of Humanities and Social Sciences, Golestan University, Gorgan, Iran", + "ror_ids": [ + "https://ror.org/046nf9z89" + ] + }, + { + "affiliation": "Department of Thoracic and Vascular Surgery, University Hospital of Antwerp, Antwerp, Belgium", + "ror_ids": [ + "https://ror.org/008x57b05" + ] + }, + { + "affiliation": "Department of Otorhinolaryngology, 3rd Faculty of Medicine, Charles University and University Hospital Kralovske Vinohrady in Prague, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/04sg4ka71", + "https://ror.org/024d6js02" + ] + }, + { + "affiliation": "Department of Musculoskeletal Radiology, Royal Orthopaedic Hospital, Bristol Road South, Birmingham, UK", + "ror_ids": [ + "https://ror.org/03scbek41" + ] + }, + { + "affiliation": "Department of Clinical Science, Unversity of Bergen, Bergen, Norway", + "ror_ids": [ + "https://ror.org/03zga2b32" + ] + }, + { + "affiliation": "Production Engineering and Mechanical Design Department, Faculty of Engineering, Port Said University, Port Said, Egypt", + "ror_ids": [ + "https://ror.org/01vx5yq44" + ] + }, + { + "affiliation": "Department of Industrial Management, Faculty of Management and Accounting, Allameh Tabataba’i University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/02cc4gc68" + ] + }, + { + "affiliation": "Department of ENT, 2nd Faculty of Medicine, Charles University and Motol University Hospital in Prague, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/024d6js02" + ] + }, + { + "affiliation": "Institute of Urinary Surgery, Xijing Hospital, Fourth Military Medical, University, Xi’an, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00ms48f15", + "https://ror.org/05cqe9350" + ] + }, + { + "affiliation": "Department of Medicine, Vatche and Tamar Manoukian Division of Digestive Diseases, David Geffen School of Medicine, University of California Los Angeles, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Mathematics and Statistics, Louisiana Tech University, Ruston, LA, USA", + "ror_ids": [ + "https://ror.org/04q9esz89" + ] + }, + { + "affiliation": "School of Medical Applied Technology, Shenyang Medical College, Shenyang, China", + "ror_ids": [ + "https://ror.org/02y9xvd02" + ] + }, + { + "affiliation": "Key Laboratory of Optoelectronic Technology & Systems (Ministry of Education), Chongqing University, Chongqing, China", + "ror_ids": [ + "https://ror.org/023rhb549" + ] + }, + { + "affiliation": "Department of Sociology, Vrije Universiteit Brussel, Brussels, Belgium", + "ror_ids": [ + "https://ror.org/006e5kg04" + ] + }, + { + "affiliation": "Key Laboratory of Medical Reprogramming Technology, Shenzhen Second People’s Hospital, The First Affiliated Hospital of Shenzhen University, Shenzhen, China", + "ror_ids": [ + "https://ror.org/01vy4gh70", + "https://ror.org/05c74bq69" + ] + }, + { + "affiliation": "Department of Zoology, Raiganj University, Raiganj, Uttar Dinajpur, West Bengal, India", + "ror_ids": [ + "https://ror.org/00bneyt76" + ] + }, + { + "affiliation": "Primary Care Interventions to Prevent Maternal and Child Chronic Diseases of Perinatal and Developmental Origin (RICORS), Instituto de Salud Carlos III, Madrid, Spain", + "ror_ids": [ + "https://ror.org/00ca2c886" + ] + }, + { + "affiliation": "Department of Cardiovascular Sciences, School of Life Sciences, University of Leicester, Leicester, UK", + "ror_ids": [ + "https://ror.org/04h699437" + ] + }, + { + "affiliation": "Stelmakh Polyus Research Institute, Moscow, Russia", + "ror_ids": [ + "https://ror.org/03wbses72" + ] + }, + { + "affiliation": "Laboratory of Aquatic Zoology, Division of Research and Postgraduate Studies, Universidad Nacional Autónoma de México, Tlalnepantla, State of Mexico, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "INESC-ID, Lisbon, Portugal", + "ror_ids": [ + "https://ror.org/04mqy3p58" + ] + }, + { + "affiliation": "Division of Environment and Sustainability, The Hong Kong University of Science and Technology, Hong Kong, China", + "ror_ids": [ + "https://ror.org/00q4vv597" + ] + }, + { + "affiliation": "Wits Reproductive Health and HIV Institute, Faculty of Health Sciences, University of the Witwatersrand, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/03rp50x72" + ] + }, + { + "affiliation": "University Ferhat Abbas of Setif, Setif, Algeria", + "ror_ids": [ + "https://ror.org/02rzqza52" + ] + }, + { + "affiliation": "Program in Chemical and Biochemical Process Engineering, School of Chemistry, Federal University of Rio de Janeiro, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/03490as77" + ] + }, + { + "affiliation": "UK Centre for Ecology & Hydrology, Penicuik, UK", + "ror_ids": [ + "https://ror.org/00pggkr55" + ] + }, + { + "affiliation": "Dartington Service Design Lab, Buckfastleigh, UK", + "ror_ids": [ + "https://ror.org/00shbds80" + ] + }, + { + "affiliation": "ADRIANOR, Tilloy Les Mofflaines, France", + "ror_ids": [ + "https://ror.org/03a9ezp59" + ] + }, + { + "affiliation": "School of Mechanical Engineering, Yanshan University, Qinhuangdao, China", + "ror_ids": [ + "https://ror.org/02txfnf15" + ] + }, + { + "affiliation": "BCAM - Basque Center for Applied Mathematics, Bilbao, Spain", + "ror_ids": [ + "https://ror.org/03b21sh32" + ] + }, + { + "affiliation": "Department of Pharmacotherapy, College of Pharmacy, University of Utah, Salt Lake City, UT, USA", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "Klinik für Neurologie mit Institut für Translationale Neurologie, Universitätsklinikum Münster, Münster, Deutschland", + "ror_ids": [ + "https://ror.org/01856cw59" + ] + }, + { + "affiliation": "Digital Architecture Research Center, National Institute of Advanced Industrial Science and Technology (AIST), Tokyo, Japan", + "ror_ids": [ + "https://ror.org/01703db54" + ] + }, + { + "affiliation": "Department of Nephrology-Hypertension, Antwerp University Hospital, Edegem, Belgium", + "ror_ids": [ + "https://ror.org/01hwamj44" + ] + }, + { + "affiliation": "University of Veterinary Medicine and Pharmacy, Košice, Slovakia", + "ror_ids": [ + "https://ror.org/05btaka91" + ] + }, + { + "affiliation": "Key Laboratory of Dairy Products Processing, Ministry of Agriculture and Rural Affairs, Inner Mongolia Agricultural University, Hohhot, Inner Mongolia, China", + "ror_ids": [ + "https://ror.org/015d0jq83" + ] + }, + { + "affiliation": "Unit of Rare Neurological Diseases, Fondazione IRCCS Istituto Neurologico Carlo Besta, Milan, Italy", + "ror_ids": [ + "https://ror.org/05rbx8m02" + ] + }, + { + "affiliation": "Department of Radiation Oncology, Centre Léon Bérard, Lyon, France", + "ror_ids": [ + "https://ror.org/01cmnjq37" + ] + }, + { + "affiliation": "Coll of Engg, Design & Physical Sci, Brunel University London, London, UK", + "ror_ids": [ + "https://ror.org/00dn4t376" + ] + }, + { + "affiliation": "Augenklinik und Poliklinik, Universitätsmedizin Mainz, Mainz, Deutschland", + "ror_ids": [ + "https://ror.org/00q1fsf04" + ] + }, + { + "affiliation": "Department of Chemistry, University of Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "Department of Breast Examinations, Copenhagen University Hospital, Gentofte, Denmark", + "ror_ids": [ + "https://ror.org/05bpbnx46" + ] + }, + { + "affiliation": "Division of Business Administration, Pukyong National University, Busan, South Korea", + "ror_ids": [ + "https://ror.org/0433kqc49" + ] + }, + { + "affiliation": "Department of Nursing, Inha University, Incheon, Republic of Korea", + "ror_ids": [ + "https://ror.org/01easw929" + ] + }, + { + "affiliation": "La Clinica de La Raza, Oakland, CA, USA", + "ror_ids": [ + "https://ror.org/014j38041" + ] + }, + { + "affiliation": "University of Alaska Fairbanks, Fairbanks, AK, USA", + "ror_ids": [ + "https://ror.org/01j7nq853" + ] + }, + { + "affiliation": "Abteilung für Nephrologie, Innere Medizin, Medizinische Universität Graz, Graz, Österreich", + "ror_ids": [ + "https://ror.org/02n0bts35" + ] + }, + { + "affiliation": "Key Laboratory of Enhanced Oil Recovery, Northeast Petroleum University Daqing, Daqing, China", + "ror_ids": [ + "https://ror.org/03net5943" + ] + }, + { + "affiliation": "Graduate School, Universitas Gadjah Mada, Yogyakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03ke6d638" + ] + }, + { + "affiliation": "eWeb Research Center, Hochschule Niederrhein, Mönchengladbach, Deutschland", + "ror_ids": [ + "https://ror.org/027b9qx26" + ] + }, + { + "affiliation": "Radiation Oncology Center, Huashan Hospital, Shanghai Medical College, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/01zntxs11", + "https://ror.org/05201qm87", + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Department of Psychological, Health and Learning Sciences, University of Houston, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/048sx0r50" + ] + }, + { + "affiliation": "Department of Mathematics, University of North Carolina at Chapel Hill, Chapel Hill, NC, USA", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Harvard Mass General Brigham Plastic Surgery Residency Program, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78", + "https://ror.org/04py2rh25" + ] + }, + { + "affiliation": "Postgraduate Program in Health Sciences, Faculty of Medicine, Federal University of Goiás, Goiânia, Brazil", + "ror_ids": [ + "https://ror.org/0039d5757" + ] + }, + { + "affiliation": "Graphene Research Institute and Institute of Nano and Advanced Materials Engineering, Sejong University, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/00aft1q37" + ] + }, + { + "affiliation": "Department of Neuroradiology, University Medical Center of the Johannes Gutenberg University Mainz, Mainz, Germany", + "ror_ids": [ + "https://ror.org/00q1fsf04" + ] + }, + { + "affiliation": "Mathematical Institute, Slovak Academy of Sciences, Bratislava, Slovakia", + "ror_ids": [ + "https://ror.org/03h7qq074" + ] + }, + { + "affiliation": "Department of Biotechnology, Kumaraguru College of Technology, Coimbatore, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/05dvptm82" + ] + }, + { + "affiliation": "Department of Chemistry, Stanford University, Stanford, CA, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Division of Cardiology, Stollery Children’s Hospital, Edmonton, AB, Canada", + "ror_ids": [ + "https://ror.org/05w90nk74" + ] + }, + { + "affiliation": "Center for Interdisciplinary Studies on the Nervous System, Universidad Austral de Chile, Valdivia, Chile", + "ror_ids": [ + "https://ror.org/029ycp228" + ] + }, + { + "affiliation": "Foisie Business School, Worcester Polytechnic Institute, Worcester, USA", + "ror_ids": [ + "https://ror.org/05ejpqr48" + ] + }, + { + "affiliation": "School of Geography, Archaeology and Environmental Studies, University of the Witwatersrand, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/03rp50x72" + ] + }, + { + "affiliation": "Department of Biomedical Informatics, College of Medicine, University of Cincinnati, Cincinnati, OH, USA", + "ror_ids": [ + "https://ror.org/01e3m7079" + ] + }, + { + "affiliation": "College of New Energy, China University of Petroleum (East China), Qingdao, China", + "ror_ids": [ + "https://ror.org/05gbn2817" + ] + }, + { + "affiliation": "Centro de Investigación Biomédica en Red Fisiopatologia de la Obesidad y Nutricion (CIBEROBN), Instituto de Salud Carlos III, Madrid, Spain", + "ror_ids": [ + "https://ror.org/00ca2c886" + ] + }, + { + "affiliation": "St. Luke’s Hospital, Iowa, USA", + "ror_ids": [ + "https://ror.org/03txk6b49" + ] + }, + { + "affiliation": "Division of Pediatric Nephrology, Department of Pediatrics, Kanuni Sultan Suleyman Research and Training Hospital, University of Health Sciences, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "Başakşehir Cam ve Sakura City Hospital, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/05grcz969" + ] + }, + { + "affiliation": "Instituto de Investigación Sanitaria de Santiago de Compostela, Santiago de Compostela, Spain", + "ror_ids": [ + "https://ror.org/05n7xcf53" + ] + }, + { + "affiliation": "Medical Surgical Nursing Department, Faculty Health Science, Universitas Muhammadiyah Surakarta, Surakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03cnmz153" + ] + }, + { + "affiliation": "Research Center on Scientific and Technical Information (CERIST), Algiers, Algeria", + "ror_ids": [ + "https://ror.org/01k1bte55" + ] + }, + { + "affiliation": "Chemical Engineering and Process Development Division, CSIR-National Chemical Laboratory, Pune, India", + "ror_ids": [ + "https://ror.org/057mn3690" + ] + }, + { + "affiliation": "Department of Computer Science, Bernoulli Institute for Mathematics, Computer Science and Artificial Intelligence, University of Groningen, Groningen, Groningen, Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biology, Faculty of Science, University of Buea, Buea, Cameroon", + "ror_ids": [ + "https://ror.org/041kdhz15" + ] + }, + { + "affiliation": "Geographisches Institut, Universität Zürich, Zürich, Schweiz", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "School of Law and Society, University of the Sunshine Coast, Sippy Downs, QLD, Australia", + "ror_ids": [ + "https://ror.org/016gb9e15" + ] + }, + { + "affiliation": "School of Resources and Environment, Qingdao Agricultural University, Qingdao, Shandong, China", + "ror_ids": [ + "https://ror.org/051qwcj72" + ] + }, + { + "affiliation": "Department of Anatomy, School of Medicine, Shiraz University of Medical Sciences, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/01n3s4692" + ] + }, + { + "affiliation": "Section of Anatomic Pathology, Department of Population Medicine and Diagnostic Sciences, College of Veterinary Medicine, Cornell University, Ithaca, NY, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Botany, Gargi College, New Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Institute for Nuclear Science and Technology, Jeju National University, Jeju-si, Jeju Province, Republic of Korea", + "ror_ids": [ + "https://ror.org/05hnb4n85" + ] + }, + { + "affiliation": "Fisheries and Aquaculture Division, Food and Agriculture Organization of the United Nations, Rome, Italy", + "ror_ids": [ + "https://ror.org/00pe0tf51" + ] + }, + { + "affiliation": "Laboratory of Surgical Physiopathology (LIM-62), Hospital das Clínicas (HCFMUSP), São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/03se9eg94" + ] + }, + { + "affiliation": "DMPK, Genentech, Inc., South San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/04gndp242" + ] + }, + { + "affiliation": "Department of Political Science and Public Administration, Bilkent University, Ankara, Türkiye", + "ror_ids": [ + "https://ror.org/02vh8a032" + ] + }, + { + "affiliation": "Department of Experimental Particle Physics, Jožef Stefan Institute and Department of Physics, University of Ljubljana, Ljubljana, Slovenia", + "ror_ids": [ + "https://ror.org/05njb9z20" + ] + }, + { + "affiliation": "Instituto de Informática, Universidade Federal do Rio Grande do Sul (UFRGS), Porto Alegre, Brazil", + "ror_ids": [ + "https://ror.org/041yk2d64" + ] + }, + { + "affiliation": "Laboratory of Immunoregulation, National Institute of Allergy and Infectious Diseases, National Institutes of Health, Bethesda, MD, USA", + "ror_ids": [ + "https://ror.org/043z4tv69" + ] + }, + { + "affiliation": "Department of Materials Science, Moscow Polytechnic University, Moscow, Russia", + "ror_ids": [ + "https://ror.org/03paz2a60" + ] + }, + { + "affiliation": "Fachgebiet Arbeits- und Organisationspsychologie, Universität Osnabrück, Osnabrück, Deutschland", + "ror_ids": [ + "https://ror.org/04qmmjx98" + ] + }, + { + "affiliation": "Department of Biostatistics and Epidemiology, Research Institute for Endocrine Sciences, Shahid Beheshti University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/034m2b326", + "https://ror.org/01kpm1136" + ] + }, + { + "affiliation": "Pohang University of Science and Technology (POSTECH), Pohang, South Korea", + "ror_ids": [ + "https://ror.org/04xysgw12" + ] + }, + { + "affiliation": "Division of Psychology, Nottingham Trent University, Main Campus, Nottingham, UK", + "ror_ids": [ + "https://ror.org/04xyxjd90" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Federal University of Paraná, Curitiba, PR, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "Department of Sociology, University of Cambridge, Cambridge, UK", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Departments of Psychiatry, Clinical Neurosciences, and Community Health Sciences, Hotchkiss Brain Institute and O’Brien Institute for Public Health, University of Calgary, Calgary, Canada", + "ror_ids": [ + "https://ror.org/03yjb2x39" + ] + }, + { + "affiliation": "Tumour Biology Lab, ICMR-National Institute of Pathology, New Delhi, India", + "ror_ids": [ + "https://ror.org/00vfty314" + ] + }, + { + "affiliation": "Department of Computer Science, Bar Ilan University, Ramat Gan, Israel", + "ror_ids": [ + "https://ror.org/03kgsv495" + ] + }, + { + "affiliation": "Department of Toxicology “Akademik Danilo Soldatović”, University of Belgrade - Faculty of Pharmacy, Belgrade, Serbia", + "ror_ids": [ + "https://ror.org/02qsmb048" + ] + }, + { + "affiliation": "Research Service, South Texas Veterans Health Care System, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/03n2ay196" + ] + }, + { + "affiliation": "Post-Graduate Program in Oceanography, Department of Oceanography/Phytoplankton Laboratory, Federal University of Pernambuco, Recife, Pernambuco, Brazil", + "ror_ids": [ + "https://ror.org/047908t24" + ] + }, + { + "affiliation": "Department of Cell and Developmental Biology, Perelman School of Medicine, University of Pennsylvania, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "STFC Rutherford Appleton Laboratory, Didcot, United Kingdom", + "ror_ids": [ + "https://ror.org/03gq8fr08" + ] + }, + { + "affiliation": "Department of Chemistry, University of Calicut, Malappuram, Kerala, India", + "ror_ids": [ + "https://ror.org/05yeh3g67" + ] + }, + { + "affiliation": "Department of Radiation Oncology, Stanford University School of Medicine, Stanford, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Department of Physiology, Faculty of Medicine, Maranatha Christian University, Bandung, West Java, Indonesia", + "ror_ids": [ + "https://ror.org/05pd2ed85" + ] + }, + { + "affiliation": "Guangdong Laboratory for Lingnan Modern Agriculture, Guangdong Provincial Key Laboratory of Eco-circular Agriculture, South China Agricultural University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/05v9jqt67" + ] + }, + { + "affiliation": "Europa-Universität Flensburg, Flensburg, Deutschland", + "ror_ids": [ + "https://ror.org/046e0mt33" + ] + }, + { + "affiliation": "Department of Chemistry, Payame Noor University(PNU), Tehran, Iran", + "ror_ids": [ + "https://ror.org/031699d98" + ] + }, + { + "affiliation": "Newcastle upon Tyne NHS Foundation Trust, Newcastle, UK", + "ror_ids": [ + "https://ror.org/05p40t847" + ] + }, + { + "affiliation": "Industrial Engineering Department, Universitas Sebelas Maret, Surakarta, Indonesia", + "ror_ids": [ + "https://ror.org/021hq5q33" + ] + }, + { + "affiliation": "Universidade Estadual de Campinas (UNICAMP), Campinas, Brazil", + "ror_ids": [ + "https://ror.org/04wffgt70" + ] + }, + { + "affiliation": "Department of Statistics, University of California, Davis, Davis, CA, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Mimetas, Leiden, The Netherlands", + "ror_ids": [ + "https://ror.org/00jz33f47" + ] + }, + { + "affiliation": "Department of Architecture and Industrial Design, University of Campania Luigi Vanvitelli, Aversa, CE, Italy", + "ror_ids": [ + "https://ror.org/02kqnpp86" + ] + }, + { + "affiliation": "Faculty of Urban Planning, College of Architecture and Urban Planning, Tehran University of Art, Tehran, Iran", + "ror_ids": [ + "https://ror.org/02ggnbj54" + ] + }, + { + "affiliation": "XLIM Research Institute, CNRS UMR 7252, Université de Limoges, Limoges, France", + "ror_ids": [ + "https://ror.org/02cp04407" + ] + }, + { + "affiliation": "Department of Internal Medicine, National Yang Ming Chiao Tung University College of Medicine, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/00se2k293" + ] + }, + { + "affiliation": "Section of Cardiac Surgery, Cardio-thoracic and Vascular Department, University Hospital of Pisa, Pisa, Italy", + "ror_ids": [ + "https://ror.org/05xrcj819" + ] + }, + { + "affiliation": "Department of Renewable Resources, University of Alberta, Edmonton, AB, Canada", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "IVT, ETH Zürich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "MRC Centre for Environment and Health, Department of Epidemiology and Biostatistics, School of Public Health, Imperial College London, London, UK", + "ror_ids": [ + "https://ror.org/041kmwe10" + ] + }, + { + "affiliation": " Infectious Diseases and Tropical Medicine Research Center, Shahid Beheshti University of Medical, Tehran, Iran", + "ror_ids": [ + "https://ror.org/034m2b326" + ] + }, + { + "affiliation": "Faculty of Health Science, University of Stavanger, Stavanger, Norway", + "ror_ids": [ + "https://ror.org/02qte9q33" + ] + }, + { + "affiliation": "Department of Civil Engineering, National Engineering College, Kovilpatti, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "School of Engineering and Technology, Central University of Rajasthan, Ajmer, India", + "ror_ids": [ + "https://ror.org/056y7zx62" + ] + }, + { + "affiliation": "National Heart and Lung Institute, Imperial College, London, UK", + "ror_ids": [ + "https://ror.org/041kmwe10" + ] + }, + { + "affiliation": "Future Medical Laboratory, The Second Affiliated Hospital of Harbin Medical University, Harbin, China", + "ror_ids": [ + "https://ror.org/03s8txj32" + ] + }, + { + "affiliation": "Department of Pediatrics, Seoul National University Bundang Hospital, Seongnam, Republic of Korea", + "ror_ids": [ + "https://ror.org/00cb3km46" + ] + }, + { + "affiliation": "Hospital Universitario Infanta Leonor, Madrid, Spain", + "ror_ids": [ + "https://ror.org/05nfzf209" + ] + }, + { + "affiliation": "Indian Institute of Technology Madras, Chennai, India", + "ror_ids": [ + "https://ror.org/03v0r5n49" + ] + }, + { + "affiliation": "Department of Pathology, Union Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, Hubei, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Department of Agricultural, Food and Environmental Science, University of Perugia, Perugia, Italy", + "ror_ids": [ + "https://ror.org/00x27da85" + ] + }, + { + "affiliation": "School of Geography, Politics and Sociology, Newcastle University, Newcastle upon Tyne, UK", + "ror_ids": [ + "https://ror.org/01kj2bm70" + ] + }, + { + "affiliation": "Life and Health Sciences Research Institute (ICVS), School of Health Sciences, University of Minho, Braga, Portugal", + "ror_ids": [ + "https://ror.org/037wpkx04" + ] + }, + { + "affiliation": "Institute of Biological Products, National Institutes for Food and Drug Control, Beijing, China", + "ror_ids": [ + "https://ror.org/041rdq190" + ] + }, + { + "affiliation": "Department of Nuclear Engineering, Oregon State University, Corvallis, OR, USA", + "ror_ids": [ + "https://ror.org/00ysfqy60" + ] + }, + { + "affiliation": "Pediatric Unit, Pediatric Emergency Department, Bambino Gesù Children’s Hospital, IRCCS, Rome, Italy", + "ror_ids": [ + "https://ror.org/02sy42d13" + ] + }, + { + "affiliation": "Department of Dentistry, University of Fortaleza, Fortaleza, Brazil", + "ror_ids": [ + "https://ror.org/02ynbzc81" + ] + }, + { + "affiliation": "Department of Infectious Diseases and Immunology, College of Veterinary Medicine, University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Sydney Local Health District, Sydney, Australia", + "ror_ids": [ + "https://ror.org/04w6y2z35" + ] + }, + { + "affiliation": "Department of Human Performance and Wellness, Virginia Military Institute, Lexington, VA, USA", + "ror_ids": [ + "https://ror.org/01ngnm118" + ] + }, + { + "affiliation": "Department of Medical Informatics, School of Medicine, Mashhad University of Medical Sciences, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/04sfka033" + ] + }, + { + "affiliation": "Einstein Institute of Mathematics, Edmond J. Safra Campus, The Hebrew University of Jerusalem, Givat Ram, Jerusalem, Israel", + "ror_ids": [ + "https://ror.org/03qxff017" + ] + }, + { + "affiliation": "Seth GS Medical College and KEM Hospital, Mumbai, India", + "ror_ids": [ + "https://ror.org/03vcw1x21" + ] + }, + { + "affiliation": "Department of Maternal and Child Health, School of Nursing, University of Ghana, Legon, Ghana", + "ror_ids": [ + "https://ror.org/01r22mr83" + ] + }, + { + "affiliation": "Omics of Algae Group and DBT-ICGEB Centre for Advanced Bioenergy Research, Industrial Biotechnology, International Centre for Genetic Engineering and Biotechnology, New Delhi, India", + "ror_ids": [ + "https://ror.org/03j4rrt43" + ] + }, + { + "affiliation": "Klinik für Orthopädie, Goethe Universität Frankfurt, Frankfurt am Main, Deutschland", + "ror_ids": [ + "https://ror.org/04cvxnb49" + ] + }, + { + "affiliation": "Lake and Marine Sediment Research Group, Department of Geography and Geology, University of Turku, Turku, Finland", + "ror_ids": [ + "https://ror.org/05vghhr25" + ] + }, + { + "affiliation": "Department of Physics, University of Engineering and Technology Lahore, Lahore, Pakistan", + "ror_ids": [ + "https://ror.org/0051w2v06" + ] + }, + { + "affiliation": "Department of Computer Science, Edge Hill University, Ormskirk, England", + "ror_ids": [ + "https://ror.org/028ndzd53" + ] + }, + { + "affiliation": "Helmholtz Institute Münster (IEK-12/HI MS), Forschungszentrum Jülich GmbH, Jülich, Germany", + "ror_ids": [ + "https://ror.org/02nv7yv05", + "https://ror.org/04ktat366" + ] + }, + { + "affiliation": "Faculty of Electrical and Computer Engineering, Tarbiat Modares University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/03mwgfy56" + ] + }, + { + "affiliation": "Department of Animal and Veterinary Sciences, Aarhus University, Tjele, Denmark", + "ror_ids": [ + "https://ror.org/01aj84f44" + ] + }, + { + "affiliation": "School of Civil and Hydraulic Engineering, Huazhong University of Science and Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "School of Psychological and Cognitive Sciences, Beijing Key Laboratory of Behaviour and Mental Health, Peking University, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "School of Chemical Engineering and Technology, China University of Mining and Technology, Xuzhou, Jiangsu, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01xt2dr21" + ] + }, + { + "affiliation": "National Science Foundation, Alexandria, VA, USA", + "ror_ids": [ + "https://ror.org/021nxhr62" + ] + }, + { + "affiliation": "Department of Mathematics, Faculty of Science, Zagazig University, Zagazig, Egypt", + "ror_ids": [ + "https://ror.org/053g6we49" + ] + }, + { + "affiliation": "Lab de Genética Evolutiva de Himenópteros, Depto de Genética E Evolução, Univ Federal de São Carlos, São Paulo, São Carlos, Brazil", + "ror_ids": [ + "https://ror.org/00qdc6m37" + ] + }, + { + "affiliation": "Department of Molecular Biosciences, The Wenner-Gren Institute, Stockholm University, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/05f0yaq80" + ] + }, + { + "affiliation": "BK21 FOUR Education and Research Team for Sustainable Food & Nutrition, Seoul National University, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Optoelectronic Convergence Research Center, Chonnam National University, Gwangju, South Korea", + "ror_ids": [ + "https://ror.org/05kzjxq56" + ] + }, + { + "affiliation": "Department of Preventive Gerontology, Centre for Gerontology and Social Science, Research Institute, National Centre for Geriatrics and Gerontology, Obu, Aichi, Japan", + "ror_ids": [ + "https://ror.org/05h0rw812" + ] + }, + { + "affiliation": "Neurosurgery Unit, “Antonio Cardarelli” Hospital, Napoli, Italy", + "ror_ids": [ + "https://ror.org/003hhqx84" + ] + }, + { + "affiliation": "Centre for Advanced Manufacturing Technologies – Fraunhofer Project Centre (CAMT-FPC), Faculty of Mechanical Engineering, Wroclaw University of Science and Technology, Wroclaw, Poland", + "ror_ids": [ + "https://ror.org/008fyn775" + ] + }, + { + "affiliation": "Department of Internal Medicine, Gil Hospital, Gachon University, Incheon, Republic of Korea", + "ror_ids": [ + "https://ror.org/03ryywt80" + ] + }, + { + "affiliation": "School of Electronic and Electrical Engineering, Kyungpook National University, Daegu, Republic of Korea", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "Ministry of Health, Mental Health Division, Rwanda Biomedical Center, Kigali, Rwanda", + "ror_ids": [ + "https://ror.org/03jggqf79" + ] + }, + { + "affiliation": "Institute of Ethnology, Academia Sinica, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05bxb3784", + "https://ror.org/01tvy6411" + ] + }, + { + "affiliation": "Institute for Economic Research, Ljubljana, Slovenia", + "ror_ids": [ + "https://ror.org/014z5x149" + ] + }, + { + "affiliation": "International Centre for Eye Health, London School of Hygiene and Tropical Medicine, London, UK", + "ror_ids": [ + "https://ror.org/00a0jsq62" + ] + }, + { + "affiliation": "Department of Medicine, University of Eastern Finland and Kuopio, University Hospital, Kuopio, Finland", + "ror_ids": [ + "https://ror.org/00fqdfs68", + "https://ror.org/00cyydd11" + ] + }, + { + "affiliation": "Ressourcen und Mobilität, Öko-Institut e. V., Darmstadt, Deutschland", + "ror_ids": [ + "https://ror.org/005p0t446" + ] + }, + { + "affiliation": "Cancer Control Center, Osaka International Cancer Institute, Osaka, Japan", + "ror_ids": [ + "https://ror.org/010srfv22" + ] + }, + { + "affiliation": "Delft Bioinformatics Lab, Faculty of Electrical Engineering, Mathematics and Computer Science, Delft University of Technology, Delft, The Netherlands", + "ror_ids": [ + "https://ror.org/02e2c7k09" + ] + }, + { + "affiliation": "The University of Western Australia, Crawley, WA, Australia", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "Civil Engineering Department, Faculty of Engineering, Ferdowsi University of Mashhad, Mashhad, Razavi Khorasan Province, Iran", + "ror_ids": [ + "https://ror.org/00g6ka752" + ] + }, + { + "affiliation": "School of Design, Health Research Institute, and Confirm Centre for Smart Manufacturing, University of Limerick, Limerick, Ireland", + "ror_ids": [ + "https://ror.org/00a0n9e72" + ] + }, + { + "affiliation": "Department of Environment, Land, Water and Planning, Arthur Rylah Institute for Environmental Research, Heidelberg, VIC, Australia", + "ror_ids": [ + "https://ror.org/052sgg612", + "https://ror.org/03m3hse57" + ] + }, + { + "affiliation": "Campbell Family Mental Health Research Institute, Centre for Addiction and Mental Health, Toronto, Ontario, Canada", + "ror_ids": [ + "https://ror.org/03e71c577" + ] + }, + { + "affiliation": "VIB-University Ghent, Center for Plant System Biology, Ghent, BE, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106", + "https://ror.org/01qnqmc89" + ] + }, + { + "affiliation": "Department of Osteoimmunology, Graduate School of Medicine and Faculty of Medicine, The University of Tokyo, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Laboratory for Neuroengineering, Department of Health Science and Technology, Institute for Robotics and Intelligent Systems, ETH Zürich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Parkinson Unit, Neuromuscular-Skeletal and Sensory Organs Department, AOU Careggi, Florence, Italy", + "ror_ids": [ + "https://ror.org/02crev113" + ] + }, + { + "affiliation": "Department of Radiology, Seoul National University Hospital, Seoul, Korea", + "ror_ids": [ + "https://ror.org/01z4nnt86" + ] + }, + { + "affiliation": "School of Medicine and Doctoral Program of Clinical and Experimental Medicine, College of Medicine and Center of Excellence for Metabolic Associated Fatty Liver Disease, National Sun Yat-Sen University, Kaohsiung, Taiwan", + "ror_ids": [ + "https://ror.org/00mjawt10" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Institute of Materials Simulation, Friedrich-Alexander-University Erlangen-Nuremberg, Fürth, Germany", + "ror_ids": [ + "https://ror.org/00f7hpc57" + ] + }, + { + "affiliation": "Department of Neurosurgery, Yonsei University College of Medicine, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/01wjejq96" + ] + }, + { + "affiliation": "Synchrotron SOLEIL, UR1-CNRS, Gif-sur-Yvette Cedex, France", + "ror_ids": [ + "https://ror.org/01ydb3330" + ] + }, + { + "affiliation": "Department of Internal Medicine, Hospital Universitari de Sant Joan, Reus, Spain", + "ror_ids": [ + "https://ror.org/04f7pyb58" + ] + }, + { + "affiliation": "State Key Laboratory of Coal Mining and Clean Utilization, China, Coal Technology and Engineering Group, Beijing, China", + "ror_ids": [ + "https://ror.org/045d9gj14" + ] + }, + { + "affiliation": "Auckland Te Toka Tumai, Health New Zealand and Faculty of Medicine and Health Sciences, University of Auckland, Auckland, New Zealand", + "ror_ids": [ + "https://ror.org/03b94tp07" + ] + }, + { + "affiliation": "Department of Neurology with Institute of Translational Neurology, Münster University Hospital (UKM), Münster, Germany", + "ror_ids": [ + "https://ror.org/01856cw59" + ] + }, + { + "affiliation": "Bristol Medical School, University of Bristol, Bristol, UK", + "ror_ids": [ + "https://ror.org/0524sp257" + ] + }, + { + "affiliation": "Department of Anaesthesiology and Operative Intensive Care Medicine, Charité – Universitätsmedizin Berlin, Freie Universität Berlin and Humboldt-Universität zu Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/001w7jn25", + "https://ror.org/01hcx6992" + ] + }, + { + "affiliation": "Laboratory of Ecology and Conservation, Department of Environmental Engineering, Federal University of Parana - UFPR, Curitiba, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "Weill Cornell Medicine-Qatar, Research Division, Qatar Foundation, Doha, Qatar", + "ror_ids": [ + "https://ror.org/01cawbq05" + ] + }, + { + "affiliation": "Department of Civil Engineering, Faculty of Engineering, The Hashemite University, Zarqa, Jordan", + "ror_ids": [ + "https://ror.org/04a1r5z94" + ] + }, + { + "affiliation": "Medizinische Klinik und Poliklinik III und CCC München, LMU Klinikum, München, Deutschland", + "ror_ids": [ + "https://ror.org/02jet3w32" + ] + }, + { + "affiliation": "Faculty of Biochemistry and Molecular Medicine, University of Oulu, Oulu, Finland", + "ror_ids": [ + "https://ror.org/03yj89h83" + ] + }, + { + "affiliation": "Center for Theory, Weinberg Institute, Department of Physics, University of Texas at Austin, Austin, TX, USA", + "ror_ids": [ + "https://ror.org/00hj54h04" + ] + }, + { + "affiliation": "Division of Pediatric Psychology and Developmental Medicine, Department of Pediatrics, Medical College of Wisconsin, Milwaukee, WI, USA", + "ror_ids": [ + "https://ror.org/00qqv6244" + ] + }, + { + "affiliation": "Industrial College of Biomedicine and Health Industry, Youjiang Medical College for Nationalities, Baise, Guangxi, China", + "ror_ids": [ + "https://ror.org/00wemg618" + ] + }, + { + "affiliation": "Department of Dental Materials and Prosthesis, Ribeirão Preto School of Dentistry, University of São Paulo (USP), Ribeirão Preto, SP, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Psychiatry, Taipei Medical University Hospital, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/03k0md330" + ] + }, + { + "affiliation": "Zienkiewicz Centre for Computational Engineering (ZCCE), Swansea University, Bay Campus, Swansea, UK", + "ror_ids": [ + "https://ror.org/053fq8t95" + ] + }, + { + "affiliation": "Department of Symptom Research, The University of Texas MD Anderson Cancer Center, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Erziehungswissenschaft, Universität Trier, Trier, Deutschland", + "ror_ids": [ + "https://ror.org/02778hg05" + ] + }, + { + "affiliation": "Lapseki Vocational School, Department of Landscape and Ornamental Plants, Çanakkale Onsekiz Mart University, Lapseki, Çanakkale, Turkey", + "ror_ids": [ + "https://ror.org/05rsv8p09" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Science, University of Hormozgan, Bandar Abbas, Islamic Republic of Iran", + "ror_ids": [ + "https://ror.org/003jjq839" + ] + }, + { + "affiliation": "Department of Cardiology, Iida Municipal Hospital, Iida, Nagano, Japan", + "ror_ids": [ + "https://ror.org/00qezxe61" + ] + }, + { + "affiliation": "Vocational Program, Universitas Negeri Surabaya, Surabaya, Indonesia", + "ror_ids": [ + "https://ror.org/01jf74q70" + ] + }, + { + "affiliation": "Department of Mathematics, Alabama State University, Montgomery, Alabama, ", + "ror_ids": [ + "https://ror.org/01eedy375" + ] + }, + { + "affiliation": "UGC-DAE Consortium for Scientific Research, University Campus, Indore, India", + "ror_ids": [ + "https://ror.org/047g7f905" + ] + }, + { + "affiliation": "School of Mechanical Electrification Engineering, Tarim University, Alaer, China", + "ror_ids": [ + "https://ror.org/05202v862" + ] + }, + { + "affiliation": "Department of Food Engineering, Shanxi Pharmaceutical Vocational College, Taiyuan, China", + "ror_ids": [ + "https://ror.org/035brg434" + ] + }, + { + "affiliation": "Department of Curriculum and Instruction, University of Illinois Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/02mpq6x41" + ] + }, + { + "affiliation": "Instituto Do Mar, Universidade Federal de São Paulo (IMAR -UNIFESP), Santos, SP, Brazil", + "ror_ids": [ + "https://ror.org/02k5swt12" + ] + }, + { + "affiliation": "Centre for the Research and Technology of Agro-Environmental and Biological Sciences, CITAB, University of Trás-os-Montes and Alto Douro, UTAD, Viseu, Portugal", + "ror_ids": [ + "https://ror.org/03qc8vh97" + ] + }, + { + "affiliation": "Department of Chemistry, New York University, New York, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "Department of Minimal Access, General, Gastrointestinal and Bariatric Surgery, Manipal Hospitals, Delhi, India", + "ror_ids": [ + "https://ror.org/05mryn396" + ] + }, + { + "affiliation": "Department of Physics and Research Centre, Annai Velankanni College, Tholayavattam, Affliated to Manonmaniam Sundaranar University, Tirunelveli, Tamilnadu, India", + "ror_ids": [ + "https://ror.org/02qgw5c67", + "https://ror.org/004y1jf02" + ] + }, + { + "affiliation": "Division of General Surgery, Department of Surgery, School of Medicine, College of Medicine, Taipei Medical University, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05031qk94" + ] + }, + { + "affiliation": "Division of Agronomy, FoA, Sher-E-Kashmir University of Agricultural Sciences and Technology Kashmir-Wadura, Sopore, India", + "ror_ids": [ + "https://ror.org/00jgwn197" + ] + }, + { + "affiliation": "Department of Theoretical Physics, University of the Basque Country UPV/EHU, Bilbao, Spain", + "ror_ids": [ + "https://ror.org/000xsnr85" + ] + }, + { + "affiliation": "National Clinical Research Center for Obstetrics and Gynecology, Peking University Third Hospital, Beijing, China", + "ror_ids": [ + "https://ror.org/04wwqze12" + ] + }, + { + "affiliation": "Zаvоisky Physiсoteсhniсаl Institute, Kаzаn Scientific Сenter, Russian Academy of Sciences, Kаzаn, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, Auburn University, Auburn, AL, USA", + "ror_ids": [ + "https://ror.org/02v80fc35" + ] + }, + { + "affiliation": "Department of Pathology, University Health Network, Toronto General Hospital, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/026pg9j08", + "https://ror.org/042xt5161" + ] + }, + { + "affiliation": "Museu Paraense Emílio Goeldi. Coordenação de Ciências da Terra e Ecologia, Belém, Pará, Brazil", + "ror_ids": [ + "https://ror.org/010gvqg61" + ] + }, + { + "affiliation": "University of Bern, Bern, Switzerland", + "ror_ids": [ + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "Center for Excellence in Education, Arkansas State University, Jonesboro, AR, USA", + "ror_ids": [ + "https://ror.org/006pyvd89" + ] + }, + { + "affiliation": "INAF - Osservatorio Astronomico di Cagliari, Selargius, CA, Italy", + "ror_ids": [ + "https://ror.org/045dz8764" + ] + }, + { + "affiliation": "Division of Gastroenterology, Hepatology, and Nutrition, University at Buffalo, Buffalo, NY, USA", + "ror_ids": [ + "https://ror.org/01y64my43" + ] + }, + { + "affiliation": "Region Västra Götaland, Sahlgrenska University Hospital Östra, Department of Anaesthesiology and Intensive Care Medicine/Paincenter, Gothenburg, Sweden", + "ror_ids": [ + "https://ror.org/04vgqjj36", + "https://ror.org/00a4x6777" + ] + }, + { + "affiliation": "Department of Orthopedics and Traumasurgery, Heinrich Heine University, Düsseldorf, Germany", + "ror_ids": [ + "https://ror.org/024z2rq82" + ] + }, + { + "affiliation": "Key Laboratory of the Ministry of Education for Geomechanics and Embankment Engineering, College of Civil and Transportation Engineering, Hohai University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01wd4xt90" + ] + }, + { + "affiliation": "Achucarro Basque Center for Neuroscience, Scientific Park of the University of the Basque Country (UPV/EHU), Leioa, Spain", + "ror_ids": [ + "https://ror.org/00myw9y39", + "https://ror.org/000xsnr85" + ] + }, + { + "affiliation": "Physics Division, National Center for Theoretical Sciences, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/02mfp0b67" + ] + }, + { + "affiliation": "Industrial Engineering Department, Hitit University, Çorum, Türkiye", + "ror_ids": [ + "https://ror.org/01x8m3269" + ] + }, + { + "affiliation": "Metallurgical and Materials Engineering Department, Bursa Technical University, Bursa, Turkey", + "ror_ids": [ + "https://ror.org/03rdpn141" + ] + }, + { + "affiliation": "Department of Clinical Genetics – Children’s Health Ireland Crumlin, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/025qedy81" + ] + }, + { + "affiliation": "Department of Power Engineering, Jadavpur University, Kolkata, India", + "ror_ids": [ + "https://ror.org/02af4h012" + ] + }, + { + "affiliation": "Department of Social Work, Shandong University, Jinan, China", + "ror_ids": [ + "https://ror.org/0207yh398" + ] + }, + { + "affiliation": "Collaborative Innovation center of Advanced Microstructures, Nanjing University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01rxvg760", + "https://ror.org/04ttadj76" + ] + }, + { + "affiliation": "Department of Epidemiology and Biostatistics, School of Public Health, Indiana University, Bloomington, IN, USA", + "ror_ids": [ + "https://ror.org/02k40bc56" + ] + }, + { + "affiliation": "School of Life Sciences, South China Normal University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/01kq0pv72" + ] + }, + { + "affiliation": "Instituto de Fisica, Universidade Federal do Rio de Janeiro, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/03490as77" + ] + }, + { + "affiliation": "INFN, Sezione di Cagliari, Cagliari, Italy", + "ror_ids": [ + "https://ror.org/03paz5966" + ] + }, + { + "affiliation": "College of Information Sciences and Engineering, Northeastern University, Shenyang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03awzbc87" + ] + }, + { + "affiliation": "Iran University of Medical Sciences (IUMS), Tehran, Iran", + "ror_ids": [ + "https://ror.org/03w04rv71" + ] + }, + { + "affiliation": "Division de Ciencias Naturales y Exactas, Chemical Engineering Department, Universidad de Guanajuato, Guanajuato, Guanajuato, Mexico", + "ror_ids": [ + "https://ror.org/058cjye32" + ] + }, + { + "affiliation": "School of Artificial Intelligence, University of Chinese Academy of Sciences, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05qbk4x57" + ] + }, + { + "affiliation": "Laboratory of Food Materials Studies, Department of Food Technology, University of Viçosa (UFV), Viçosa, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0409dgb37" + ] + }, + { + "affiliation": "Department of Energy Systems Engineering, Faculty of Engineering, Atilim University, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/04pd3v454" + ] + }, + { + "affiliation": "Department of Rheumatology and Immunology, Yiyang Central Hospital, Central South University, Hunan, China", + "ror_ids": [ + "https://ror.org/00f1zfq44", + "https://ror.org/03hqvqf51" + ] + }, + { + "affiliation": "Department of Health, Exercise Science, and Recreation Management, Kevser Ermin Applied Physiology Laboratory, The University of Mississippi, University, MS, USA", + "ror_ids": [ + "https://ror.org/02teq1165" + ] + }, + { + "affiliation": "School of Economics, Ocean University of China, Qingdao, China", + "ror_ids": [ + "https://ror.org/04rdtx186" + ] + }, + { + "affiliation": "Department of Chemistry at the Federal University of Santa Maria (UFSM), Santa Maria, RS, Brazil", + "ror_ids": [ + "https://ror.org/01b78mz79" + ] + }, + { + "affiliation": "ICTP, Trieste, Italy", + "ror_ids": [ + "https://ror.org/009gyvm78" + ] + }, + { + "affiliation": "Historisches Institut – Abteilung für Neuere Geschichte, Universität Köln, Köln, Deutschland", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "IFLP(CONICET) and Department of Physics, University of La Plata, La Plata, Argentina", + "ror_ids": [ + "https://ror.org/01tjs6929" + ] + }, + { + "affiliation": "Odessa State Academy of Civil Engineering and Architecture, Odesa, Ukraine", + "ror_ids": [ + "https://ror.org/02yt0ry35" + ] + }, + { + "affiliation": "Department of Biological Sciences, University of Notre Dame, Notre Dame, IN, USA", + "ror_ids": [ + "https://ror.org/00mkhxb43" + ] + }, + { + "affiliation": "Adult Epilepsy Genetics Program, Krembil Research Institute, University of Toronto, Toronto, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087", + "https://ror.org/01f6jys10" + ] + }, + { + "affiliation": "Dept. of Plant Production, Faculty of Agriculture and Natural Resources, Gonbad Kavous University, Gonbad-e Kāvūs, Golestan, Iran", + "ror_ids": [ + "https://ror.org/04a1nf004" + ] + }, + { + "affiliation": "Lamar University, Beaumont, TX, USA", + "ror_ids": [ + "https://ror.org/008ms5s18" + ] + }, + { + "affiliation": "College of Mathematics, Sichuan University, Chengdu, Sichuan, China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "University of Manouba, Manouba, Tunisia", + "ror_ids": [ + "https://ror.org/0503ejf32" + ] + }, + { + "affiliation": "Human Centric Engineering, School of Computing, Telkom University, Bandung, Indonesia", + "ror_ids": [ + "https://ror.org/0004wsx81" + ] + }, + { + "affiliation": "Institute of Cosmology and Gravitation, University of Portsmouth, Portsmouth, UK", + "ror_ids": [ + "https://ror.org/03ykbk197" + ] + }, + { + "affiliation": "Department of Physics, Institute of Applied Sciences and Humanities, GLA University, Mathura, India", + "ror_ids": [ + "https://ror.org/05fnxgv12" + ] + }, + { + "affiliation": "Department of Mathematical Sciences, University of Texas at Dallas, Dallas, USA", + "ror_ids": [ + "https://ror.org/049emcs32" + ] + }, + { + "affiliation": "Institute of Mathematics, Heinrich Heine University Duesseldorf, Duesseldorf, Germany", + "ror_ids": [ + "https://ror.org/024z2rq82" + ] + }, + { + "affiliation": "University of Haifa, Haifa, Israel", + "ror_ids": [ + "https://ror.org/02f009v59" + ] + }, + { + "affiliation": "Institute of Cartography and Geoinformatics, Leibniz University Hannover, Hannover, Lower Saxony, Germany", + "ror_ids": [ + "https://ror.org/0304hq317" + ] + }, + { + "affiliation": "Hospital Universitario de Salamanca, Instituto de Investigacion Biomedica de Salamanca (IBSAL), Centro de Investigación del Cancer (IBMCC-USAL, CSIC), CIBER-ONC number CB16/12/00233, Salamanca, Spain", + "ror_ids": [ + "https://ror.org/03em6xj44", + "https://ror.org/04rxrdv16" + ] + }, + { + "affiliation": "Department of Food and Nutrition, Kyung Hee University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/01zqcg218" + ] + }, + { + "affiliation": "Division of Pediatric Surgery, Children’s Surgical Services, Neonatal and Pediatric Ecmo, Fetal Diagnosis and Treatment Program, William F and Virginia Connolly Mitty Associate, NYU Langone Health, Hassenfeld Children’s Hospital at NYU Langone, , USA", + "ror_ids": [ + "https://ror.org/005dvqh91" + ] + }, + { + "affiliation": "Department of Pediatrics, Tampere University Hospital, Tampere, Finland", + "ror_ids": [ + "https://ror.org/02hvt5f17" + ] + }, + { + "affiliation": "School of Civil Engineering, Heilongjiang University of Science and Technology, Harbin, China", + "ror_ids": [ + "https://ror.org/030xwyx96" + ] + }, + { + "affiliation": "Centre for Ageing Research and Education, Duke-NUS Medical School, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/02j1m6098" + ] + }, + { + "affiliation": "Nuclear Medicine Unit, Department of Medicine (DIMED), Padova University Hospital, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "National and Kapodistrian University of Athens, Athens, Greece", + "ror_ids": [ + "https://ror.org/04gnjpq42" + ] + }, + { + "affiliation": "Computer Science Department, CINVESTAV-IPN, Mexico City, Mexico", + "ror_ids": [ + "https://ror.org/009eqmr18" + ] + }, + { + "affiliation": "School of Business Administration, Pennsylvania State University at Harrisburg, Middletown, PA, USA", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Department of Surgical Disciplines, All India Institute of Medical Sciences, New Delhi, India", + "ror_ids": [ + "https://ror.org/02dwcqs71" + ] + }, + { + "affiliation": "Culver Vision Discovery Institute, Augusta University, Augusta, GA, USA", + "ror_ids": [ + "https://ror.org/012mef835" + ] + }, + { + "affiliation": "Department of Internal Medicine, Paul L Foster School of Medicine, Texas Tech University, El Paso, TX, USA", + "ror_ids": [ + "https://ror.org/0405mnx93" + ] + }, + { + "affiliation": "Department of Urology, Zhujiang Hospital, Southern Medical University, Guangzhou, Guangdong, China", + "ror_ids": [ + "https://ror.org/02mhxa927", + "https://ror.org/01vjw4z39" + ] + }, + { + "affiliation": "Otorhinolaryngology, Head and Neck Surgery Department, Complexo Hospitalario Universitario A Coruña (CHUAC), A Coruña, Galicia, Spain", + "ror_ids": [ + "https://ror.org/044knj408" + ] + }, + { + "affiliation": "Center for MRI Research, Academy for Advanced Interdisciplinary Studies, Peking University, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Department of Clinical Research Education, Nagoya University Graduate School of Medicine, Nagoya, Japan", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Department of Wood Biology and Wood Products, University of Göttingen, Göttingen, Germany", + "ror_ids": [ + "https://ror.org/01y9bpm73" + ] + }, + { + "affiliation": "Interdisciplinary Algology Center, CHU, University Hospital of Liège, Liège, Belgium", + "ror_ids": [ + "https://ror.org/044s61914" + ] + }, + { + "affiliation": "Industrial Engineering Department, Quchan University of Technology, Quchan, Iran", + "ror_ids": [ + "https://ror.org/01bt5mj78" + ] + }, + { + "affiliation": "Istanbul Bilgi University, Faculty of Engineering and Natural Sciences, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/04pm4x478" + ] + }, + { + "affiliation": "Biological Psychiatric Unit, IRCCS Istituto Centro San Giovanni di Dio Fatebenefratelli, Brescia, Italy", + "ror_ids": [ + "https://ror.org/02davtb12" + ] + }, + { + "affiliation": "Department of Ecology and Environmental Science, Umeå University, Umeå, Sweden", + "ror_ids": [ + "https://ror.org/05kb8h459" + ] + }, + { + "affiliation": "Department of Physics, Saveetha Engineering College, Thandalam, Chennai, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Field Crop Pests Research Department, Plant Protection Research Institute, Agricultural Research Center, Giza, Egypt", + "ror_ids": [ + "https://ror.org/05hcacp57" + ] + }, + { + "affiliation": "Photonic Communications Research Laboratory, Institute of Communication and Computer Systems, National Technical University of Athens, Zografou, Greece", + "ror_ids": [ + "https://ror.org/03cx6bg69" + ] + }, + { + "affiliation": "Department of Philosophy, University of California, Irvine, Irvine, CA, USA", + "ror_ids": [ + "https://ror.org/04gyf1771" + ] + }, + { + "affiliation": "Laboratory of Rangeland Ecosystems and Valorization of Spontaneous Plants and Associated Microorganisms (LR16IRA03), Arid Regions Institute, University of Gabes, Medenine, Tunisia", + "ror_ids": [ + "https://ror.org/022efad20" + ] + }, + { + "affiliation": "Institute for Cross-Disciplinary Physics and Complex Systems, IFISC (CSIC-UIB), Palma de Mallorca, Spain", + "ror_ids": [ + "https://ror.org/00pfxsh56" + ] + }, + { + "affiliation": "Division of Cardiac Surgery, University of Verona Medical School, Verona, Italy", + "ror_ids": [ + "https://ror.org/039bp8j42" + ] + }, + { + "affiliation": "School of Computer, Central China Normal University, Wuhan, Hubei, China", + "ror_ids": [ + "https://ror.org/03x1jna21" + ] + }, + { + "affiliation": "Department of Surgery, Manchester University NHS Foundation Trust, Manchester, UK", + "ror_ids": [ + "https://ror.org/00he80998" + ] + }, + { + "affiliation": "Laboratoire de Physique des Particules et Physique Statistique, Ecole Normale Supérieure-Kouba, Algiers, Algeria", + "ror_ids": [ + "https://ror.org/03kh2rb68" + ] + }, + { + "affiliation": "Departments of General Medicine, Liuzhou People’s Hospital, Liuzhou, Guangxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01y8cpr39" + ] + }, + { + "affiliation": "Institut Max von Laue-Paul Langevin (ILL), Grenoble, France", + "ror_ids": [ + "https://ror.org/01xtjs520" + ] + }, + { + "affiliation": "Department of Medicine, Surgery and Dentistry Scuola Medica Salernitana, University of Salerno, Baronissi, Italy", + "ror_ids": [ + "https://ror.org/0192m2k53" + ] + }, + { + "affiliation": "Department of Industrial and Systems Engineering, Hong Kong Polytechnic University, Kowloon, Hong Kong", + "ror_ids": [ + "https://ror.org/0030zas98" + ] + }, + { + "affiliation": "Department of Medical Biotechnology, Faculty of Medicine, Semnan University of Medical Sciences, Semnan, Iran", + "ror_ids": [ + "https://ror.org/05y44as61" + ] + }, + { + "affiliation": "Christian Doppler Laboratory for Artificial Intelligence in Retina, Department of Ophthalmology and Optometry, Medical University of Vienna, Vienna, Austria", + "ror_ids": [ + "https://ror.org/05n3x4p02" + ] + }, + { + "affiliation": "Electrical Engineering Department, University of Engineering and Technology, Taxila, Taxila, Pakistan", + "ror_ids": [ + "https://ror.org/03v00ka07" + ] + }, + { + "affiliation": "Pediatrics, The Institute for Translational Genomics and Population Sciences, The Lundquist Institute for Biomedical Innovation at Harbor-UCLA, Torrance, USA", + "ror_ids": [ + "https://ror.org/05h4zj272" + ] + }, + { + "affiliation": "The First Hospital of Shanxi Medical University, Taiyuan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02vzqaq35" + ] + }, + { + "affiliation": "ISEG, Universidade de Lisboa and CEMAPRE/REM Research Center, Lisboa, Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86" + ] + }, + { + "affiliation": "Department of Radiation Oncology, University Medical Center Utrecht, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/0575yy874" + ] + }, + { + "affiliation": "Pharmacy Department, Hamad Medical Corporation, Doha, Qatar", + "ror_ids": [ + "https://ror.org/02zwb6n98" + ] + }, + { + "affiliation": "Facultad de Ciencias, Universidad Pedagógica y Tecnológica de Colombia, Tunja, Boyacá, Colombia", + "ror_ids": [ + "https://ror.org/04vdmbk59" + ] + }, + { + "affiliation": "Department of Environmental Engineering, Engineering Faculty, Erciyes University, Kayseri, Turkey", + "ror_ids": [ + "https://ror.org/047g8vk19" + ] + }, + { + "affiliation": "Department of Government & Justice Studies, Appalachian State University, Boone, USA", + "ror_ids": [ + "https://ror.org/051m4vc48" + ] + }, + { + "affiliation": "Klinik für Vaskuläre und Endovaskuläre Chirurgie, Universitätsklinikum Münster, Albert-Schweitzer-Campus 1, Münster, Deutschland", + "ror_ids": [ + "https://ror.org/01856cw59" + ] + }, + { + "affiliation": "Department of Earth, Atmospheric and Planetary Sciences, Massachusetts Institute of Technology, 54-1514 MIT, Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Research Campus STIMULATE, Otto-von-Guericke University Magdeburg, Magdeburg, Germany", + "ror_ids": [ + "https://ror.org/00ggpsq73" + ] + }, + { + "affiliation": "IQVIA, Lyon, France", + "ror_ids": [ + "https://ror.org/0394bpd20" + ] + }, + { + "affiliation": "Department of Criminal Justice and Sociology, University of Wyoming, Laramie, WY, USA", + "ror_ids": [ + "https://ror.org/01485tq96" + ] + }, + { + "affiliation": "Institut für Kontinuumsmechanik, Leibniz Universität Hannover, Hannover, Niedersachsen, Germany", + "ror_ids": [ + "https://ror.org/0304hq317" + ] + }, + { + "affiliation": "Macrophage Laboratory, Department of Microbiology and Immunology, and Institute of Endemic Disease, Seoul National University College of Medicine, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Fakultät für Tourismus Hochschule München, München, Deutschland", + "ror_ids": [ + "https://ror.org/012k1v959" + ] + }, + { + "affiliation": "Center for Molecular Biology of Heidelberg University (ZMBH), DKFZ-ZMBH Alliance, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/05x8b4491", + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Programa de Pós-graduação em Biotecnologia, Universidade Federal do Pará, Belém, PA, Brazil", + "ror_ids": [ + "https://ror.org/03q9sr818" + ] + }, + { + "affiliation": "Department of Rheumatology, DMU Locomotion, AP-HP Nord & Inserm UMR 1132, Bioscar (Centre Viggo Petersen), Hôpital Lariboisière, Paris, France", + "ror_ids": [ + "https://ror.org/02mqtne57" + ] + }, + { + "affiliation": "Membrane Biophysics, Institute of Genetics, CECAD, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "Institut Langevin, ESPCI Paris, Université PSL, CNRS, Paris, France", + "ror_ids": [ + "https://ror.org/02feahw73", + "https://ror.org/03zx86w41", + "https://ror.org/013cjyk83" + ] + }, + { + "affiliation": "PROmoting FITness and Health Through Physical Activity Research Group (PROFITH), Department of Physical and Sports Education, Faculty of Sports Science, University of Granada, Granada, Spain", + "ror_ids": [ + "https://ror.org/04njjy449" + ] + }, + { + "affiliation": "Centre for Research in Epidemiology and Statistics (CRESS), Université Paris Cité and Université Sorbonne Paris Nord, Inserm, INRAE, Paris, France", + "ror_ids": [ + "https://ror.org/02vjkv261", + "https://ror.org/00t9egj41", + "https://ror.org/0199hds37" + ] + }, + { + "affiliation": "Department of Mathematics, Saveetha School of Engineering, SIMATS, Chennai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/0034me914" + ] + }, + { + "affiliation": "College of Astronautics, Nanjing University of Aeronautics and Astronautics, Nanjing, China", + "ror_ids": [ + "https://ror.org/01scyh794" + ] + }, + { + "affiliation": "Institute for Infocomm Research, ASTAR, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/053rfa017" + ] + }, + { + "affiliation": "Innovative Device and Engineering Applications Laboratory, Texas Heart Institute, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/00r4vsg44" + ] + }, + { + "affiliation": "Department of HR and Organizational Behavior, ISCTE Business School, Business Research Unit (BRU-IUL), Lisbon, Portugal", + "ror_ids": [ + "https://ror.org/014837179" + ] + }, + { + "affiliation": "Department of Woman, Child and Newborn, Fondazione IRCCS Ca’ Granda Ospedale Maggiore Policlinico, Milan, Italy", + "ror_ids": [ + "https://ror.org/016zn0y21" + ] + }, + { + "affiliation": "Department of Medicine, University Hospitals, Cleveland, OH, USA", + "ror_ids": [ + "https://ror.org/0130jk839" + ] + }, + { + "affiliation": "Center for Neuroimaging, Department of Radiology and Imaging Sciences, Indiana University Melvin and Bren Simon Comprehensive Cancer Center, and Indiana Alzheimer’s Disease Research Center, Indiana University School of Medicine, Indianapolis, IN, USA", + "ror_ids": [ + "https://ror.org/00g1d7b60", + "https://ror.org/02ets8c94" + ] + }, + { + "affiliation": "Advanced Analysis and Data Center, Korea Institute of Science and Technology, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/05kzfa883" + ] + }, + { + "affiliation": "HIV Center for Clinical and Behavioral Studies, Columbia University, New York, NY, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "College of Pharmacy and Inje Institute of Pharmaceutical Sciences and Research, Inje University, Gimhae, Gyeongnam, Republic of Korea", + "ror_ids": [ + "https://ror.org/04xqwq985" + ] + }, + { + "affiliation": "Henan Key Laboratory of High Temperature Functional Ceramics, Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Global Epidemiology and Benefit-Risk Evaluation, Sanofi, Chilly-Mazarin, France", + "ror_ids": [ + "https://ror.org/02n6c9837" + ] + }, + { + "affiliation": "Cumberland Infirmary, Carlisle, UK", + "ror_ids": [ + "https://ror.org/046dm7t24" + ] + }, + { + "affiliation": "Instituto de Biodiversidade e Sustentabilidade (NUPEM), Universidade Federal do Rio de Janeiro—UFRJ, Macaé, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/03490as77" + ] + }, + { + "affiliation": "Department of Chemical and Environmental Engineering, University of Nottingham Malaysia, Semenyih, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/04mz9mt17" + ] + }, + { + "affiliation": "School of Life Sciences, Center for Cell and Developmental Biology, Chinese University of Hong Kong, New Territories, Hong Kong, China", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Terapia Intensiva Pediatrica, Dipartimento di Scienze dell’Emergenza, Anestesiologiche e Rianimazione, Fondazione Policlinico Universitario “A. Gemelli” IRCCS, Rome, Italy", + "ror_ids": [ + "https://ror.org/00rg70c39" + ] + }, + { + "affiliation": "Department of Applied Physics, KTH Royal Institute of Technology, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Department of Urban Planning and Design, Tsinghua University, Beijing, P. R. China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "State Key Laboratory of Subtropical Silviculture, Zhejiang A&F University, Hangzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02vj4rn06" + ] + }, + { + "affiliation": "Department of Advanced Endoscopy, Fujita Health University School of Medicine, Toyoake City, Aichi, Japan", + "ror_ids": [ + "https://ror.org/046f6cx68" + ] + }, + { + "affiliation": "Postgraduate School of Engineering Management, University of Johannesburg, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/04z6c2n17" + ] + }, + { + "affiliation": "Division of General Internal Medicine, Weill Cornell Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02r109517" + ] + }, + { + "affiliation": "Department of English, College of Languages and Translation, Najran University, Najran, Saudi Arabia", + "ror_ids": [ + "https://ror.org/05edw4a90" + ] + }, + { + "affiliation": "Department of Medical Sciences, Clinical Chemistry, Uppsala University, Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/048a87296" + ] + }, + { + "affiliation": "School of Communication, Nanchang Institute of Technology, Nanchang, Jiangsu, China", + "ror_ids": [ + "https://ror.org/00avfj807" + ] + }, + { + "affiliation": "Heilongjiang Provincial Key Laboratory of Trace Elements and Human Health, Harbin Medical University, Harbin, China", + "ror_ids": [ + "https://ror.org/05jscf583" + ] + }, + { + "affiliation": "Department of Biochemistry, Faculty of Agriculture, Cairo University, Giza, Egypt", + "ror_ids": [ + "https://ror.org/03q21mh05" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Faculty of Engineering, Marmara University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/02kswqa67" + ] + }, + { + "affiliation": "University of Hamburg, Hamburg, Germany", + "ror_ids": [ + "https://ror.org/00g30e956" + ] + }, + { + "affiliation": "NIHR Barts Cardiovascular Biomedical Research Centre, Barts and The London School of Medicine and Dentistry, Queen Mary University of London, London, UK", + "ror_ids": [ + "https://ror.org/026zzn846", + "https://ror.org/03m51nf34" + ] + }, + { + "affiliation": "Heidelberg Myeloma Center, Department of Hematology/Oncology, Heidelberg University Hospital, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/013czdx64" + ] + }, + { + "affiliation": "Department of Psychiatry and Behavioral Neuroscience, University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Bioanalytics, Metabolomics, and Pharmacokinetics Shared Resource, Roswell Park Comprehensive Cancer Center, Buffalo, NY, USA", + "ror_ids": [ + "https://ror.org/0499dwk57" + ] + }, + { + "affiliation": "Division of Breast Surgery, Department of Surgery, Changi General Hospital, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/02q854y08" + ] + }, + { + "affiliation": "Department of Emergency Medicine, The Ottawa Hospital, University of Ottawa, Ottawa, ON, Canada", + "ror_ids": [ + "https://ror.org/03c4mmv16", + "https://ror.org/03c62dg59" + ] + }, + { + "affiliation": "LABS, Dipartimento di Chimica, Materiali e Ingegneria Chimica “Giulio Natta”, Politecnico di Milano, Milan, Italy", + "ror_ids": [ + "https://ror.org/01nffqt88" + ] + }, + { + "affiliation": "Consumer Science Department, Faculty of Science and Agriculture, University of Zululand, Richards Bay, South Africa", + "ror_ids": [ + "https://ror.org/03v8ter60" + ] + }, + { + "affiliation": "Department of Energy Science, Periyar University, Salem, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/05crs8s98" + ] + }, + { + "affiliation": "School of Engineering and Computing Sciences, Durham University, Durham, UK", + "ror_ids": [ + "https://ror.org/01v29qb04" + ] + }, + { + "affiliation": "Istituto Dermopatico Immacolata (IDI-IRCCS), Rome, Italy", + "ror_ids": [ + "https://ror.org/02b5mfy68" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Chung Yuan Christian University, Taoyuan City, Taiwan", + "ror_ids": [ + "https://ror.org/02w8ws377" + ] + }, + { + "affiliation": "Faculty of Applied Sciences, Delft University of Technology, Delft, The Netherlands", + "ror_ids": [ + "https://ror.org/02e2c7k09" + ] + }, + { + "affiliation": "Leiden Observatory, Leiden University, Leiden, the Netherlands", + "ror_ids": [ + "https://ror.org/027bh9e22" + ] + }, + { + "affiliation": "Division of Nephrology, Department of Pediatrics, Medical University of South Carolina, Charleston, SC, USA", + "ror_ids": [ + "https://ror.org/012jban78" + ] + }, + { + "affiliation": "Department of Diagnostic and Interventional Radiology, Medical Center – University of Freiburg, Faculty of Medicine, University of Freiburg, Freiburg, Germany", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "Jiangsu Key Laboratory of Biomass-Based Green Fuels and Chemicals, Nanjing Forestry University, Nanjing, China", + "ror_ids": [ + "https://ror.org/03m96p165" + ] + }, + { + "affiliation": "Department of Biology Sciences, Institute of Environment Sciences, University of Quebec at Montreal, Montreal, Canada", + "ror_ids": [ + "https://ror.org/002rjbv21" + ] + }, + { + "affiliation": "Faculty of Pharmacy, Drug Research Program, University of Helsinki, Helsinki, Finland", + "ror_ids": [ + "https://ror.org/040af2s02" + ] + }, + { + "affiliation": "Department of Industrial and Business Management, Chang Gung University, Taoyuan City, Taiwan", + "ror_ids": [ + "https://ror.org/00d80zx46" + ] + }, + { + "affiliation": "Department of Electrical & Computer Engineering, Western University, London, ON, Canada", + "ror_ids": [ + "https://ror.org/02grkyz14" + ] + }, + { + "affiliation": "Aeronautical Engineering College, Civil Aviation University of China, Tianjin, China", + "ror_ids": [ + "https://ror.org/03je71k37" + ] + }, + { + "affiliation": "Philosophie (GW Fakultät), Universität Salzburg, Salzburg, Österreich", + "ror_ids": [ + "https://ror.org/05gs8cd61" + ] + }, + { + "affiliation": "Institut für Geographie, Lehrstuhl für Wirtschaftsgeographie, Friedrich-Schiller-Universität Jena, Jena, Deutschland", + "ror_ids": [ + "https://ror.org/05qpz1x62" + ] + }, + { + "affiliation": "Curtin University, Perth, Australia", + "ror_ids": [ + "https://ror.org/02n415q13" + ] + }, + { + "affiliation": "Department of Plastic, Aesthetic, Hand and Reconstructive Surgery, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Institute of Applied Physics and Computational Mathematics, China Academy of Engineering Physics, Beijing, China", + "ror_ids": [ + "https://ror.org/039vqpp67", + "https://ror.org/03sxpbt26" + ] + }, + { + "affiliation": "Nuclear Medicine and Diagnostic Imaging Section, Division of Human Health, Department of Nuclear Sciences and Applications, International Atomic Energy Agency, Vienna, Austria", + "ror_ids": [ + "https://ror.org/02zt1gg83" + ] + }, + { + "affiliation": "Washington University in St. Louis, St. Louis, USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Perm National Research Polytechnic University, Perm, Russia", + "ror_ids": [ + "https://ror.org/05c0ns027" + ] + }, + { + "affiliation": "Conservation International, Arlington, VA, USA", + "ror_ids": [ + "https://ror.org/024weye46" + ] + }, + { + "affiliation": "Department of Rheumatology - DMU Locomotion, Assistance Publique - Hôpitaux de Paris, Paris, France", + "ror_ids": [ + "https://ror.org/00pg5jh14" + ] + }, + { + "affiliation": "Institute for Humanitarian Research and North Indigenous People Problems, Siberian Branch, Russian Academy of Sciences, Yakutsk, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Faculty of Epidemiology and Population Health, London School of Hygiene and Tropical Medicine, London, UK", + "ror_ids": [ + "https://ror.org/00a0jsq62" + ] + }, + { + "affiliation": "Department of Thoracic Surgery, The First Affiliated Hospital of Anhui Medical University, Hefei, China", + "ror_ids": [ + "https://ror.org/03t1yn780" + ] + }, + { + "affiliation": "Frances Kirwan Mathematical Institute, University of Oxford, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Amazon, Santa Clara, CA, USA", + "ror_ids": [ + "https://ror.org/04mv4n011" + ] + }, + { + "affiliation": "Dermatologia, Dipartimento Universitario di Medicina e Chirurgia Traslazionale, Università Cattolica del Sacro Cuore, Rome, Italy", + "ror_ids": [ + "https://ror.org/03h7r5v07" + ] + }, + { + "affiliation": "ADAPT Centre, Technological University Dublin, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/04t0qbt32" + ] + }, + { + "affiliation": "Department of Applied Psychology, New York University, New York City, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "Public Health Promotion Unit, Finnish Institute for Health and Welfare, Helsinki, Finland", + "ror_ids": [ + "https://ror.org/03tf0c761" + ] + }, + { + "affiliation": "Department of Soils and Agricultural Engineering, Federal University of Paraná (UFPR), Curitiba, Parana, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "BioImaging Unit, Space Research Centre, University of Leicester, Leicester, UK", + "ror_ids": [ + "https://ror.org/04h699437" + ] + }, + { + "affiliation": "Univ Rennes, INSA Rennes, CNRS, IETR - UMR 6164, Rennes, Rennes, France", + "ror_ids": [ + "https://ror.org/015m7wh34" + ] + }, + { + "affiliation": "School of Engineering, Swinburne University of Technology, Hawthorn, VIC, Australia", + "ror_ids": [ + "https://ror.org/031rekg67" + ] + }, + { + "affiliation": "Military Institute of Engineering - IME, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/03veakt65" + ] + }, + { + "affiliation": "N. N. Vorozhtsov Novosibirsk Institute of Organic Chemistry SB RAS, Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/00tgps059" + ] + }, + { + "affiliation": "Department of Chemistry, University of Waterloo, Waterloo, ON, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "Center for Cognition and Sociality, Institute for Basic Science (IBS), Daejeon, Republic of Korea", + "ror_ids": [ + "https://ror.org/00y0zf565" + ] + }, + { + "affiliation": "Departament de Psicobiologia i de Metodologia de els Ciències de la Salut, Universitat Autònoma de Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Klinik für Anästhesiologie und Intensivmedizin, Universitätsklinikum Schleswig-Holstein, Lübeck, Deutschland", + "ror_ids": [ + "https://ror.org/01tvm6f46" + ] + }, + { + "affiliation": "Department of Biological Engineering, Massachusetts Institute of Technology, Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Department of Macromolecular Science, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "State Key Laboratory of Alternate Electrical Power System With Renewable Energy Sources, North China Electric Power University, Beijing, China", + "ror_ids": [ + "https://ror.org/04qr5t414" + ] + }, + { + "affiliation": "Department of Mathematics, Dr. B.R. Ambedkar National Institute of Technology Jalandhar, Jalandhar, Punjab, India", + "ror_ids": [ + "https://ror.org/03xt0bg88" + ] + }, + { + "affiliation": "INFN Sezione di Ferrara, Ferrara, Italy", + "ror_ids": [ + "https://ror.org/00zs3y046" + ] + }, + { + "affiliation": "Physics Department, Faculty of Science, Alexandria University, Alexandria, Egypt", + "ror_ids": [ + "https://ror.org/00mzz1w90" + ] + }, + { + "affiliation": "Centre d’Elaboration de Materiaux Et d’Etudes Structurales (CEMES), Toulouse Cedex 4, France", + "ror_ids": [ + "https://ror.org/03kwnqq69" + ] + }, + { + "affiliation": "School of Computer Science and Engineering, Anhui University of Science & Technology, Huainan, Anhui, China", + "ror_ids": [ + "https://ror.org/00q9atg80" + ] + }, + { + "affiliation": "Department of Biomedical Sciences, Faculty of Medicine, University of Malaya, Kuala Lumpur, Malaysia", + "ror_ids": [ + "https://ror.org/00rzspn62" + ] + }, + { + "affiliation": "DEVCOM Army Research Laboratory, Aberdeen Proving Ground, MD, USA", + "ror_ids": [ + "https://ror.org/011hc8f90" + ] + }, + { + "affiliation": "Boston University Alzheimer’s Disease Research Center and Department of Neurology, Boston University School of Medicine, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/05qwgg493" + ] + }, + { + "affiliation": "Department of Paediatrics, Necker Hospital for Sick Children, Paris, EU, France", + "ror_ids": [ + "https://ror.org/05tr67282" + ] + }, + { + "affiliation": "Department of Head and Neck Surgery, Institut Curie, Paris, France", + "ror_ids": [ + "https://ror.org/04t0gwh46" + ] + }, + { + "affiliation": "Department of Psychology, Florida State University, Tallahassee, FL, USA", + "ror_ids": [ + "https://ror.org/05g3dte14" + ] + }, + { + "affiliation": "Department of Nesurosurgery, Mansoura University, Mansoura, Egypt", + "ror_ids": [ + "https://ror.org/01k8vtd75" + ] + }, + { + "affiliation": "Orthopaedic Institute, Soochow Medical College, Soochow University, Suzhou, Jiangsu, China", + "ror_ids": [ + "https://ror.org/05t8y2r12" + ] + }, + { + "affiliation": "Department of Physics, Lovely Professional University, Phagwara, India", + "ror_ids": [ + "https://ror.org/00et6q107" + ] + }, + { + "affiliation": "Department of Applied Mathematics, Defence Institute of Advanced Technology, Pune, Maharashtra, India", + "ror_ids": [ + "https://ror.org/05qpbfx18" + ] + }, + { + "affiliation": "Department of Surgery, Zealand University Hospital, Koege, Denmark", + "ror_ids": [ + "https://ror.org/00363z010" + ] + }, + { + "affiliation": "Energy and Materials for Sustainability (EMS) Research Group, Division of Physical Science, Faculty of Science, Prince of Songkla University, Hat Yai, Songkhla, Thailand", + "ror_ids": [ + "https://ror.org/0575ycz84" + ] + }, + { + "affiliation": "Department of Animal Sciences, Purdue University, West Lafayette, IN, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Department of Neurosurgery, Prince Mohamed Ibn Abdelaziz Hospital, Riyadh, Kingdom of Saudi Arabia", + "ror_ids": [ + "https://ror.org/01j5awv26" + ] + }, + { + "affiliation": "North-Caucasus Federal University, Stavropol, Russia", + "ror_ids": [ + "https://ror.org/05g1k4d79" + ] + }, + { + "affiliation": "School of Aeronautics and Astronautics, Shenzhen Campus of Sun Yat-sen University, Shenzhen, China", + "ror_ids": [ + "https://ror.org/0064kty71" + ] + }, + { + "affiliation": "Department of Management, American University of Kuwait, Salmiya, Safat, Kuwait", + "ror_ids": [ + "https://ror.org/00w73cg32" + ] + }, + { + "affiliation": "CIC-FEMD/ILCEC, Key Laboratory of Meteorological Disaster of Ministry of Education (KLME), Nanjing University of Information Science and Technology, Nanjing, China", + "ror_ids": [ + "https://ror.org/02y0rxk19" + ] + }, + { + "affiliation": "Department of Clinical Pharmacology, School of Pharmacy, Nanjing Medical University, Nanjing, China", + "ror_ids": [ + "https://ror.org/059gcgy73" + ] + }, + { + "affiliation": "University of Potsdam, Potsdam, Germany", + "ror_ids": [ + "https://ror.org/03bnmw459" + ] + }, + { + "affiliation": "Texas Tech University Health Sciences Center (TTUHSC), Lubbock, Tx, USA", + "ror_ids": [ + "https://ror.org/033ztpr93" + ] + }, + { + "affiliation": "Institute of Forensic Science & Criminology, Panjab University, Chandigarh, India", + "ror_ids": [ + "https://ror.org/04p2sbk06" + ] + }, + { + "affiliation": "Hindu College, University of Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "China University of Mining and Technology, Xuzhou, China", + "ror_ids": [ + "https://ror.org/01xt2dr21" + ] + }, + { + "affiliation": "Medical Research Institute, Pusan National University, Busan, Republic of Korea", + "ror_ids": [ + "https://ror.org/01an57a31" + ] + }, + { + "affiliation": "NSW Health Pathology, Department of Anatomical Pathology, Royal North Shore Hospital, Sydney, New South Wales, Australia", + "ror_ids": [ + "https://ror.org/02gs2e959" + ] + }, + { + "affiliation": "Department of Zoology, Poznań University of Life Sciences, Poznań, Poland", + "ror_ids": [ + "https://ror.org/03tth1e03" + ] + }, + { + "affiliation": "Ministry of Education, Putrajaya, Malaysia", + "ror_ids": [ + "https://ror.org/05v8z6a72" + ] + }, + { + "affiliation": "Lunar and Planetary Institute, University Space Research Association, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/043pgqy52", + "https://ror.org/01r4eh644" + ] + }, + { + "affiliation": "Department of Pathobiology and Population Sciences, The Royal Veterinary College, London, UK", + "ror_ids": [ + "https://ror.org/01wka8n18" + ] + }, + { + "affiliation": "Department of Basic Health Sciences, Unit of Microbiology, Faculty of Medicine and Health Sciences, Institut d’Investigació Sanitària Pere Virgili, Universitat Rovira i Virgili, Reus, Spain", + "ror_ids": [ + "https://ror.org/00g5sqv46", + "https://ror.org/01av3a615" + ] + }, + { + "affiliation": "Department of Ophthalmology, Gülhane Training and Research Hospital, University of Health Sciences, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, University of Toyama, Toyama-shi, Toyama, Japan", + "ror_ids": [ + "https://ror.org/0445phv87" + ] + }, + { + "affiliation": "School of Business, Nanjing Normal University, Nanjing, Jiangsu, China", + "ror_ids": [ + "https://ror.org/036trcv74" + ] + }, + { + "affiliation": "Department of Medicine and Department of Social and Preventive Medicine, Université de Montréal, Montréal, QC, Canada", + "ror_ids": [ + "https://ror.org/0161xgx34" + ] + }, + { + "affiliation": "Department of Civil and Construction Engineering, College of Engineering, Imam Abdulrahman Bin Faisal University, Dammam, Saudi Arabia", + "ror_ids": [ + "https://ror.org/038cy8j79" + ] + }, + { + "affiliation": "Ukrainian State University of Chemical Technology, Dnipro, Ukraine", + "ror_ids": [ + "https://ror.org/031bs2a09" + ] + }, + { + "affiliation": "Department of Clinical and Toxicological Analyses, School of Pharmaceutical Sciences, University of Sao Paulo, Sao Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Food and Nutrition, The Maharaja Sayajirao University of Baroda, Vadodara, India", + "ror_ids": [ + "https://ror.org/01bx8ja67" + ] + }, + { + "affiliation": "Center for Rare Diseases, University of Leipzig Medical Center, Leipzig, Germany", + "ror_ids": [ + "https://ror.org/03s7gtk40" + ] + }, + { + "affiliation": "Cloud Computing Smart Cities and High Perfomance Computing Group, Universidad Politécnica Salesiana, Cuenca, Ecuador", + "ror_ids": [ + "https://ror.org/00f11af73" + ] + }, + { + "affiliation": "Department of Hematology and Oncology, Instituto Nacional de Ciencias Médicas y Nutrición Salvador Zubirán, Mexico City, Mexico", + "ror_ids": [ + "https://ror.org/00xgvev73" + ] + }, + { + "affiliation": "Experimental Animal Division, RIKEN BioResource Research Center, Tsukuba, Japan", + "ror_ids": [ + "https://ror.org/00s05em53" + ] + }, + { + "affiliation": "Laboratory of Pediatric and Respiratory Virus Diseases, Division of Viral Products, Office of Vaccines Research and Review, Center for Biologics Evaluation and Research, Food and Drug Administration, Silver Spring, MD, USA", + "ror_ids": [ + "https://ror.org/02nr3fr97" + ] + }, + { + "affiliation": "Department of Medical Sciences and Public Health, University of Cagliari, Cagliari, Italia", + "ror_ids": [ + "https://ror.org/003109y17" + ] + }, + { + "affiliation": "Department of Thoracic/Head and Neck Medical Oncology, University of Texas MD Anderson Cancer Center, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Princeton Center for Theoretical Science and Physics Department, Princeton University, Princeton, NJ, USA", + "ror_ids": [ + "https://ror.org/00hx57361" + ] + }, + { + "affiliation": "Laboratorio de Ecología, Fisiología y Evolución de Organismos Acuáticos, Centro Austral de Investigaciones Científicas (CADIC-CONICET), Ushuaia, Tierra del Fuego, Argentina", + "ror_ids": [ + "https://ror.org/03cqe8w59" + ] + }, + { + "affiliation": "Engineering Research Center of Advanced Metal Composites Forming Technology and Equipment, Ministry of Education, Taiyuan, China", + "ror_ids": [ + "https://ror.org/03m01yf64" + ] + }, + { + "affiliation": "Department of Women’s and Children’s Health, University of Liverpool, Liverpool Health Partners, Liverpool, UK", + "ror_ids": [ + "https://ror.org/04xs57h96" + ] + }, + { + "affiliation": "Laboratory of Software Engineering for Complex Systems, National University of Defense Technology, Changsha, China", + "ror_ids": [ + "https://ror.org/05d2yfz11" + ] + }, + { + "affiliation": "Department of Biologic & Materials Sciences, School of Dentistry, University Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Department of Nuclear Medicine, Henry Dunant Hospital Centre, Athens, Greece", + "ror_ids": [ + "https://ror.org/05n7t4h40" + ] + }, + { + "affiliation": "Department of Artificial Intelligence, Indian Institute of Technology Hyderabad, Kandi, TS, India", + "ror_ids": [ + "https://ror.org/01j4v3x97" + ] + }, + { + "affiliation": "School of Sport and Health Sciences, University of Brighton, Eastbourne, UK", + "ror_ids": [ + "https://ror.org/04kp2b655" + ] + }, + { + "affiliation": "Division of Genetics, ICAR-Indian Agricultural Research Institute, New Delhi, India", + "ror_ids": [ + "https://ror.org/01bzgdw81" + ] + }, + { + "affiliation": "Myology Laboratory, Institute of Biomedical Problems RAS, Moscow, Russia", + "ror_ids": [ + "https://ror.org/016hfp155" + ] + }, + { + "affiliation": "Lady Davis Institute, McGill University, Montreal, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Department of Urology and Organ Transplantation, University of Foggia, Foggia, Italy", + "ror_ids": [ + "https://ror.org/01xtv3204" + ] + }, + { + "affiliation": "Department of Mental Health and Diseases Nursing, Faculty of Nursing, Aydın Adnan Menderes University, Aydın, Turkey", + "ror_ids": [ + "https://ror.org/03n7yzv56" + ] + }, + { + "affiliation": "Guangxi Key Laboratory of Marine Natural Products and Combinatorial Biosynthesis Chemistry, Guangxi Beibu Gulf Marine Research Center, Guangxi Academy of Sciences, Nanning, Guangxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/054x1kd82" + ] + }, + { + "affiliation": "Kansas City Kansas Community College (Ret.), Kansas City, KS, USA", + "ror_ids": [ + "https://ror.org/02ckz2f26" + ] + }, + { + "affiliation": "Abteilung für Biophysikalische Chemie, Max-Planck-Institut für Biophysik, Frankfurt a. M., Germany", + "ror_ids": [ + "https://ror.org/02panr271" + ] + }, + { + "affiliation": "State Key Laboratory of Cellular Stress Biology, School of Medicine, Xiamen University, Xiamen, China", + "ror_ids": [ + "https://ror.org/00mcjh785" + ] + }, + { + "affiliation": "Institute for Nuclear Research of the National Academy of Sciences (KINR), Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/052kdcb58" + ] + }, + { + "affiliation": "Department of Stomatology, Nanfang Hospital, Southern Medical University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/01vjw4z39" + ] + }, + { + "affiliation": "Department of Biotechnology, Microbiology and Human Nutrition, Faculty of Food Science and Biotechnology, University of Life Sciences in Lublin, Lublin, Poland", + "ror_ids": [ + "https://ror.org/03hq67y94" + ] + }, + { + "affiliation": "Faculty of Automatic Control, Electronics and Computer Science, Silesian University of Technology, Gliwice, Poland", + "ror_ids": [ + "https://ror.org/02dyjk442" + ] + }, + { + "affiliation": "Department of Surgery, Oncology and Gastroenterology, University of Padua, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Department of Business Administration, Niğde Ömer Halisdemir University, Niğde, Turkey", + "ror_ids": [ + "https://ror.org/03ejnre35" + ] + }, + { + "affiliation": "Division of Mathematics and Physics, School of Education, Mälardalen University, Västerås, Sweden", + "ror_ids": [ + "https://ror.org/033vfbz75" + ] + }, + { + "affiliation": "Division of Emergency Medicine, Department of Medicine, McMaster University, Hamilton, ON, Canada", + "ror_ids": [ + "https://ror.org/02fa3aq29" + ] + }, + { + "affiliation": "Department of Neurology, Memory and Aging Center, University of California San Francisco, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Northern Jiangsu People’s Hospital, Yangzhou, China", + "ror_ids": [ + "https://ror.org/04gz17b59" + ] + }, + { + "affiliation": "Investigadores por México-CONAHCYT, Servicio de Clima Espacial México, Laboratorio Nacional de Clima Espacial, Instituto de Geofísica, Unidad Michoacán, Universidad Nacional Autónoma de México, Morelia, Michoacán, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "Robert Stempel College of Public Health & Social Work, Florida International University, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/02gz6gg07" + ] + }, + { + "affiliation": "Clinic for Urology, Clinic for Medical Oncology, University Hospital Essen, Essen, Germany", + "ror_ids": [ + "https://ror.org/02na8dn90" + ] + }, + { + "affiliation": "Department of Civil Engineering, Government College of Engineering, Keonjhar, Odisha, India", + "ror_ids": [ + "https://ror.org/02b1vt080" + ] + }, + { + "affiliation": "Department of Nephrology and Transplantation, Beaumont Hospital, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/043mzjj67" + ] + }, + { + "affiliation": "Medical AI Center, Niigata University School of Medicine, Niigata City, Niigata, Japan", + "ror_ids": [ + "https://ror.org/04ww21r56" + ] + }, + { + "affiliation": "CENTRUM Católica Graduate Business School, Pontificia Universidad Católica del Perú, Lima, Peru", + "ror_ids": [ + "https://ror.org/00013q465" + ] + }, + { + "affiliation": "Department of Epidemiology and Biostatistics, Erasmus University Medical Center, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/018906e22" + ] + }, + { + "affiliation": "Department of Economics, Ritsumeikan University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/0197nmd03" + ] + }, + { + "affiliation": "Centre for Epidemiology and Biostatistics, Melbourne School of Population and Global Health, The University of Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "ICAR-Indian Agricultural Statistics Research Institute, New Delhi, India", + "ror_ids": [ + "https://ror.org/03kkevc75" + ] + }, + { + "affiliation": "Department of Intervention, National Cancer Center/National Clinical Research Center for Cancer/Cancer Hospital, Chinese Academy of Medical Sciences and Peking Union Medical College, Beijing, China", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "AGH University of Science and Technology, FPACS, Cracow, Poland", + "ror_ids": [ + "https://ror.org/00bas1c41" + ] + }, + { + "affiliation": "Department of Communicative Sciences and Disorders, New York University, New York, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "Division of Engineering, New York University Abu Dhabi, Abu Dhabi, UAE", + "ror_ids": [ + "https://ror.org/00e5k0821" + ] + }, + { + "affiliation": "INSERM U1148, Paris, France", + "ror_ids": [ + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Faculty of Business, Design, and Arts, Swinburne University of Technology Sarawak Campus, Kuching, Malaysia", + "ror_ids": [ + "https://ror.org/014cjmc76" + ] + }, + { + "affiliation": "Institute of Cardiovascular Science, Division of Medicine, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "University Grenoble Alpes, Inserm, CEA, IRIG-Biosanté, UMR 1292, Grenoble, France", + "ror_ids": [ + "https://ror.org/02mg6n827", + "https://ror.org/02vjkv261", + "https://ror.org/02rx3b187" + ] + }, + { + "affiliation": "Department of Earth Sciences, Utrecht University, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "Knowledge Technology, Department of Informatics, University of Hamburg, Hamburg, Germany", + "ror_ids": [ + "https://ror.org/00g30e956" + ] + }, + { + "affiliation": "EMBL-EBI, Hinxton, UK", + "ror_ids": [ + "https://ror.org/02catss52" + ] + }, + { + "affiliation": "Academy of Medical Science, Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Federal University of Rio Grande do Sul, UFRGS, Porto Alegre, RS, Brazil", + "ror_ids": [ + "https://ror.org/041yk2d64" + ] + }, + { + "affiliation": "Precision Mechanical Process and Control R&D Group, Korea Institute of Industrial Technology, Jinju-si, Gyeongsangnam-do, Republic of Korea", + "ror_ids": [ + "https://ror.org/04qfph657" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Sardar Vallabhbhai National Institute of Technology - Surat, Surat, Gujarat, India", + "ror_ids": [ + "https://ror.org/02y394t43" + ] + }, + { + "affiliation": "São Paulo State University (Unesp), São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Department of Psychological and Brain Sciences, Drexel University, Philadelphia, USA", + "ror_ids": [ + "https://ror.org/04bdffz58" + ] + }, + { + "affiliation": "University of Strasbourg, Strasbourg, France", + "ror_ids": [ + "https://ror.org/00pg6eq24" + ] + }, + { + "affiliation": "School of Earth and Environmental Sciences, Cardiff University, Cardiff, UK", + "ror_ids": [ + "https://ror.org/03kk7td41" + ] + }, + { + "affiliation": "Geographisches Institut und Center for American Studies, Universität Heidelberg, Heidelberg, Deutschland", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "West China Biomedical Big Data Center, Sichuan University West China Hospital, Chengdu, China", + "ror_ids": [ + "https://ror.org/007mrxy13" + ] + }, + { + "affiliation": "Departamento de Ingeniería Química, Universidad de Guadalajara, Guadalajara, Jalisco, México", + "ror_ids": [ + "https://ror.org/043xj7k26" + ] + }, + { + "affiliation": "Department of Administrative Science, Hasanuddin University, Makassar, Indonesia", + "ror_ids": [ + "https://ror.org/00da1gf19" + ] + }, + { + "affiliation": "School of Biological Sciences, Doon University, Dehradun, Uttarakhand, India", + "ror_ids": [ + "https://ror.org/016yc1h10" + ] + }, + { + "affiliation": "Penn Presbyterian Medical Center, Heart and Vascular Pavilion, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00swv7d52" + ] + }, + { + "affiliation": "Division of Environmental Health Sciences, University of California Berkeley School of Public Health, Berkeley, CA, USA", + "ror_ids": [ + "https://ror.org/01an7q238" + ] + }, + { + "affiliation": "Endocrinology and Metabolism Research Center, Institute of Basic and Clinical Physiology Science, & Physiology Research Center, Kerman University of Medical Sciences, Kerman, Iran", + "ror_ids": [ + "https://ror.org/02kxbqc24" + ] + }, + { + "affiliation": "Joint Key Laboratory of the Ministry of Education, Institute of Applied Physics and Materials Engineering, University of Macau, Macau, China", + "ror_ids": [ + "https://ror.org/01r4q9n85" + ] + }, + { + "affiliation": "College of Agriculture, Shihezi University, Shihezi, Xinjiang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04x0kvm78" + ] + }, + { + "affiliation": "Computer engineering and Control systems Department, Faculty of Engineering, Mansoura University, Mansoura, Egypt", + "ror_ids": [ + "https://ror.org/01k8vtd75" + ] + }, + { + "affiliation": "Department of Mathematics, Michigan State University, East Lansing, USA", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "Faculty of Sciences, Chouaib Doukkali University, El Jadida, Morocco", + "ror_ids": [ + "https://ror.org/036kgyt43" + ] + }, + { + "affiliation": "School of Economics and Trade, Kyungpook National University, Bukgu, Daegu, Korea", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "Departamento de Matemáticas, Universidad de Valéncia, Burjasot, Spain", + "ror_ids": [ + "https://ror.org/043nxc105" + ] + }, + { + "affiliation": "Department of Hematology, Qilu Hospital of Shandong University, Qingdao, Shandong, People’s Republic of China", + "ror_ids": [ + "https://ror.org/056ef9489" + ] + }, + { + "affiliation": "Plos, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/008zgvp64" + ] + }, + { + "affiliation": "National Clinical Research Center for Geriatric Diseases, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/007mrxy13" + ] + }, + { + "affiliation": "College of Engineering, Mathematics and Physical Sciences, University of Exeter, Exeter, UK", + "ror_ids": [ + "https://ror.org/03yghzc09" + ] + }, + { + "affiliation": "Pathology-DNA, Location Rijnstate Hospital, Arnhem, the Netherlands", + "ror_ids": [ + "https://ror.org/0561z8p38" + ] + }, + { + "affiliation": "Nanotechnology and Nanomedicine Lab-6 (IIRC), Department of Biosciences, Integral University, Lucknow, India", + "ror_ids": [ + "https://ror.org/039zd5s34" + ] + }, + { + "affiliation": "Department of Preventive Medicine, Graduate School of Medicine, The University of Tokyo, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Regional Children’s Hospital, Ekaterinburg, Russian Federation", + "ror_ids": [ + "https://ror.org/054p08670" + ] + }, + { + "affiliation": "BGI Tech Solutions, Co., Ltd. BGI Shenzhen, Shenzhen, China", + "ror_ids": [ + "https://ror.org/045pn2j94" + ] + }, + { + "affiliation": "Department of Artificial Intelligence, Faculty of Informatics, Eötvös Loránd University, Budapest, Hungary", + "ror_ids": [ + "https://ror.org/01jsq2704" + ] + }, + { + "affiliation": "i2SouI - Innovative Imaging in Surgical Oncology Ulm, University Hospital Ulm, Ulm, Germany", + "ror_ids": [ + "https://ror.org/05emabm63" + ] + }, + { + "affiliation": "Research Center for Advanced Materials, Faculty of Materials Engineering, Sahand University of Technology, Tabriz, Iran", + "ror_ids": [ + "https://ror.org/03wdrmh81" + ] + }, + { + "affiliation": "School of Livelihoods and Development, Tata Institute of Social Sciences, Hyderabad, India", + "ror_ids": [ + "https://ror.org/05jte2q37" + ] + }, + { + "affiliation": "Istituto di Chimica dei Composti Organometallici (ICCOM), CNR, Pisa, Italy", + "ror_ids": [ + "https://ror.org/04zaypm56", + "https://ror.org/02fkw1114" + ] + }, + { + "affiliation": "Lab 1. Cancer Research Center, Institute of Cancer Molecular and Cellular Biology, CSIC-University of Salamanca and CIBERONC, Salamanca, Spain", + "ror_ids": [ + "https://ror.org/02f40zc51" + ] + }, + { + "affiliation": "Department of Neurology, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, Henan, China", + "ror_ids": [ + "https://ror.org/056swr059" + ] + }, + { + "affiliation": "Neuroradiology Unit (DS), University Hospital of Padova, Padova, Italy", + "ror_ids": [ + "https://ror.org/05xrcj819" + ] + }, + { + "affiliation": "School of Environmental Sciences, University of East Anglia, Norwich, UK", + "ror_ids": [ + "https://ror.org/026k5mg93" + ] + }, + { + "affiliation": "Department of Chemistry, Jeju National University, Jeju-si, Jeju Province, Republic of Korea", + "ror_ids": [ + "https://ror.org/05hnb4n85" + ] + }, + { + "affiliation": "Doctoral School, Polytechnic University of Bucharest, Bucharest, Romania", + "ror_ids": [ + "https://ror.org/0558j5q12" + ] + }, + { + "affiliation": "Department of Biology, Central Tehran Branch, Islamic Azad University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01kzn7k21", + "https://ror.org/03a11m818" + ] + }, + { + "affiliation": "Pharmaceutical and Molecular Biotechnology Research Centre, SETU, Waterford, Ireland", + "ror_ids": [] + }, + { + "affiliation": "Academy of Language Studies, Centre of Foundation Studies, Universiti Teknologi MARA, Kampus Dengkil, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/05n8tts92" + ] + }, + { + "affiliation": "Ningbo No. 6 Hospital Affiliated to Ningbo University, Ningbo, China", + "ror_ids": [ + "https://ror.org/03et85d35", + "https://ror.org/054qnke07" + ] + }, + { + "affiliation": "School of Telecommunications Engineering, Xidian University, Xi’an, China", + "ror_ids": [ + "https://ror.org/05s92vm98" + ] + }, + { + "affiliation": "Department of CSE, National Institute of Technology Patna, Patna, India", + "ror_ids": [ + "https://ror.org/056wyhh33" + ] + }, + { + "affiliation": "Comparative Zoology, Institute for Biology, Humboldt-Universität zu Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/01hcx6992" + ] + }, + { + "affiliation": "Department of Pathology, The Research Institute of Fox Chase Cancer Center, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/0567t7073" + ] + }, + { + "affiliation": "Beijing Institute of Control Engineering, Beijing, China", + "ror_ids": [ + "https://ror.org/025397a59" + ] + }, + { + "affiliation": "School of Business and Economics, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/008xxew50" + ] + }, + { + "affiliation": "University of Nevada, Las Vegas, Las Vegas, NV, USA", + "ror_ids": [ + "https://ror.org/0406gha72" + ] + }, + { + "affiliation": "Department of Chemical Sciences, Faculty of Natural Sciences, Ariel University, Ariel, Israel", + "ror_ids": [ + "https://ror.org/03nz8qe97" + ] + }, + { + "affiliation": "Department of Neonatology, Ankara Etlik City Hospital, University of Health Sciences, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "Population Health Research Institute, St George’s University of London, London, UK", + "ror_ids": [ + "https://ror.org/040f08y74" + ] + }, + { + "affiliation": "Liaoning University of International Business and Economics, Dalian, China", + "ror_ids": [ + "https://ror.org/03m6hya42" + ] + }, + { + "affiliation": "Institute of Chronic Disease Risks Assessment, School of Nursing and Health Sciences, Henan University, Kaifeng, People’s Republic of China", + "ror_ids": [ + "https://ror.org/003xyzq10" + ] + }, + { + "affiliation": "Department of Speech and Language Therapy, Faculty of Health Sciences, Anadolu University, Eskişehir, Turkey", + "ror_ids": [ + "https://ror.org/05nz37n09" + ] + }, + { + "affiliation": "Federal Research and Training Centre for Forests, Natural Hazards and Landscape (BFW), Vienna, Austria", + "ror_ids": [ + "https://ror.org/05memys52" + ] + }, + { + "affiliation": "Graduate School of Biomedical Sciences, Tokushima University, Tokushima-Shi, Tokushima, Japan", + "ror_ids": [ + "https://ror.org/044vy1d05" + ] + }, + { + "affiliation": "Lurie Children's Hospital, Northwestern Memorial Hospital, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/009543z50", + "https://ror.org/03a6zw892" + ] + }, + { + "affiliation": "San Raffaele Hospital, Milan, Italy", + "ror_ids": [ + "https://ror.org/039zxt351" + ] + }, + { + "affiliation": "Department of Criminology, Criminal Law and Social Law, Knowledge and Research Platform On Privacy, Information Exchange, Law Enforcement and Surveillance (PIXLES), Institute for International Research On Criminal Policy (IRCP), Ghent University, , Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Guangdong Provincial Key Laboratory of Single Cell Technology and Application, Guangzhou, China", + "ror_ids": [ + "https://ror.org/00swtqp09" + ] + }, + { + "affiliation": "Dipartimento di Agraria, University Mediterranea of Reggio Calabria, Reggio Calabria, Italy", + "ror_ids": [ + "https://ror.org/041sz8d87" + ] + }, + { + "affiliation": "Beijing Research Institute, China Telecom Corporation Limited, Beijing, China", + "ror_ids": [ + "https://ror.org/04vpesy43", + "https://ror.org/05p67dv18" + ] + }, + { + "affiliation": "State Key Lab. for Novel Software Technology, Nanjing University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "Division of Thoracic Surgery, Tochigi Cancer Center, Toshigi, Japan", + "ror_ids": [ + "https://ror.org/03eg72e39" + ] + }, + { + "affiliation": "Faculty of Cultural and Social Sciences, Cultural and Communication Sciences, Turkish-German University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/017bbc354" + ] + }, + { + "affiliation": "CT Building, The University of Newcastle, Callaghan, NSW, Australia", + "ror_ids": [ + "https://ror.org/00eae9z71" + ] + }, + { + "affiliation": "College of Science, Hunan Universtiy of Science and Engineering, Yongzhou, China", + "ror_ids": [ + "https://ror.org/04ymz0q33" + ] + }, + { + "affiliation": "Materials and Process Simulation Center, California Institute of Technology, Pasadena, CA, USA", + "ror_ids": [ + "https://ror.org/05dxps055" + ] + }, + { + "affiliation": "Department of CSE, Nitte Meenakshi Institute of Technology, Bengaluru, India", + "ror_ids": [ + "https://ror.org/00ha14p11" + ] + }, + { + "affiliation": "College of Safety Science and Engineering, Xi’an University of Science and Technology, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/046fkpt18" + ] + }, + { + "affiliation": "Department of Ophthalmology, Centre Hospitalier Intercommunal de Créteil 40, avenue de Verdun, Créteil, France", + "ror_ids": [ + "https://ror.org/04n1nkp35" + ] + }, + { + "affiliation": "School of Materials Science and Engineering at Chongqing Jiaotong University, Chongqing, China", + "ror_ids": [ + "https://ror.org/01t001k65" + ] + }, + { + "affiliation": "Department of Radio Physics and Electronics, University of Calcutta, Kolkata, West Bengal, India", + "ror_ids": [ + "https://ror.org/01e7v7w47" + ] + }, + { + "affiliation": "Institute of Laser Physics, Russian Academy of Sciences, Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25", + "https://ror.org/00b5qjr76" + ] + }, + { + "affiliation": "CRUK Cambridge Institute, University of Cambridge, Cambridge, UK", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Center for Innovation Management, Xinjiang University, Urumqi, China", + "ror_ids": [ + "https://ror.org/059gw8r13" + ] + }, + { + "affiliation": "Université Paris-Saclay, ENS Paris-Saclay, CNRS, PPSM, Gif-Sur-Yvette, France", + "ror_ids": [ + "https://ror.org/03xjwb503" + ] + }, + { + "affiliation": "Department of Geology, American University of Beirut, Beirut, Lebanon", + "ror_ids": [ + "https://ror.org/04pznsd21" + ] + }, + { + "affiliation": "Department of Mathematics and Statistics in Medical Sciences, Kyoto Prefectural University of Medicine, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/028vxwa22" + ] + }, + { + "affiliation": "Cluster of Excellence PhoenixD (Photonics, Optics, and Engineering - Innovation Across Disciplines), Leibniz University Hannover, Hannover, Germany", + "ror_ids": [ + "https://ror.org/0304hq317" + ] + }, + { + "affiliation": "Department of Food Science and Nutrition & Kimchi Research Institute, Pusan National University, Busan, Republic of Korea", + "ror_ids": [ + "https://ror.org/01an57a31" + ] + }, + { + "affiliation": "Department of Mathematics and Computer Science, University of Ferrara, Ferrara, Italy", + "ror_ids": [ + "https://ror.org/041zkgm14" + ] + }, + { + "affiliation": "Department of Textile Engineering, Chemistry & Science, North Carolina State University, Raleigh, NC, USA", + "ror_ids": [ + "https://ror.org/04tj63d06" + ] + }, + { + "affiliation": "University of Padua, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Universidad San Sebastián, Valdivia, Chile", + "ror_ids": [ + "https://ror.org/04jrwm652" + ] + }, + { + "affiliation": "College of Science and Engineering, Hamad Bin Khalifa University, Ar Rayyan, Qatar", + "ror_ids": [ + "https://ror.org/03eyq4y97" + ] + }, + { + "affiliation": "NUS Environmental Research Institute, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, University of California at Merced, Merced, California, USA", + "ror_ids": [ + "https://ror.org/00d9ah105" + ] + }, + { + "affiliation": "Department of Infectious Diseases, Bahrain Oncology Center, King Hamad University Hospital, Muharraq, Bahrain", + "ror_ids": [ + "https://ror.org/0538fxe03" + ] + }, + { + "affiliation": "Department of Industrial Engineering and Economics, School of Engineering, Tokyo Institute of Technology, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/0112mx960" + ] + }, + { + "affiliation": "Kinderradiologie, St. Josefskrankenhaus Freiburg, Freiburg, Deutschland", + "ror_ids": [ + "https://ror.org/05scpew87" + ] + }, + { + "affiliation": "Department of Cell Biology, Regeneration Next Initiative, Duke University Medical Center, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/03njmea73" + ] + }, + { + "affiliation": "Department of Chemistry and Physics, Agrifood Campus of International Excellence (ceiA3), University of Almeria, Almeria, Spain", + "ror_ids": [ + "https://ror.org/003d3xx08" + ] + }, + { + "affiliation": "Department of Radiology, Gansu Provincial Hospital, Lanzhou, Gansu, China", + "ror_ids": [ + "https://ror.org/02axars19" + ] + }, + { + "affiliation": "School of Kinesiology and Health, Queen’s University, Kingston, ON, Canada", + "ror_ids": [ + "https://ror.org/02y72wh86" + ] + }, + { + "affiliation": "Fac Sciences, Dept of Mathematics, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/008xxew50" + ] + }, + { + "affiliation": "New South Wales Department of Primary Industries, Sydney Institute of Marine Science, Mosman, NSW, Australia", + "ror_ids": [ + "https://ror.org/03ry2ah66", + "https://ror.org/050khh066" + ] + }, + { + "affiliation": "Department of Neurosurgery, Hospital Adventista de Manaus, Amazonas, Brazil", + "ror_ids": [ + "https://ror.org/02jkz3g13" + ] + }, + { + "affiliation": "UniSA STEM, University of South Australia, Adelaide, SA, Australia", + "ror_ids": [ + "https://ror.org/01p93h210" + ] + }, + { + "affiliation": "Department of Botany, Patliputra University, Patna, Bihar, India", + "ror_ids": [ + "https://ror.org/04rjeh836" + ] + }, + { + "affiliation": "St. Francis Hospital and Heart Center, Roslyn, NY, USA", + "ror_ids": [ + "https://ror.org/00mj4n083" + ] + }, + { + "affiliation": "South-Eastern Finland University of Applied Sciences, Mikkeli, Finland", + "ror_ids": [ + "https://ror.org/051v6v138" + ] + }, + { + "affiliation": "Pharmaceutical Microbiology Department, Faculty of Pharmacy, Alexandria University, Alexandria, Egypt", + "ror_ids": [ + "https://ror.org/00mzz1w90" + ] + }, + { + "affiliation": "Servei de Medicina Intensiva, Hospital Universitari Arnau de Vilanova, Institut de Recerca Biomèdica de Lleida, Universitat de Lleida, Lleida, Spain", + "ror_ids": [ + "https://ror.org/050c3cw24", + "https://ror.org/03mfyme49", + "https://ror.org/01p3tpn79" + ] + }, + { + "affiliation": "Departamento de Zootecnia, Universidad Autónoma Chapingo, Texcoco, Mexico", + "ror_ids": [ + "https://ror.org/04ctjby61" + ] + }, + { + "affiliation": "School of Finance and Accounting, Department of Economics, University of Vaasa, Vaasa, Finland", + "ror_ids": [ + "https://ror.org/03769b225" + ] + }, + { + "affiliation": "Department of Radiology, University of California Davis, Davis, CA, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Área do Conhecimento de Ciências Exatas e Engenharias, Universidade de Caxias do Sul, Caxias do Sul, RS, Brazil", + "ror_ids": [ + "https://ror.org/05rpzs058" + ] + }, + { + "affiliation": "Naturalis Biodiversity Center, Leiden, Netherlands", + "ror_ids": [ + "https://ror.org/0566bfb96" + ] + }, + { + "affiliation": "College of Information and Computer Sciences, University of Massachusetts Amherst, Amherst, MA, USA", + "ror_ids": [ + "https://ror.org/0072zz521" + ] + }, + { + "affiliation": "School of Information Science and Technology, Guangdong University of Foreign Studies, Guangzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00fhc9y79" + ] + }, + { + "affiliation": "Oncology Division, Department of Biomedical and Clinical Science, Faculty of Medicine, Linköping University, Linköping, Sweden", + "ror_ids": [ + "https://ror.org/05ynxx418" + ] + }, + { + "affiliation": "Department of Curriculum and Instruction, University of Minnesota, Minneapolis, MN, USA", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "Qingdao Joint Institute of Marine Meteorology, Chinese Academy of Meteorological Sciences, Qingdao, PR China", + "ror_ids": [ + "https://ror.org/034b53w38" + ] + }, + { + "affiliation": "Institute for Regenerative Medicine, Shanghai East Hospital, School of Life Sciences and Technology, Tongji University, Shanghai, China", + "ror_ids": [ + "https://ror.org/038xmzj21", + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "Division of Applied Life Sciences and Plant Molecular Biology and Biotechnology Research Center (PMBBRC), Gyeongsang National University, Jinju, Republic of Korea", + "ror_ids": [ + "https://ror.org/00saywf64" + ] + }, + { + "affiliation": "Croatian Institute for Brain Research, Center of Research Excellence for Basic, Clinical and Translational Neuroscience, University of Zagreb, School of Medicine, Zagreb, Croatia", + "ror_ids": [ + "https://ror.org/00mv6sv71" + ] + }, + { + "affiliation": "The Economics School of Louvain, Université Catholique de Louvain, Ottignies-Louvain-la-Neuve, Belgium", + "ror_ids": [ + "https://ror.org/02495e989" + ] + }, + { + "affiliation": "Department of Kinesiology, Faculty of Medicine, Université Laval, Québec, Canada", + "ror_ids": [ + "https://ror.org/04sjchr03" + ] + }, + { + "affiliation": "Department of Computer Engineering, J.C. BOSE University of Science and Technology, YMCA, Faridabad, Haryana, India", + "ror_ids": [ + "https://ror.org/014jqnm52" + ] + }, + { + "affiliation": "Division of Neurosurgery, Department of Clinical Neurosciences, University of Cambridge-Professor-Emeritus of Brain Physics, Cambridge, UK", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Department of Agricultural and Environmental Science, University of Milan, Milan, Italy", + "ror_ids": [ + "https://ror.org/00wjc7c48" + ] + }, + { + "affiliation": "Research and Development Centre, Indian Oil Corporation Ltd, Faridabad, Haryana, India", + "ror_ids": [ + "https://ror.org/02s9tm513" + ] + }, + { + "affiliation": "Centre of Physics of Minho and Porto Universities (CF-UM-UP), Laboratory for Materials and Emergent Technologies (LAPMET), University of Minho, Braga, Portugal", + "ror_ids": [ + "https://ror.org/037wpkx04" + ] + }, + { + "affiliation": "DKRZ/IPCC DDC German Climate Computing Center (DKRZ), Hamburg, Germany", + "ror_ids": [ + "https://ror.org/03ztgj037" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, NIT Durgapur, Durgapur, India", + "ror_ids": [ + "https://ror.org/04ds0jm32" + ] + }, + { + "affiliation": "Department of Marine Geology and Geophysics, Cochin University of Science and Technology, Cochin, India", + "ror_ids": [ + "https://ror.org/00a4kqq17" + ] + }, + { + "affiliation": "Heilongjiang Provincial Key Laboratory of Prevention and Control of Bovine Diseases, College of Animal Science and Veterinary Medicine, Heilongjiang Bayi Agricultural University, Daqing, Heilongjiang, China", + "ror_ids": [ + "https://ror.org/030jxf285" + ] + }, + { + "affiliation": "Geodetic Observatory Wettzell, Federal Agency of Cartography and Geodesy, Bad Kötzting, Germany", + "ror_ids": [ + "https://ror.org/01q6zce06" + ] + }, + { + "affiliation": "School of Biomedical Sciences, The University of Hong Kong, Pok Fu Lam, Hong Kong", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "Endocrinology Unit, Medical-Geriatric Department, Careggi University Hospital, Florence, Italy", + "ror_ids": [ + "https://ror.org/02crev113" + ] + }, + { + "affiliation": "Department of Computer Science, BINUS Graduate Program - Doctor of Computer Science, Bina Nusantara University, Jakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03zmf4s77" + ] + }, + { + "affiliation": "School of Mathematics and Statistics, University of Sydney, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Institute of New Materials, Guangdong Academy of Sciences, National Engineering Research Center of Powder Metallurgy of Titanium & Rare Metals, Guangdong Provincial Key Laboratory of Metal Toughening Technology and Application, Guangzhou, China", + "ror_ids": [ + "https://ror.org/00swtqp09", + "https://ror.org/01g9hkj35" + ] + }, + { + "affiliation": "Electronics and Communication Engineering Department, Dayananda Sagar College of Engineering, Bengaluru, India", + "ror_ids": [ + "https://ror.org/00ha14p11" + ] + }, + { + "affiliation": "Centre for Theoretical Study, Charles University, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/024d6js02" + ] + }, + { + "affiliation": "Graduate School Department of Toxicology, Daegu Catholic University, Gyeongsan, Republic of Korea", + "ror_ids": [ + "https://ror.org/04fxknd68" + ] + }, + { + "affiliation": "Department of Cardiology, Tokyo Bay Urayasu Ichikawa Medical Center, Urayasu, Japan", + "ror_ids": [ + "https://ror.org/00y3cpn63" + ] + }, + { + "affiliation": "Hospital Universitario 12 de Octubre, Madrid, Spain", + "ror_ids": [ + "https://ror.org/00qyh5r35" + ] + }, + { + "affiliation": "Civil Engineering Department, Indian Institute of Science, Bengaluru, India", + "ror_ids": [ + "https://ror.org/04dese585" + ] + }, + { + "affiliation": "School of Law (IT Law programme), University of Tartu, Tartu, Estonia", + "ror_ids": [ + "https://ror.org/03z77qz90" + ] + }, + { + "affiliation": "Department of Epidemiology and Health Statistics, Fujian Provincial Key Laboratory of Environment Factors and Cancer, School of Public Health, Fujian Medical University, Fuzhou Fujian Province, China", + "ror_ids": [ + "https://ror.org/050s6ns64" + ] + }, + { + "affiliation": "The BioRobotics Institute, Scuola Superiore Sant’Anna, Pisa, Italy", + "ror_ids": [ + "https://ror.org/025602r80" + ] + }, + { + "affiliation": "Department of Social Medicine, China Medical University, Taichung, Taiwan", + "ror_ids": [ + "https://ror.org/00v408z34" + ] + }, + { + "affiliation": "Faculty of Science, Sydney School of Veterinary Science, University of Sydney, Camden, NSW, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Colleage of Computer Science and Technology, Qingdao University, Qingdao, China", + "ror_ids": [ + "https://ror.org/021cj6z65" + ] + }, + { + "affiliation": "Department of Civil Engineering, SRM Institute of Science and Technology, Chengalpattu, India", + "ror_ids": [ + "https://ror.org/050113w36" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Indian Institute of Technology Roorkee, Roorkee, Uttarakhand, India", + "ror_ids": [ + "https://ror.org/00582g326" + ] + }, + { + "affiliation": "Beijing Key Laboratory of Geriatric Cognitive Disorders, Beijing, China", + "ror_ids": [ + "https://ror.org/013xs5b60" + ] + }, + { + "affiliation": "Radiology Department, Oxford University Hospitals NHS Foundation Trust, Oxford, UK", + "ror_ids": [ + "https://ror.org/03h2bh287" + ] + }, + { + "affiliation": "Department of Physics and Beijing Key Laboratory of Optoelectronic Functional Materials & Micro-nano Devices, Renmin University of China, Beijing, PR China", + "ror_ids": [ + "https://ror.org/041pakw92" + ] + }, + { + "affiliation": "Hematology and Haemotherapy Department, Hospital Universitario de Navarra, Pamplona, Navarra, Spain", + "ror_ids": [ + "https://ror.org/03phm3r45" + ] + }, + { + "affiliation": "State Key Laboratory of Quantum Optics and Quantum Optics Devices, Institute of Laser Spectroscopy, Shanxi University, Taiyuan, Shanxi, China", + "ror_ids": [ + "https://ror.org/03y3e3s17" + ] + }, + { + "affiliation": "ECE Department, Jaypee Institute of Information Technology, Noida, India", + "ror_ids": [ + "https://ror.org/05sttyy11" + ] + }, + { + "affiliation": "Royal College of Surgeons in Ireland, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/01hxy9878" + ] + }, + { + "affiliation": "Department of Economics and Development, Faculty of Tropical AgriSciences, Czech University of Life Sciences Prague, Praha - Suchdol, Czech Republic", + "ror_ids": [ + "https://ror.org/0415vcw02" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Science, Assiut University, Assiut, Egypt", + "ror_ids": [ + "https://ror.org/01jaj8n65" + ] + }, + { + "affiliation": "Department of Physics, Faculty of Science, University of Gujrat, Gujrat, Pakistan", + "ror_ids": [ + "https://ror.org/01xe5fb92" + ] + }, + { + "affiliation": "Basic Science Department, School of Engineering, Canadian International College, New Cairo, Egypt", + "ror_ids": [ + "https://ror.org/03374t109" + ] + }, + { + "affiliation": "Division of Systems Biology, Nagoya University Graduate School of Medicine, Showa-ku, Nagoya, Japan", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Department of Physiotherapy and Rehabilitation, Faculty of Health Sciences, Tarsus University, Mersin, Turkey", + "ror_ids": [ + "https://ror.org/0397szj42" + ] + }, + { + "affiliation": "Department of Pharmacology, University of California San Diego, La Jolla, CA, USA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Division of Cardiology, Cardiocentro Ticino Institute, Lugano, Switzerland", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "Faculty of Electrical Engineering and Information Technology, Institute of Theoretical Electrical Engineering, Ruhr University Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Department of Cardiology, Zhongshan Hospital, Fudan University and Shanghai Institute of Cardiovascular Diseases, Shanghai, China", + "ror_ids": [ + "https://ror.org/032x22645", + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Commonwealth Scientific and Industrial Research Organisation, Adelaide, Australia", + "ror_ids": [ + "https://ror.org/03qn8fb07" + ] + }, + { + "affiliation": "Departamento de Genética, Ecologia e Evolução, Instituto de Ciências Biológicas - Bloco E3 - Sala 175, Universidade Federal de Minas Gerais - UFMG, Belo Horizonte, Brazil", + "ror_ids": [ + "https://ror.org/0176yjw32" + ] + }, + { + "affiliation": "Division of Communicable Diseases, Department of Disease Control, Ministry of Public Health, Nonthaburi, Thailand", + "ror_ids": [ + "https://ror.org/03rn0z073" + ] + }, + { + "affiliation": "Department of Physiotherapy and Rehabilitation Sciences, University of Health and Allied Sciences, Ho, Ghana", + "ror_ids": [ + "https://ror.org/054tfvs49" + ] + }, + { + "affiliation": "Department of Child and Adolescent Psychiatry/Psychology, Erasmus MC—Sophia Children’s Hospital, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/047afsm11" + ] + }, + { + "affiliation": "School of New Materials and Chemical Engineering, Beijing Institute of Petrochemical Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/025s55q11" + ] + }, + { + "affiliation": "Cancer Centre for Children, The Children’s Hospital at Westmead, Sydney, Australia", + "ror_ids": [ + "https://ror.org/05k0s5494" + ] + }, + { + "affiliation": "Faculty of Technical Sciences, University of Novi Sad, Novi Sad, Serbia", + "ror_ids": [ + "https://ror.org/00xa57a59" + ] + }, + { + "affiliation": "Department of General Surgery, Faculty of Medicine, Aswan University, Aswan, Egypt", + "ror_ids": [ + "https://ror.org/048qnr849" + ] + }, + { + "affiliation": "Fakultät für Bildungswissenschaften, Universität Duisburg-Essen, Essen, Deutschland", + "ror_ids": [ + "https://ror.org/04mz5ra38" + ] + }, + { + "affiliation": "Research Institute of Energy, Environment, and Geology, Hokkaido Research Organization, Sapporo, Hokkaido, Japan", + "ror_ids": [ + "https://ror.org/026j3ca82" + ] + }, + { + "affiliation": "Institut Für Mineralogie, Universität Münster, Münster, Germany", + "ror_ids": [ + "https://ror.org/00pd74e08" + ] + }, + { + "affiliation": "Diabetes Research Center, Endocrinology and Metabolism Clinical Sciences Institute, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Biomedical Engineering Group, University of Seville, Seville, Spain", + "ror_ids": [ + "https://ror.org/03yxnpp24" + ] + }, + { + "affiliation": "School of Biomedical Sciences, Makerere University College of Health Sciences, Kampala, Uganda", + "ror_ids": [ + "https://ror.org/03dmz0111" + ] + }, + { + "affiliation": "School of Electrical and Automation Engineering, Nanjing Normal University, Nanjing, China", + "ror_ids": [ + "https://ror.org/036trcv74" + ] + }, + { + "affiliation": "Medical Oncology Department, Hospital Universitario de Getafe, Madrid, Spain", + "ror_ids": [ + "https://ror.org/01ehe5s81" + ] + }, + { + "affiliation": "Faculty of Mechanical Engineering, Brno University of Technology, Brno, Czech Republic", + "ror_ids": [ + "https://ror.org/03613d656" + ] + }, + { + "affiliation": "School of Forest Fisheries, and Geomatics Sciences, University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Fondazione IRCSS - Istituto Nazionale Tumori, Milan, Italy", + "ror_ids": [ + "https://ror.org/05dwj7825" + ] + }, + { + "affiliation": "Department of Aerospace Engineering, North Carolina State University, Raleigh, NC, USA", + "ror_ids": [ + "https://ror.org/04tj63d06" + ] + }, + { + "affiliation": "Faculty of Nuclear Sciences and Physical Engineering, Czech Technical University in Prague, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/03kqpb082" + ] + }, + { + "affiliation": "Radiation Processing Technology Division, Malaysian Nuclear Agency, Kajang, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/02p9mk956" + ] + }, + { + "affiliation": "Department of Surgery, City of Hope, Duarte, CA, USA", + "ror_ids": [ + "https://ror.org/00w6g5w60" + ] + }, + { + "affiliation": "Department of Internal Medicine, Division of Cardiology, E-Da Hospital, Kaohsiung, Taiwan", + "ror_ids": [ + "https://ror.org/00eh7f421" + ] + }, + { + "affiliation": "São Paulo State University - UNESP/SP, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Department of Internal Medicine, University of Health Sciences, Antalya Training and Research Hospital, Antalya, Turkey", + "ror_ids": [ + "https://ror.org/02h67ht97" + ] + }, + { + "affiliation": "Department of Behavioral Sciences, University of Pécs Medical School, Pecs, Hungary", + "ror_ids": [ + "https://ror.org/037b5pv06" + ] + }, + { + "affiliation": "Universidade de Brasília, Brasília, Brazil", + "ror_ids": [ + "https://ror.org/02xfp8v59" + ] + }, + { + "affiliation": "Cardiology Department, School of Medicine, Ordu University, Ordu, Turkey", + "ror_ids": [ + "https://ror.org/04r0hn449" + ] + }, + { + "affiliation": "State Key Laboratory of Biocontrol, School of Life Sciences, Sun Yat-Sen University, Guangzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0064kty71" + ] + }, + { + "affiliation": "Academy of Machinery Science and Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/04gpxrn68" + ] + }, + { + "affiliation": "Instituto de Investigación Sanitaria de Navarra (IdISNA), Cancer Center Clínica Universidad de Navarra (CCUN), Pamplona, Spain", + "ror_ids": [ + "https://ror.org/023d5h353", + "https://ror.org/03phm3r45" + ] + }, + { + "affiliation": "Montreal Neurological Institute, McGill University, Montreal, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438", + "https://ror.org/05ghs6f64" + ] + }, + { + "affiliation": "BioNTech SE, Mainz, Germany", + "ror_ids": [ + "https://ror.org/04fbd2g40" + ] + }, + { + "affiliation": "Hayatabad Medical Complex, Peshawar, Pakistan", + "ror_ids": [ + "https://ror.org/03vpd6e34" + ] + }, + { + "affiliation": "Department of Orthopedics, Wuhan Fourth Hospital, Wuhan, China", + "ror_ids": [ + "https://ror.org/00qavst65" + ] + }, + { + "affiliation": "Takeda Development Center Americas, Inc. (TDCA), Lexington, MA, USA", + "ror_ids": [ + "https://ror.org/03bygaq51" + ] + }, + { + "affiliation": "School of Materials Science and Hydrogen Energy, Foshan University, Foshan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02xvvvp28" + ] + }, + { + "affiliation": "Vascular Cognitive Impairment and Neurodegeneration Program, Oklahoma Center for Geroscience and Healthy Brain Aging, Department of Neurosurgery, Health Sciences Center, University of Oklahoma, Oklahoma City, OK, USA", + "ror_ids": [ + "https://ror.org/02aqsxs83", + "https://ror.org/0457zbj98" + ] + }, + { + "affiliation": "Beijing Key Laboratory for Source Control Technology of Water Pollution, College of Environmental Science and Engineering, Beijing Forestry University, Beijing, China", + "ror_ids": [ + "https://ror.org/04xv2pc41" + ] + }, + { + "affiliation": "Chinese-Israeli International Center for Research and Training in Agriculture, China Agricultural University, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04v3ywz14" + ] + }, + { + "affiliation": "Instituto de Investigaciones Clínicas “Dr. Américo Negrette,” Facultad de Medicina, Universidad del Zulia, Maracaibo, Zulia, Venezuela", + "ror_ids": [ + "https://ror.org/04vy5s568" + ] + }, + { + "affiliation": "School of Software, Xinjiang University, Urumqi, Xinjiang, China", + "ror_ids": [ + "https://ror.org/059gw8r13" + ] + }, + { + "affiliation": "Department of Epileptology, University Hospital Bonn, Bonn, Germany", + "ror_ids": [ + "https://ror.org/01xnwqx93" + ] + }, + { + "affiliation": "Key Laboratory of Ocean and Marginal Sea Geology, South China Sea Institute of Oceanology, Chinese Academy of Sciences, Guangzhou, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/0192yj155" + ] + }, + { + "affiliation": "Weizmann Institute of Science, Rehovot, Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "School of Social Sciences, Ramaiah University of Applied Sciences, Bengaluru, India", + "ror_ids": [ + "https://ror.org/02anh8x74" + ] + }, + { + "affiliation": "Graduate Program in Ecology, Universidade Federal do Rio Grande do Norte Campus, Natal, RN, Brazil", + "ror_ids": [ + "https://ror.org/04wn09761" + ] + }, + { + "affiliation": "Department of Electronics and Communication Engineering, National Institute of Technology Rourkela, Rourkela, Odisha, India", + "ror_ids": [ + "https://ror.org/011gmn932" + ] + }, + { + "affiliation": "INSERM UMR1163, Institut Imagine, Université Paris-Cité, Paris, France", + "ror_ids": [ + "https://ror.org/05rq3rb55", + "https://ror.org/05f82e368", + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Medical Imaging Centre of Southwest Finland, Turku University Hospital, Turku, Finland", + "ror_ids": [ + "https://ror.org/05dbzj528" + ] + }, + { + "affiliation": "Chemical & Biochemical Sciences. Green Process Engineering, CBS, Mohammed VI Polytechnic University, Ben Guerir, Morocco", + "ror_ids": [ + "https://ror.org/03xc55g68" + ] + }, + { + "affiliation": "School of Engineering, and CMUP, Polytechnic of Porto, Porto, Portugal", + "ror_ids": [ + "https://ror.org/04988re48" + ] + }, + { + "affiliation": "School for Resource and Environmental Studies, Dalhousie University, Halifax, NS, Canada", + "ror_ids": [ + "https://ror.org/01e6qks80" + ] + }, + { + "affiliation": "Swinburne Business School, Swinburne University of Technology, Hawthorn, VIC, Australia", + "ror_ids": [ + "https://ror.org/031rekg67" + ] + }, + { + "affiliation": "Department of Creative Technologies and Product Design, National Taipei University of Business, Taoyuan, Taiwan", + "ror_ids": [ + "https://ror.org/029hrv109" + ] + }, + { + "affiliation": "Department of Gastroenterological Surgery, Nagoya City University Hospital, Nagoya, Aichi, Japan", + "ror_ids": [ + "https://ror.org/02adg5v98" + ] + }, + { + "affiliation": "Department of Demography and Population Studies, University of Witwatersrand, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/03rp50x72" + ] + }, + { + "affiliation": "Institute of Mathematics and Mathematical Modeling, Almaty, Kazakhstan", + "ror_ids": [ + "https://ror.org/05xx3wf87" + ] + }, + { + "affiliation": "Institut für Erziehungswissenschaften, Johannes Gutenberg Universität Mainz, Mainz, Deutschland", + "ror_ids": [ + "https://ror.org/023b0x485" + ] + }, + { + "affiliation": "Oakland University, Rochester, MI, USA", + "ror_ids": [ + "https://ror.org/01ythxj32" + ] + }, + { + "affiliation": "Space Application Centre, ISRO, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/00cwrns71" + ] + }, + { + "affiliation": "School of Materials Science & Engineering, North Minzu University, Yinchuan, China", + "ror_ids": [ + "https://ror.org/05xjevr11" + ] + }, + { + "affiliation": "UCL Wellcome/EPSRC Centre for Interventional and Surgical Sciences, Department of Medical Physics and Biomedical Engineering, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895", + "https://ror.org/03r42r570" + ] + }, + { + "affiliation": "Hettinger Research Extension Center, North Dakota State University, Hettinger, ND, USA", + "ror_ids": [ + "https://ror.org/05h1bnb22" + ] + }, + { + "affiliation": "Department of Food Hygiene, Ayatollah Amoli Branch, Islamic Azad University, Amol, Iran", + "ror_ids": [ + "https://ror.org/02558wk32" + ] + }, + { + "affiliation": "KPR Institute of Engineering and Technology, Coimbatore, India", + "ror_ids": [ + "https://ror.org/02q9f3a53" + ] + }, + { + "affiliation": "Inner Mongolia Key Laboratory of Dairy Biotechnology and Engineering, Inner Mongolia Agricultural University, Hohhot, Inner Mongolia, China", + "ror_ids": [ + "https://ror.org/015d0jq83" + ] + }, + { + "affiliation": "Section of Rheumatology, Department of Medicine, University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "School of Naval Architecture, Ocean, and Energy Power Engineering, Wuhan University of Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/03fe7t173" + ] + }, + { + "affiliation": "Key Laboratory of Vegetation Restoration and Management of Degraded Ecosystems & CAS Engineering Laboratory for Vegetation Ecosystem Restoration on Islands and Coastal Zones, South China Botanical Garden, Chinese Academy of Sciences, Guangzhou, China", + "ror_ids": [ + "https://ror.org/01xqdxh54", + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "School of Environment and Sustainable Development, Central University of Gujarat, Gandhinagar, Gujarat, India", + "ror_ids": [ + "https://ror.org/04y3rfg91" + ] + }, + { + "affiliation": "School of Iron and Steel, Soochow University, Suzhou, Jiangsu, China", + "ror_ids": [ + "https://ror.org/05t8y2r12" + ] + }, + { + "affiliation": "School of Civil Engineering and Communication, North China University of Water Resources and Electric Power, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/03acrzv41" + ] + }, + { + "affiliation": "Chair of Cognitive Science, Department of Humanities, Social and Political Sciences, ETH Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Department of Cardiology, Beijing Tsinghua Changgung Hospital, School of Clinical Medicine, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Simulations Plus, Inc., Lancaster, California, USA", + "ror_ids": [ + "https://ror.org/02p0yhm49" + ] + }, + { + "affiliation": "Inorganic Chemistry and Catalysis Group, Debye Institute for Nanomaterials Science, Utrecht University, Utrecht, the Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "Department of Chemical Engineering, University of Western Macedonia, Koila Kozani, Greece", + "ror_ids": [ + "https://ror.org/00a5pe906" + ] + }, + { + "affiliation": "Department of Chemistry, Ayya Nadar Janaki Ammal College, Sivakasi, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/04c8e9019" + ] + }, + { + "affiliation": "Google Research, Brain Team, Google, Mountain View, CA, USA", + "ror_ids": [ + "https://ror.org/00njsd438" + ] + }, + { + "affiliation": "Department of Neuroscience, Yale School of Medicine, New Haven, CT, USA", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "School of Resource & Environment and Safety Engineering, University of South China, Hengyang, Hunan Province, China", + "ror_ids": [ + "https://ror.org/03mqfn238" + ] + }, + { + "affiliation": "Department of Tissue Engineering and Regenerative Medicine, School of Advanced Technologies in Medicine, Mazandaran University of Medical Sciences, Sari, Iran", + "ror_ids": [ + "https://ror.org/02wkcrp04" + ] + }, + { + "affiliation": "Department of Environmental Health, School of Public Health, University of São Paulo, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Center of Excellence in Cognitive Neuropsychology, Shahid Beheshti University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/0091vmj44" + ] + }, + { + "affiliation": "Faculty of Science and Technology of Sidi Bouzid, University of Kairouan, University Campus Agricultural City, Sidi Bouzid, Tunisia", + "ror_ids": [ + "https://ror.org/024mpte60" + ] + }, + { + "affiliation": "Service de Médecine Intensive Réanimation, Hôpitaux Universitaires Henri Mondor-Albert Chenevier, Département Médico-Universitaire Médecine, AP-HP, Créteil, France", + "ror_ids": [ + "https://ror.org/00pg5jh14", + "https://ror.org/033yb0967" + ] + }, + { + "affiliation": "Department of Child and Adolescent Psychiatry, Schulich School of Medicine and Dentistry, Western University, London, ON, Canada", + "ror_ids": [ + "https://ror.org/02grkyz14" + ] + }, + { + "affiliation": "State Key Laboratory of Structural Chemistry, Fujian Institute of Research on the Structure of Matter, Chinese Academy of Sciences, Fuzhou, Fujian, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/02j89k719" + ] + }, + { + "affiliation": "University of Kaiserslautern-Landau, Kaiserslautern, Germany", + "ror_ids": [ + "https://ror.org/04zrf7b53" + ] + }, + { + "affiliation": "FEHM-Lab (Freshwater Ecology, Hydrology and Management), Departament de Biologia Evolutiva, Ecologia i Ciències Ambientals, Facultat de Biologia, Institut de Recerca de l’Aigua (IdRA), Universitat de Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/021018s57" + ] + }, + { + "affiliation": "Henan Academy of Agricultural Sciences, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/00vdyrj80" + ] + }, + { + "affiliation": "Department of Radiology, The Affiliated Hospital of Qingdao University, Qingdao, Shandong, China", + "ror_ids": [ + "https://ror.org/026e9yy16" + ] + }, + { + "affiliation": "Poznan University of Technology, Poznan, Poland", + "ror_ids": [ + "https://ror.org/00p7p3302" + ] + }, + { + "affiliation": "Centre for Veterinary Epidemiology and Risk Analysis, School of Veterinary Medicine, University College Dublin, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/05m7pjf47" + ] + }, + { + "affiliation": "Pharmacy Course, Estacio São Luís University Center, São Luís, Maranhão, Brazil", + "ror_ids": [ + "https://ror.org/02vej5573" + ] + }, + { + "affiliation": "Department of Computer Engineering, Faculty of Technology, Marmara University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/02kswqa67" + ] + }, + { + "affiliation": "Early Clinical & Bioanalytical Research, ICON, Salt Lake City, UT, USA", + "ror_ids": [ + "https://ror.org/0188v8a70" + ] + }, + { + "affiliation": "School of Physics, Clinical and Optometric Sciences, Faculty of Science, Technological University Dublin, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/04t0qbt32" + ] + }, + { + "affiliation": "Department of Pharmacy, Sint Maartenskliniek, Nijmegen, the Netherlands", + "ror_ids": [ + "https://ror.org/0454gfp30" + ] + }, + { + "affiliation": "Food Engineering Department, Faculty of Engineering, Istanbul Aydin University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/00qsyw664" + ] + }, + { + "affiliation": "ITR - Laboratory for Integrative and Translational Research in Population Health, University of Porto, Porto, Portugal", + "ror_ids": [ + "https://ror.org/043pwc612" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, LMU University Hospital, LMU Munich, Munich, Germany", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "Department of Biochemistry, Faculty of Dentistry, Marmara University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/02kswqa67" + ] + }, + { + "affiliation": "Centre for Innovative Medical Technology, Odense University Hospital, Odense, Denmark", + "ror_ids": [ + "https://ror.org/00ey0ed83" + ] + }, + { + "affiliation": "Agencia de Investigación de la Sociedad Española de Cardiología (AISEC), Madrid, Spain", + "ror_ids": [ + "https://ror.org/05d9ms657" + ] + }, + { + "affiliation": "Department of Dermatology, CHA Bundang Medical Center, CHA University School of Medicine, Seongnam, South Korea", + "ror_ids": [ + "https://ror.org/04nbqb988", + "https://ror.org/04yka3j04" + ] + }, + { + "affiliation": "Department of Electronics and Communication, Institute of Technology, Nirma University, Ahmedabad, India", + "ror_ids": [ + "https://ror.org/05qkq7x38" + ] + }, + { + "affiliation": "Department of Health I, Universidade Estadual Do Sudoeste da Bahia (UESB), Jequié, Bahia, Brazil", + "ror_ids": [ + "https://ror.org/02rg6ka44" + ] + }, + { + "affiliation": "Faculty of Education, Shandong Normal University, Jinan, China", + "ror_ids": [ + "https://ror.org/01wy3h363" + ] + }, + { + "affiliation": "School of Humanities and Social Science, The Chinese University of Hong Kong (Shenzhen), Shenzhen, China", + "ror_ids": [ + "https://ror.org/00t33hh48", + "https://ror.org/02d5ks197" + ] + }, + { + "affiliation": "College of Environmental Science and Engineering, China West Normal University, Nanchong, China", + "ror_ids": [ + "https://ror.org/04s99y476" + ] + }, + { + "affiliation": "School of Marxism, Shanghai Maritime University, Shanghai, China", + "ror_ids": [ + "https://ror.org/04z7qrj66" + ] + }, + { + "affiliation": "Department of Chemical Engineering and Biotechnology, National Taipei University of Technology, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/00cn92c09" + ] + }, + { + "affiliation": "Department of Radiological Technology, Yamaguchi University Hospital, Yamaguchi, Japan", + "ror_ids": [ + "https://ror.org/02dgmxb18" + ] + }, + { + "affiliation": "‘Materials + Technologies’ Research Group (GMT), Department of Chemical and Environmental Engineering, Faculty of Engineering of Gipuzkoa, University of the Basque Country, Donostia-San Sebastian, Spain", + "ror_ids": [ + "https://ror.org/000xsnr85" + ] + }, + { + "affiliation": "Department of Pharmacokinetics and Clinical Pharmacy, Faculty of Pharmacy, University of Belgrade, Belgrade, Serbia", + "ror_ids": [ + "https://ror.org/02qsmb048" + ] + }, + { + "affiliation": "Pituitary Center, Istanbul University-Cerrahpasa, Istanbul, Türkiye", + "ror_ids": [ + "https://ror.org/01dzn5f42" + ] + }, + { + "affiliation": "Department of Environmental Medicine, New York University School of Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "College of Agronomy, Henan Agricultural University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04eq83d71" + ] + }, + { + "affiliation": "Abbe Center of Photonics, Friedrich Schiller University Jena, Jena, Germany", + "ror_ids": [ + "https://ror.org/05qpz1x62" + ] + }, + { + "affiliation": "TUBITAK National Metrology Institute (TUBITAK UME), Kocaeli, Turkey", + "ror_ids": [ + "https://ror.org/02zcjdk53" + ] + }, + { + "affiliation": "School of Natural Resource Management, Nelson Mandela University, George Campus, Port Elizabeth, South Africa", + "ror_ids": [ + "https://ror.org/03r1jm528" + ] + }, + { + "affiliation": "Polymer Energy Materials Laboratory, School of Chemical Engineering, Chonnam National University, Gwangju, South Korea", + "ror_ids": [ + "https://ror.org/05kzjxq56" + ] + }, + { + "affiliation": "Department of Quantitative Health Sciences, Cleveland Clinic, Lerner Research Institute, Cleveland, OH, USA", + "ror_ids": [ + "https://ror.org/03xjacd83" + ] + }, + { + "affiliation": "Institute of Robotics and Autonomous Systems, School of Electrical and Information Engineering, Tianjin University, Tianjin, China", + "ror_ids": [ + "https://ror.org/012tb2g32" + ] + }, + { + "affiliation": "Department of Sociology, University of Warwick, Coventry, UK", + "ror_ids": [ + "https://ror.org/01a77tt86" + ] + }, + { + "affiliation": "Instituto de Investigación y Desarrollo en Ingeniería de ProcesosBiotecnología y Energías Alternativas (PROBIEN), CONICET - Universidad Nacional del Comahue, Neuquén, Argentina", + "ror_ids": [ + "https://ror.org/02zvkba47" + ] + }, + { + "affiliation": "School of Automation, Chongqing University of Posts and Telecommunications, Chongqing, China", + "ror_ids": [ + "https://ror.org/03dgaqz26" + ] + }, + { + "affiliation": "School of Civil Engineering, Central South University of Forestry and Technology, Changsha, Hunan Province, China", + "ror_ids": [ + "https://ror.org/02czw2k81" + ] + }, + { + "affiliation": "Department of Gynecology and Obstetrics, Kyoto University Graduate School of Medicine, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Division of Transplantation and Hepatobiliary Surgery, University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Division of Physical Therapy, Department of Population Health Sciences, Duke University School of Medicine, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Department of Gastroenterology, Renmin Hospital, Hubei University of Medicine, Shiyan, China", + "ror_ids": [ + "https://ror.org/01dr2b756" + ] + }, + { + "affiliation": "Division of Clinical Medicine, The University of Sheffield, School of Medicine and Population Health, Sheffield, UK", + "ror_ids": [ + "https://ror.org/05krs5044" + ] + }, + { + "affiliation": "Department of Physical Electronics, CEPLANT, Faculty of Science, Masaryk University, Brno, Czech Republic", + "ror_ids": [ + "https://ror.org/02j46qs45" + ] + }, + { + "affiliation": "Department of General Surgery, AZ Sint-Jan Brugge-Oostende AV, Brugge, Belgium", + "ror_ids": [ + "https://ror.org/030h1vb90" + ] + }, + { + "affiliation": "Department of Pharmaceutical Chemistry, University of Kansas, Lawrence, Kansas, USA", + "ror_ids": [ + "https://ror.org/001tmjg57" + ] + }, + { + "affiliation": "ILPÖ, Universität Stuttgart, Stuttgart, Deutschland", + "ror_ids": [ + "https://ror.org/04vnq7t77" + ] + }, + { + "affiliation": "Hangzhou Institute for Advanced Study, UCAS, Hangzhou, China", + "ror_ids": [ + "https://ror.org/05qbk4x57" + ] + }, + { + "affiliation": "Institute of Radiochemistry and Radioecology, Research Centre for Biochemical, Environmental and Chemical Engineering, University of Pannonia, Veszprém, Hungary", + "ror_ids": [ + "https://ror.org/03y5egs41" + ] + }, + { + "affiliation": "Department of Computer Science, Virginia Commonwealth University, Richmond, VA, USA", + "ror_ids": [ + "https://ror.org/02nkdxk79" + ] + }, + { + "affiliation": "Cluster of Excellence Internet of Prod, RWTH Aachen University, Aachen, Nordrhein-Westfalen, Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "Department of General Pediatrics and Neonatology, Saarland University Hospital, Homburg, Germany", + "ror_ids": [ + "https://ror.org/01jdpyv68" + ] + }, + { + "affiliation": "Robert H. Lurie Comprehensive Cancer Center of Northwestern University, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/02p4far57" + ] + }, + { + "affiliation": "Mathematical and Physical Faculty, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Natural and Built Environment, Sheffield Hallam University, Sheffield, UK", + "ror_ids": [ + "https://ror.org/019wt1929" + ] + }, + { + "affiliation": "Department of Mathematical Sciences, University of South Africa, Florida, South Africa", + "ror_ids": [ + "https://ror.org/048cwvf49" + ] + }, + { + "affiliation": "Maternal, Child, and Adolescent Health Programme, Burnet Institute, Melbourne, VIC, Australia", + "ror_ids": [ + "https://ror.org/05ktbsm52" + ] + }, + { + "affiliation": "Faculty of Engineering Sciences, Hochschule Mittweida University of Applied Sciences, Mittweida, Germany", + "ror_ids": [ + "https://ror.org/024ga3r86" + ] + }, + { + "affiliation": "School of Electrical and Computer Engineering, Addis Ababa Institute of Technology, Addis Ababa University, Addis Ababa, Ethiopia", + "ror_ids": [ + "https://ror.org/038b8e254" + ] + }, + { + "affiliation": "Michigan Institute of Urology, Troy, MI, USA", + "ror_ids": [ + "https://ror.org/00xt7wr93" + ] + }, + { + "affiliation": "Department of Metallurgical and Materials Engineering, Zonguldak Bülent Ecevit University, Incivez, Zonguldak, Turkey", + "ror_ids": [ + "https://ror.org/01dvabv26" + ] + }, + { + "affiliation": "Department of Anesthesiology, University of Texas, Houston Health Science Center, Houston, USA", + "ror_ids": [ + "https://ror.org/03gds6c39" + ] + }, + { + "affiliation": "Department of General Surgery, Ziv Medical Center, Zefat, Israel", + "ror_ids": [ + "https://ror.org/05mw4gk09" + ] + }, + { + "affiliation": "Bureau of Meteorology, Melbourne, VIC, Australia", + "ror_ids": [ + "https://ror.org/04dkp1p98" + ] + }, + { + "affiliation": "Department of Cardiology and Angiology, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Department of Quality Management, Southwest Hospital, Army Medical University (Third Military Medical University), Chongqing, China", + "ror_ids": [ + "https://ror.org/05w21nn13" + ] + }, + { + "affiliation": "Tianjin Key Laboratory of Information Sensing and Intelligent Control, School of Automation and Electrical Engineering, Tianjin University of Technology and Education, Tianjin, China", + "ror_ids": [ + "https://ror.org/035gwtk09" + ] + }, + { + "affiliation": "Beijing Academy of Agriculture and Forestry Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/04trzn023" + ] + }, + { + "affiliation": "Coma Science Group, GIGA Consciousness, University of Liège, Liège, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "Departement of Special Education, University of Missouri, Columbia, MO, USA", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "State Key Laboratory of Urban and Regional Ecology, Research Center for Eco-Environmental Sciences, Chinese Academy of Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/03rpsvy57" + ] + }, + { + "affiliation": "Instituto de Ingeniería Agraria y Suelos, Facultad de Ciencias Agrarias y Alimentarias, Universidad Austral de Chile, Valdivia, Chile", + "ror_ids": [ + "https://ror.org/029ycp228" + ] + }, + { + "affiliation": "University of York, York, United Kingdom", + "ror_ids": [ + "https://ror.org/04m01e293" + ] + }, + { + "affiliation": "Department of Digestive Surgery, Dijon University Hospital, Dijon, France", + "ror_ids": [ + "https://ror.org/03k1bsr36" + ] + }, + { + "affiliation": "Faculty of Mechanical Engineering, College of Science, Sichuan University of Science & Engineering, Zigong, China", + "ror_ids": [ + "https://ror.org/053fzma23" + ] + }, + { + "affiliation": "Department of Mechanical and Aerospace Engineering, Polytechnic University of Turin, Turin, Italy", + "ror_ids": [ + "https://ror.org/00bgk9508" + ] + }, + { + "affiliation": "Graphene Composite Research Center, College of Chemistry and Environmental Engineering, Shenzhen University, Shenzhen, China", + "ror_ids": [ + "https://ror.org/01vy4gh70" + ] + }, + { + "affiliation": "Shandong Normal University, Jinan, China", + "ror_ids": [ + "https://ror.org/01wy3h363" + ] + }, + { + "affiliation": "Inner Mongolia Medical University, Hohhot, China", + "ror_ids": [ + "https://ror.org/01mtxmr84" + ] + }, + { + "affiliation": "Department of Abdominal Surgery and Transplantation, University of Liege, Liège, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "School of Social Sciences, The University of Queensland, St Lucia, QLD, Australia", + "ror_ids": [ + "https://ror.org/00rqy9422" + ] + }, + { + "affiliation": "Department of Gastroenterology and Digestive Oncology, Cliniques Universitaires St-Luc, Brussels, Belgium", + "ror_ids": [ + "https://ror.org/03s4khd80" + ] + }, + { + "affiliation": "Key Laboratory for Endocrine and Metabolic Diseases of the National Health Commission of the PR China, Shanghai National Clinical Research Center for Metabolic Diseases, Shanghai National Center for Translational Medicine, Ruijin Hospital, Shanghai Jiao Tong University School of Medicine, , China", + "ror_ids": [ + "https://ror.org/01hv94n30", + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Physics Department, Faculty of Science, Beni-Suef University, Beni-Suef, Egypt", + "ror_ids": [ + "https://ror.org/05pn4yv70" + ] + }, + { + "affiliation": "Department of Food Science & Technology, Faculty of Agriculture & Environment, The Islamia University of Bahawalpur, Bahawalpur, Pakistan", + "ror_ids": [ + "https://ror.org/002rc4w13" + ] + }, + { + "affiliation": "College of Mechanical Engineering, Zhejiang University of Technology, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/02djqfd08" + ] + }, + { + "affiliation": "Heilongjiang Provincial Key Laboratory of Optimization Control and Intelligent Analysis for Complex Systems, Harbin University of Science and Technology, Harbin, China", + "ror_ids": [ + "https://ror.org/04e6y1282" + ] + }, + { + "affiliation": "Institute of Regional Research, University of Southern Denmark, Odense, Denmark", + "ror_ids": [ + "https://ror.org/03yrrjy16" + ] + }, + { + "affiliation": "Neurosurgery Department, Faculty of Medecine, Benha University, Qalubiya, Egypt", + "ror_ids": [ + "https://ror.org/03tn5ee41" + ] + }, + { + "affiliation": "Department of Cardiology, Concord Repatriation General Hospital, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/04b0n4406" + ] + }, + { + "affiliation": "Department of Marine Environmental Science, Chungnam National University, Daejeon, Republic of Korea", + "ror_ids": [ + "https://ror.org/0227as991" + ] + }, + { + "affiliation": "Department of Infectious Disease, Xinhua Children’s Hospital, Xinhua Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/04dzvks42" + ] + }, + { + "affiliation": "School of Information Engineering, Jiangxi University of Technology, Nanchang, Jiangxi province, China", + "ror_ids": [ + "https://ror.org/05k2j8e48" + ] + }, + { + "affiliation": "Research Unit OPEN, Department of Clinical Research, University of Southern Denmark, Odense C, Denmark", + "ror_ids": [ + "https://ror.org/03yrrjy16" + ] + }, + { + "affiliation": "Biorefinery Technology and Bioproducts Research Group, National Center for Genetic Engineering and Biotechnology, NSTDA, Pathumthani, Thailand", + "ror_ids": [ + "https://ror.org/047aswc67" + ] + }, + { + "affiliation": "Department of Internal Medicine, Ege University Faculty of Medicine, Izmir, Turkey", + "ror_ids": [ + "https://ror.org/02eaafc18" + ] + }, + { + "affiliation": "Neurologische Klinik / Oberbayer. Kopfschmerzzentrum, Klinikum Großhadern der LMU München, München, Deutschland", + "ror_ids": [ + "https://ror.org/02jet3w32" + ] + }, + { + "affiliation": "Department of Surgery, Saint Francis Memorial Hospital, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/05h29d328" + ] + }, + { + "affiliation": "Maulana Azad National Institute of Technology, Bhopal, India", + "ror_ids": [ + "https://ror.org/026vtd268" + ] + }, + { + "affiliation": "Department of Plant Science, School of Life Sciences, Central University of Himachal Pradesh, Dharamshala, Himachal Pradesh, India", + "ror_ids": [ + "https://ror.org/04v5nzb91" + ] + }, + { + "affiliation": "Department of Medicine, College of Medicine, Pennsylvania State University, State College, PA, USA", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Prince Mohammad Bin Fahd University, Khobar, Saudi Arabia", + "ror_ids": [ + "https://ror.org/03d64na34" + ] + }, + { + "affiliation": "Department of Computer Science, Hansraj College, University of Delhi, New Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Neuroradiological Academic Unit, University College London Queen Square Institute of Neurology, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Department of Industrial Engineering, Necmettin Erbakan University, Konya, Turkey", + "ror_ids": [ + "https://ror.org/013s3zh21" + ] + }, + { + "affiliation": "Mental Health Research and Treatment Center, Ruhr-Universität Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Key Laboratory of Ministry of Education for Autonomous Systems and Networked Control, Guangdong Engineering Technology Research Center of Control of Intelligent Systems, College of Automation Science and Engineering, South China University of Technology, , China", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Department of Neuroscience, Reproductive and Dentistry Sciences, University of Naples “Federico II”, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Institut für Steuerrecht, Universität zu Köln, Köln, Deutschland", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "CINBIO, Universidade de Vigo, SiDOR Research Group, Vigo, Spain", + "ror_ids": [ + "https://ror.org/05rdf8595" + ] + }, + { + "affiliation": "Research Center for Pharmaceutical Ingredient and Traditional Medicine, National Research and Innovation Agency (BRIN), Cibinong, West Java, Indonesia", + "ror_ids": [ + "https://ror.org/02hmjzt55" + ] + }, + { + "affiliation": "Department of Orthopeadics, Shengjing Hospital of China Medical University, Shenyang, Liaoning, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04wjghj95", + "https://ror.org/00v408z34" + ] + }, + { + "affiliation": "Laboratoire des signaux et systèmes, Université Paris-Saclay, CNRS, CentraleSupélec, INRIA, Gif-sur-Yvette, France", + "ror_ids": [ + "https://ror.org/019tcpt25", + "https://ror.org/03xjwb503" + ] + }, + { + "affiliation": "Centre for Composite Materials and Structures (CCMS), Harbin Institute of Technology, Harbin, China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Department of Geomatics, Forest Research Institute, Raszyn, Poland", + "ror_ids": [ + "https://ror.org/03kkb8y03" + ] + }, + { + "affiliation": "Department of Cardiovascular Medicine, Mayo Clinic, Rochester, MN, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "CNRS-IN2P3, UMR 5822, Institut de Physique des 2 Infinis de Lyon, Lyon, France", + "ror_ids": [ + "https://ror.org/02avf8f85" + ] + }, + { + "affiliation": "Institute for Clinical Pharmacology, Technical University, Dresden, Germany", + "ror_ids": [ + "https://ror.org/042aqky30" + ] + }, + { + "affiliation": "Fakultät für Gesundheit, Universität Witten/Herdecke, Witten, Deutschland", + "ror_ids": [ + "https://ror.org/00yq55g44" + ] + }, + { + "affiliation": "Neurostatistics Research Laboratory, MIT, Cambridge, USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Institute of Microbiology, Lausanne University Hospital, University of Lausanne, Lausanne, Switzerland", + "ror_ids": [ + "https://ror.org/019whta54" + ] + }, + { + "affiliation": "Center for Health Outcomes and Interdisciplinary Research (CHOIR), Department of Psychiatry, Massachusetts General Hospital/Harvard Medical School, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Center for Mind, Brain and Behavior, Philipps-Universität Marburg, Marburg, Germany", + "ror_ids": [ + "https://ror.org/01rdrb571" + ] + }, + { + "affiliation": "Research Student, Bharathidasan University, Tiruchirappalli, India", + "ror_ids": [ + "https://ror.org/02w7vnb60" + ] + }, + { + "affiliation": "Prince Sultan University, Riyadh, Saudi Arabia", + "ror_ids": [ + "https://ror.org/053mqrf26" + ] + }, + { + "affiliation": "CHU Nantes, INSERM, CIC1413, Nantes Université, Nantes, France", + "ror_ids": [ + "https://ror.org/03gnr7b55", + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Fafo Institute for Labour and Social Research, Oslo, Norway", + "ror_ids": [ + "https://ror.org/00ee9xb13" + ] + }, + { + "affiliation": "Environmental Toxicology and Chemistry Research Group, Faculty of Applied Sciences, Cape Peninsula University of Technology, Bellville, South Africa", + "ror_ids": [ + "https://ror.org/056e9h402" + ] + }, + { + "affiliation": "School of Mechanical Engineering, Xi’an Jiaotong University, Xi’an, Shaanxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/017zhmm22" + ] + }, + { + "affiliation": "Mitglied der Institutsleitung, Production Engineering of E-Mobility Components (PEM), RWTH Aachen, Aachen, Deutschland", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "Department of Geography, Universitat Autònoma de Barcelona, Cerdanyola del Vallès, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Instituto de Física y Astronomía, Universidad de Valparaíso, Valparaiso, Chile", + "ror_ids": [ + "https://ror.org/00h9jrb69" + ] + }, + { + "affiliation": "Body Technology, Volvo Cars, Gothenburg, Sweden", + "ror_ids": [ + "https://ror.org/005n5zv88" + ] + }, + { + "affiliation": "Department of Cardiology, Máxima Medical Centre, Veldhoven, The Netherlands", + "ror_ids": [ + "https://ror.org/02x6rcb77" + ] + }, + { + "affiliation": "Department of Economics, Federal University Oye-Ekiti, Oye-Ekiti, Ekiti, Nigeria", + "ror_ids": [ + "https://ror.org/02q5h6807" + ] + }, + { + "affiliation": "College of Information and Communication, National University of Defense Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/05d2yfz11" + ] + }, + { + "affiliation": "Universität Innsbruck, Department of Astro and Particle Physics, Innsbruck, Austria", + "ror_ids": [ + "https://ror.org/054pv6659" + ] + }, + { + "affiliation": "Neural Systems Laboratory, Institute of Basic Medical Sciences, University of Oslo, Oslo, Norway", + "ror_ids": [ + "https://ror.org/01xtthb56" + ] + }, + { + "affiliation": "Section of Nephrology, Boston University School of Medicine and Boston Medical Center, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/05qwgg493", + "https://ror.org/010b9wj87" + ] + }, + { + "affiliation": "College of Mathematics and Computer Science, Zhejiang Normal University, Jinhua, Zhejiang, China", + "ror_ids": [ + "https://ror.org/01vevwk45" + ] + }, + { + "affiliation": "Max Planck Institute for Dynamics and Self-Organization (MPI-DS), Göttingen, Germany", + "ror_ids": [ + "https://ror.org/0087djs12" + ] + }, + { + "affiliation": "Discipline Inspection and Audit Division, Aviation General Hospital, Beijing, China", + "ror_ids": [ + "https://ror.org/04j1qx617" + ] + }, + { + "affiliation": "CINEA and ESTS, IPS – Energy and Environment Research Center, Instituto Politécnico de Setúbal, Setúbal, Portugal", + "ror_ids": [ + "https://ror.org/01bvjz807" + ] + }, + { + "affiliation": "State Key Laboratory of Subtropical Silviculture, Zhejiang A & F University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/02vj4rn06" + ] + }, + { + "affiliation": "Oslo Centre of Biostatistics and Epidemiology, Oslo University Hospital, Oslo, Norway", + "ror_ids": [ + "https://ror.org/00j9c2840" + ] + }, + { + "affiliation": "Structural Genomics Consortium, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087", + "https://ror.org/04jzps455" + ] + }, + { + "affiliation": "Department of Otolaryngology–Head and Neck Surgery, University of CA–Davis Sacramento, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "School of Computer Science and Technology, Harbin Institute of Technology, Shenzhen, Shenzhen, China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Child Psychopathology Unit, Scientific Institute, IRCCS E. Medea – La Nostra Famiglia, Lecco, Italy", + "ror_ids": [ + "https://ror.org/05ynr3m75" + ] + }, + { + "affiliation": "Department of Physics, LEPP, Cornell University, Ithaca, NY, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Soil Science and Agricultural Chemistry, Institute of Agricultural Sciences, Banaras Hindu University, Uttar Pradesh, Varanasi, India", + "ror_ids": [ + "https://ror.org/04cdn2797" + ] + }, + { + "affiliation": "School of Computer and Information Engineering, Henan University, KaiFeng, Henan, China", + "ror_ids": [ + "https://ror.org/003xyzq10" + ] + }, + { + "affiliation": "Department of Human Genetics, University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Chitkara University, Gharuan, Mohali, Punjab, India", + "ror_ids": [ + "https://ror.org/057d6z539" + ] + }, + { + "affiliation": "Oil Crops Biotechnology Lab, Agricultural Genetic Engineering Institute, Agricultural Research Center, Giza, Egypt", + "ror_ids": [ + "https://ror.org/05hcacp57" + ] + }, + { + "affiliation": "Innovation Institute for Sustainable Maritime Architecture Research and Technology, Qingdao University of Technology, Qingdao, China", + "ror_ids": [ + "https://ror.org/01qzc0f54" + ] + }, + { + "affiliation": "Hefei National Laboratory for Physical Science at the Microscale, School of Life Sciences, University of Science and Technology of China, Hefei, P. R. China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Southeast Fisheries Science Center, NOAA Fisheries, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/0396y0w87", + "https://ror.org/033mqx355" + ] + }, + { + "affiliation": "Emergency Department, University Hospital of Lausanne, Lausanne, Switzerland", + "ror_ids": [ + "https://ror.org/05a353079" + ] + }, + { + "affiliation": "Dipartimento di Matematica “F. Casorati”, Universita di Pavia, Pavia, Italy", + "ror_ids": [ + "https://ror.org/00s6t1f81" + ] + }, + { + "affiliation": "St. Petersburg Electrotechnical University, St. Petersburg, Russia", + "ror_ids": [ + "https://ror.org/023bq8521" + ] + }, + { + "affiliation": "Clinical Medicine, Medical College of Wuhan University of Science and Technology, Wuhan, Hubei, China", + "ror_ids": [ + "https://ror.org/00e4hrk88" + ] + }, + { + "affiliation": "Computer Science and Engineering, Panimalar Engineering College, Chennai, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Department of Computer Science & Engineering, Atria Institute of Technology, Bengaluru, Karnataka, India", + "ror_ids": [ + "https://ror.org/00ha14p11" + ] + }, + { + "affiliation": "Faculty of Basic Sciences, University of Medicine and Pharmacy, Ho Chi Minh City, Vietnam", + "ror_ids": [] + }, + { + "affiliation": "Institut für Erziehungswissenschaft/Abteilung Schulpädagogik, Eberhard Karls Universität Tübingen, Tübingen, Deutschland", + "ror_ids": [ + "https://ror.org/03a1kwz48" + ] + }, + { + "affiliation": "Medical Oncology Unit, Institut de Cancérologie Strasbourg Europe, Strasbourg, France", + "ror_ids": [ + "https://ror.org/008fdbn61" + ] + }, + { + "affiliation": "Bioprocess Technology Laboratory, Department of Biotechnology, Mata Gujri College, Fatehgarh Sahib, Punjab, India", + "ror_ids": [ + "https://ror.org/03tjsyq23" + ] + }, + { + "affiliation": "Institute of Cardiometabolism and Nutrition, ICAN, INSERM, Paris, France", + "ror_ids": [ + "https://ror.org/02vjkv261", + "https://ror.org/050c3pq49" + ] + }, + { + "affiliation": "Department of Psychological, Health and Territorial Sciences, G. d’Annunzio University of Chieti-Pescara, Chieti, Italy", + "ror_ids": [ + "https://ror.org/00qjgza05" + ] + }, + { + "affiliation": "Department of Energy, Power Engineering and Environmental Engineering, Faculty of Mechanical Engineering and Naval Architecture, The University of Zagreb, Zagreb, Croatia", + "ror_ids": [ + "https://ror.org/00mv6sv71", + "https://ror.org/00j5kgp20" + ] + }, + { + "affiliation": "Division of Neuroscience, The University of Sheffield, Sheffield, UK", + "ror_ids": [ + "https://ror.org/05krs5044" + ] + }, + { + "affiliation": "Big Data and Artificial Intelligence Laboratory, Yantai Yuhuangding Hospital, Qingdao University, Yantai, Shandong, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05vawe413", + "https://ror.org/021cj6z65" + ] + }, + { + "affiliation": "Division of Electrophysiology, Department of Cardiology, Herlev-Gentofte Hospital, Hellerup, Denmark", + "ror_ids": [ + "https://ror.org/051dzw862" + ] + }, + { + "affiliation": "Department of Diagnostic and Interventional Radiology, Lausanne University Hospital (CHUV) and University of Lausanne, Lausanne, Switzerland", + "ror_ids": [ + "https://ror.org/019whta54" + ] + }, + { + "affiliation": "Eli and Edythe Broad Center of Regeneration Medicine and Stem Cell Research, University of California, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "School of Finance, Capital University of Economics and Business, Beijing, China", + "ror_ids": [ + "https://ror.org/01r5sf951" + ] + }, + { + "affiliation": "School of Physics and Optoelectronic Engineering, Guangdong University of Technology, Guangzhou, China", + "ror_ids": [ + "https://ror.org/04azbjn80" + ] + }, + { + "affiliation": "UC Davis Violence Prevention Research Program, Sacramento, CA, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Department of Forensic Dentistry, Piracicaba Dental School, University of Campinas, Piracicaba, Brazil", + "ror_ids": [ + "https://ror.org/04wffgt70" + ] + }, + { + "affiliation": "Life Science and Technology School, Lingnan Normal University, Zhanjiang, China", + "ror_ids": [ + "https://ror.org/01h6ecw13" + ] + }, + { + "affiliation": "Guangdong Provincial Key Laboratory of Tumor Interventional Diagnosis and Treatment, Zhuhai Institute of Translational Medicine, Zhuhai People’s Hospital Affiliated with Jinan University, Jinan University, Zhuhai, China", + "ror_ids": [ + "https://ror.org/02xe5ns62", + "https://ror.org/01k1x3b35" + ] + }, + { + "affiliation": "Department of Psychology, University of Richmond, Richmond, VA, USA", + "ror_ids": [ + "https://ror.org/03y71xh61" + ] + }, + { + "affiliation": "Department of Thoracic and Cardiovascular Surgery, Seoul National University Hospital, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/01z4nnt86" + ] + }, + { + "affiliation": "Unité de Formation et de Recherche en Sciences et Technologies (UFR/ST), Université Norbert ZONGO (UNZ), Koudougou, Burkina Faso", + "ror_ids": [ + "https://ror.org/02hrqje66" + ] + }, + { + "affiliation": "Centre for Medical Parasitology, Department of Immunology and Microbiology, University of Copenhagen, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/035b05819" + ] + }, + { + "affiliation": "Department of CSE UVCE, Bangalore University, Bengaluru, India", + "ror_ids": [ + "https://ror.org/050j2vm64" + ] + }, + { + "affiliation": "School of Water Resources and Environment, China University of Geosciences (Beijing), Beijing, China", + "ror_ids": [ + "https://ror.org/04q6c7p66" + ] + }, + { + "affiliation": "State Key Laboratory of Fire Science, University of Science and Technology of China, Hefei, Anhui, China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Toppan Technical Research Institute, Toppan Inc, Saitama, Japan", + "ror_ids": [ + "https://ror.org/01kz55g98" + ] + }, + { + "affiliation": "Département de Chirurgie, Institut du Thorax Curie-Montsouris, Institut Mutualiste Montsouris, Paris, France", + "ror_ids": [ + "https://ror.org/00bea5h57" + ] + }, + { + "affiliation": "Department of Gastroenterology and Hepatology, Erasmus MC University Medical Center, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/018906e22" + ] + }, + { + "affiliation": "Department of Physics, School of Science and Technology, Nottingham Trent University, Nottingham, UK", + "ror_ids": [ + "https://ror.org/04xyxjd90" + ] + }, + { + "affiliation": "Department of Internal Medicine, Dr. Josip Benčević General Hospital, Slavonski Brod, Croatia", + "ror_ids": [ + "https://ror.org/0518jvn15" + ] + }, + { + "affiliation": "China Institute of Atomic Energy, Beijing, China", + "ror_ids": [ + "https://ror.org/00v5gqm66" + ] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biology, Autonomous University of Barcelona (UAB), Barcelona, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Facultad de Ciencias de la Ingeniería e Industrias, Universidad UTE, Quito, Ecuador", + "ror_ids": [ + "https://ror.org/00dmdt028" + ] + }, + { + "affiliation": "School of Electrical and Electronics Engineering, SASTRA University, Thanjavur, India", + "ror_ids": [ + "https://ror.org/032jk8892" + ] + }, + { + "affiliation": "Department of Oral Health for Children and Adolescents, Universidade Federal de Minas Gerais, Belo Horizonte, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0176yjw32" + ] + }, + { + "affiliation": "Department of Gastroenterology and Hepatology, Princess Alexandra Hospital, Brisbane, QLD, Australia", + "ror_ids": [ + "https://ror.org/04mqb0968" + ] + }, + { + "affiliation": "Fiber and Biopolymer Research Institute, Department of Plant and Soil Science, Texas Tech University, Lubbock, USA", + "ror_ids": [ + "https://ror.org/0405mnx93" + ] + }, + { + "affiliation": "Çukurova University, Adana, Turkey", + "ror_ids": [ + "https://ror.org/05wxkj555" + ] + }, + { + "affiliation": "Departamento de Ciências Morfológicas, Instituto de Ciências Básicas da Saúde, Universidade Federal do Rio Grande do Sul (UFRGS), Porto Alegre, Brazil", + "ror_ids": [ + "https://ror.org/041yk2d64" + ] + }, + { + "affiliation": "Bioneer A/S, Hørsholm, Denmark", + "ror_ids": [ + "https://ror.org/02h8qh795" + ] + }, + { + "affiliation": "Dipartimento di Fisica, Università della Calabria, Rende, Italy", + "ror_ids": [ + "https://ror.org/02rc97e94" + ] + }, + { + "affiliation": "Department of Metallurgy and Materials Engineering, Faculty of Engineering and Natural Sciences, Iskenderun Technical University, Hatay, Turkey", + "ror_ids": [ + "https://ror.org/052nzqz14" + ] + }, + { + "affiliation": "Univ. Grenoble Alpes, CNRS, Grenoble INP, GIPSA-lab, Grenoble, France", + "ror_ids": [ + "https://ror.org/02wrme198", + "https://ror.org/02rx3b187", + "https://ror.org/05sbt2524" + ] + }, + { + "affiliation": "Department of Pediatric Cardiology, Saarland University Hospital, Homburg, Germany", + "ror_ids": [ + "https://ror.org/01jdpyv68" + ] + }, + { + "affiliation": "Department of Neurology, Affiliated Hospital of Zunyi Medical University CN, Zunyi, China", + "ror_ids": [ + "https://ror.org/00g5b0g93" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Pohang University of Science and Technology, Pohang, Gyeongbuk, South Korea", + "ror_ids": [ + "https://ror.org/04xysgw12" + ] + }, + { + "affiliation": "Instituto de Bioingeniería, Universidad Miguel Hernández, Elche, Spain", + "ror_ids": [ + "https://ror.org/01azzms13" + ] + }, + { + "affiliation": "Unidad de Química Orgánica y Farmacéutica, Departamento de Química en Ciencias Farmacéuticas, Facultad de Farmacia, Universidad Complutense, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Knappschaft, Bochum, Deutschland", + "ror_ids": [ + "https://ror.org/024j3hn90" + ] + }, + { + "affiliation": "Guangdong Institute of Gastroenterology, The Sixth Affiliated Hospital of Sun Yat-Sen University, Sun Yat-Sen University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/0064kty71", + "https://ror.org/005pe1772" + ] + }, + { + "affiliation": "Department of Neurosurgery, Division of Surgery, The University of Texas MD Anderson Cancer Center, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "EA 7379 EpiDermE, Université Paris-Est Créteil (UPEC), Créteil, France", + "ror_ids": [ + "https://ror.org/05ggc9x40" + ] + }, + { + "affiliation": "Department of Neurology, Faculty of Medicine, University of Bonn, Bonn, Germany", + "ror_ids": [ + "https://ror.org/041nas322" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, State University of New York at Binghamton, Binghamton, NY, USA", + "ror_ids": [ + "https://ror.org/008rmbt77" + ] + }, + { + "affiliation": "Nephrology and Dialysis Unit, IRCCS San Raffaele Scientific Institute, Milan, Italy", + "ror_ids": [ + "https://ror.org/039zxt351", + "https://ror.org/006x48140" + ] + }, + { + "affiliation": "National Institute of Plant Genome Research (NIPGR), New Delhi, India", + "ror_ids": [ + "https://ror.org/04zw11527" + ] + }, + { + "affiliation": "Cancer Center Amsterdam, Imaging and Biomarkers, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/0286p1c86" + ] + }, + { + "affiliation": "The Institute for Digital Medicine (WisDM), Yong Loo Lin School of Medicine, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "University of Nottingham (UK and Malaysia), University Park, Nottingham, UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Department of Pharmaceutical Chemistry, School of Pharmaceutical Sciences, Delhi Pharmaceutical Sciences and Research University (DPSRU), New Delhi, India", + "ror_ids": [ + "https://ror.org/022akpv96" + ] + }, + { + "affiliation": "Key Laboratory for Quantum Materials of Zhejiang Province, Department of Physics, School of Science, Westlake University, Hangzhou, P. R. China", + "ror_ids": [ + "https://ror.org/05hfa4n20" + ] + }, + { + "affiliation": "Key Laboratory of Biomechanics and Mechanobiology, Ministry of Education, Beijing Advanced Innovation Center for Biomedical Engineering, School of Biological Science and Medical Engineering, Beihang University, Beijing, China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Department of Civil, Environmental and Natural Resources Engineering, Luleå University of Technology, Luleå, Sweden", + "ror_ids": [ + "https://ror.org/016st3p78" + ] + }, + { + "affiliation": "Department of Civil Engineering, Faculty of Construction Engineering, University of Mouloud Mammeri of Tizi-Ouzou, Tizi-Ouzou, RP, Algeria", + "ror_ids": [ + "https://ror.org/050ktqq97" + ] + }, + { + "affiliation": "School of Civil Engineering, Qingdao University of Technology, Qingdao, China", + "ror_ids": [ + "https://ror.org/01qzc0f54" + ] + }, + { + "affiliation": "Department of Mathematics, IGIT Sarang, Dhenkanal, Odisha, India", + "ror_ids": [ + "https://ror.org/0010jkx06" + ] + }, + { + "affiliation": "Fujian Province University Key Laboratory of Computational Science, School of Mathematical Sciences, Huaqiao University, Quanzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03frdh605" + ] + }, + { + "affiliation": "Kachwekano Zonal Agricultural Research and Development Institute, National Agricultural Research Organization, Kabale, Uganda", + "ror_ids": [ + "https://ror.org/05rmt1x67" + ] + }, + { + "affiliation": "Department of Gastroenterology and Hepatology, Ground Floor Alfred Centre, Alfred Health, Melbourne, VIC, Australia", + "ror_ids": [ + "https://ror.org/04scfb908" + ] + }, + { + "affiliation": "Agencia de Extensión Rural, Instituto Nacional de Tecnología Agropecuaria (INTA), General Alvear, Mendoza, Argentina", + "ror_ids": [ + "https://ror.org/04wm52x94" + ] + }, + { + "affiliation": "College of Mecheanical and Electrical Engineering, Northeast Forestry University, Harbin, China", + "ror_ids": [ + "https://ror.org/02yxnh564" + ] + }, + { + "affiliation": "Duke Center for Autism and Brain Development, Duke University, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Communication Sciences Research Center, Reading and Literacy Discovery Center, Cincinnati Children’s Hospital Medical Center, Cincinnati, USA", + "ror_ids": [ + "https://ror.org/01hcyya48" + ] + }, + { + "affiliation": "Zhengzhou Research Base, National Key Laboratory of Cotton Bio-breeding and Integrated Utilization, School of Agricultural Sciences, Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Department of Electronics and Communication Engineering, National Institute of Technology, Durgapur, West Bengal, India", + "ror_ids": [ + "https://ror.org/04ds0jm32" + ] + }, + { + "affiliation": "Clinic for Pediatric Pulmonology, Allergology and Neonatology, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Department of Cardiothoracic Surgery, Weill Cornell Medicine and New York-Presbyterian Hospital, New York, USA", + "ror_ids": [ + "https://ror.org/02r109517" + ] + }, + { + "affiliation": "Division of Surgical Oncology, Department of Surgery, Knight Cancer Institute, Oregon Health and Science University, Portland, OR, USA", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Zhongyuan Research Center, Chinese Academy of Agricultural Sciences, Xinxiang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0313jb750" + ] + }, + { + "affiliation": "College of Food Science and Engineering, Hainan University, Haikou, Hainan, China", + "ror_ids": [ + "https://ror.org/03q648j11" + ] + }, + { + "affiliation": "Department of Computer Science, Wesleyan University, Middletown, USA", + "ror_ids": [ + "https://ror.org/05h7xva58" + ] + }, + { + "affiliation": "Department of Haematology, Christian Medical College, Vellore, India", + "ror_ids": [ + "https://ror.org/01vj9qy35" + ] + }, + { + "affiliation": "QinLing-Bashan Mountains Bioresources Comprehensive Development C. I. C., Shaanxi University of Technology, Hanzhong, China", + "ror_ids": [ + "https://ror.org/056m91h77" + ] + }, + { + "affiliation": "CERIMED, Aix-Marseille University, Marseille, France", + "ror_ids": [ + "https://ror.org/035xkbk20" + ] + }, + { + "affiliation": "Hematology Unit and Chair, Azienda Ospedaliera Universitaria di Modena, Modena, Italy", + "ror_ids": [ + "https://ror.org/01hmmsr16" + ] + }, + { + "affiliation": "Department of Educational Studies, The American University in Cairo, New Cairo, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/0176yqn58" + ] + }, + { + "affiliation": "Department of Computer and Network Engineering, University of Electro-Communications, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/02x73b849" + ] + }, + { + "affiliation": "Department of Linguistics, University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Civil and Environmental Engineering, Amirkabir University of Technology (Tehran Polytechnic), Tehran, Iran", + "ror_ids": [ + "https://ror.org/04gzbav43" + ] + }, + { + "affiliation": "Department of Politics, York University, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/05fq50484" + ] + }, + { + "affiliation": "The University of Texas at San Antonio, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/01kd65564" + ] + }, + { + "affiliation": "Department of Neurology and Neurosurgery, Montreal Neurological Institute and Hospital, McGill University, Montreal, Quebec, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438", + "https://ror.org/05ghs6f64" + ] + }, + { + "affiliation": "Department of Histology and Embryology, Jessenius Faculty of Medicine, Comenius University in Bratislava, Martin, Slovakia", + "ror_ids": [ + "https://ror.org/0587ef340" + ] + }, + { + "affiliation": "Division of Clinical Nephrology and Rheumatology, Niigata University Graduate School of Medical and Dental Sciences, Niigata, Japan", + "ror_ids": [ + "https://ror.org/04ww21r56" + ] + }, + { + "affiliation": "KTH Royal Institute of Technology, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Instituto de Ciencias Nucleares, Universidad Nacional Autónoma de México, Mexico City, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "Suzhou Institute for Advanced Research, University of Science and Technology of China, Suzhou, Jiangsu, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Provincial OCD Program, BC Children’s Hospital, Vancouver, BC, Canada", + "ror_ids": [ + "https://ror.org/04n901w50" + ] + }, + { + "affiliation": "Dow University of Health Sciences, Karachi, Pakistan", + "ror_ids": [ + "https://ror.org/01h85hm56" + ] + }, + { + "affiliation": "Department of Pediatrics, Columbia University College of Physicians and Surgeons, New York, NY, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "School of Psychology, Faculty of Social Sciences, University of Ottawa, Ottawa, ON, Canada", + "ror_ids": [ + "https://ror.org/03c4mmv16" + ] + }, + { + "affiliation": "Brain Dynamics Lab, Swinburne University, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/031rekg67" + ] + }, + { + "affiliation": "Hubei Provincial Engineering Technology Research Center of Metallurgical Secondary Resources, Wuhan University of Science and Technology, Wuhan, Hubei, China", + "ror_ids": [ + "https://ror.org/00e4hrk88" + ] + }, + { + "affiliation": "Western Sydney Sexual Health Centre, Parramatta, NSW, Australia", + "ror_ids": [ + "https://ror.org/014nwb521" + ] + }, + { + "affiliation": "Department of Medical Science, Metabolic Syndrome and Cell Signaling Laboratory, Institute for Cancer Research, College of Medicine, Chungnam National University, Daejeon, Republic of Korea", + "ror_ids": [ + "https://ror.org/0227as991" + ] + }, + { + "affiliation": "Department of Molecular Biology and Genetics, Usak University, Usak, Turkey", + "ror_ids": [ + "https://ror.org/05es91y67" + ] + }, + { + "affiliation": "Faculty of Computers and Artificial Intelligence, Benha University, Banha, Egypt", + "ror_ids": [ + "https://ror.org/03tn5ee41" + ] + }, + { + "affiliation": "Department of Clinical and Molecular Medicine, Sant’Andrea University Hospital, Sapienza University of Rome, Rome, Italy", + "ror_ids": [ + "https://ror.org/02be6w209" + ] + }, + { + "affiliation": "Department of Biology, Laboratory of Biotechnology and Valorization of bio-Resources, Faculty of Sciences, Moulay Ismail University of Meknes, Zitoune Meknes, Morocco", + "ror_ids": [ + "https://ror.org/04cnscd67" + ] + }, + { + "affiliation": "Department of Spine Surgery, Honghui Hospital, Xi’an Jiaotong University, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/017zhmm22", + "https://ror.org/015bnwc11" + ] + }, + { + "affiliation": "Division of Gastroenterology, Department of Internal Medicine, Eunpyeong St. Mary’s Hospital, College of Medicine, The Catholic University of Korea, Seoul, Korea", + "ror_ids": [ + "https://ror.org/01fpnj063" + ] + }, + { + "affiliation": "University of California Irvine, Irvine, CA, USA", + "ror_ids": [ + "https://ror.org/04gyf1771" + ] + }, + { + "affiliation": "Freie Universität Berlin, Berlin, Berlin, Deutschland", + "ror_ids": [ + "https://ror.org/046ak2485" + ] + }, + { + "affiliation": "Department of Computer Science and Software Engineering, Shelby Center for Engineering Technology, Samuel Ginn College of Engineering, Auburn University, Auburn, AL, USA", + "ror_ids": [ + "https://ror.org/02v80fc35" + ] + }, + { + "affiliation": "School of Foreign Languages, Wenzhou Medical University, Wenzhou, China", + "ror_ids": [ + "https://ror.org/00rd5t069" + ] + }, + { + "affiliation": "Mathematical Institute, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "National Institute of Materials Physics, Magurele, Romania", + "ror_ids": [ + "https://ror.org/002ghjd91" + ] + }, + { + "affiliation": "Department of Preventive Medicine, The Icahn School of Medicine at Mount Sinai, New York, USA", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "Fakultät Life Sciences, Hochschule Rhein-Waal, Kleve, Deutschland", + "ror_ids": [ + "https://ror.org/04wdt0z89" + ] + }, + { + "affiliation": "Physics Division, Lawrence Berkeley National Laboratory, Berkeley, CA, USA", + "ror_ids": [ + "https://ror.org/02jbv0t02" + ] + }, + { + "affiliation": "University of Minnesota Genomics Center (UMNGC), Minneapolis, MN, USA", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "University of Edinburgh, EDINBURGH, United Kingdom", + "ror_ids": [ + "https://ror.org/01nrxwf90" + ] + }, + { + "affiliation": "Department of Health Research Methods, Evidence and Impact, McMaster University, Hamilton, Canada", + "ror_ids": [ + "https://ror.org/02fa3aq29" + ] + }, + { + "affiliation": "Faculty of Mathematics and Information Science, Warsaw University of Technology, Warsaw, Poland", + "ror_ids": [ + "https://ror.org/00y0xnp53" + ] + }, + { + "affiliation": "Sydney Medical School, The University of Sydney, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Medical Oncology, Christchurch Hospital, Christchurch, Canterbury, New Zealand", + "ror_ids": [ + "https://ror.org/003nvpm64" + ] + }, + { + "affiliation": "University Hospital TU Dresden, Dresden, Germany", + "ror_ids": [ + "https://ror.org/042aqky30" + ] + }, + { + "affiliation": "U1227, University of Brest, INSERM, IBSAM, Brest, France", + "ror_ids": [ + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "School of Mining and Geosciences, Nazarbayev University, Astana, Kazakhstan", + "ror_ids": [ + "https://ror.org/052bx8q98" + ] + }, + { + "affiliation": "Department of Electronic and Electrical Engineering, Southern University of Science and Technology, Shenzhen, China", + "ror_ids": [ + "https://ror.org/049tv2d57" + ] + }, + { + "affiliation": "College of Clinical Medicine for Obstetrics & Gynecology and Pediatrics, Fujian Medical University, Fuzhou, China", + "ror_ids": [ + "https://ror.org/050s6ns64" + ] + }, + { + "affiliation": "Division of Trauma, Emergency Surgery and Surgical Critical Care, Department of Surgery, Massachusetts General Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Department of Plastic and Reconstructive Surgery, University Hospital Regensburg, Regensburg, Germany", + "ror_ids": [ + "https://ror.org/01226dv09" + ] + }, + { + "affiliation": "Nicholas School of the Environment, Duke University, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Department of Pharmacology, University of California, San Diego, La Jolla, CA, USA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "College of Geology and Environment, Xi’an University of Science and Technology, Xi’an, China", + "ror_ids": [ + "https://ror.org/046fkpt18" + ] + }, + { + "affiliation": "College of Social Work, The Ohio State University, Columbus, OH, USA", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Department of Exercise Physiology, Faculty of Educational Sciences and Psychology, University of Mohaghegh Ardabili, Ardabil, Iran", + "ror_ids": [ + "https://ror.org/045zrcm98" + ] + }, + { + "affiliation": "Department of Geography, Diamond Harbour Women’s University, Sarisha, West Bengal, India", + "ror_ids": [ + "https://ror.org/04xt0wn96" + ] + }, + { + "affiliation": "Department of General Internal Medicine and Clinical Infectious Diseases, Fukushima Medical University, Fukushima, Japan", + "ror_ids": [ + "https://ror.org/012eh0r35" + ] + }, + { + "affiliation": "Institute for High Energy Physics of the Russian Federation, State Research Center “Kurchatov Institute”, Protvino (MO), Russia", + "ror_ids": [ + "https://ror.org/03kn4xv14", + "https://ror.org/00n1nz186" + ] + }, + { + "affiliation": "Department of Health & Exercise Science, Colorado State University, Fort Collins, CO, USA", + "ror_ids": [ + "https://ror.org/03k1gpj17" + ] + }, + { + "affiliation": "Department of Humanity and Science, School of Engineering, Indrashil University, Mehsana, Gujarat, India", + "ror_ids": [ + "https://ror.org/05tcdrk12" + ] + }, + { + "affiliation": "State Key Laboratory of Novel Software Technology, National Institute of Health-care Data Science, Nanjing University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "Division of Endocrinology, Diabetes and Metabolism, Comprehensive Weight Control Center, Weill Cornell Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02r109517" + ] + }, + { + "affiliation": "Shanghai Center for Mathematical Sciences, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "School of Dentistry, University of Texas Health Science Center, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/02f6dcw23" + ] + }, + { + "affiliation": "Chair for Production Technology, Institute for Mechatronics, University of Innsbruck, Innsbruck, Austria", + "ror_ids": [ + "https://ror.org/054pv6659" + ] + }, + { + "affiliation": "Centre for Pollution Control and Environmental Engineering, Pondicherry University, Kalapet, Puducherry, India", + "ror_ids": [ + "https://ror.org/01a3mef16" + ] + }, + { + "affiliation": "MPH Student, Faculty of Public Health, University of Health Sciences, Vientiane, Lao People’s Democratic Republic", + "ror_ids": [ + "https://ror.org/02azxx136" + ] + }, + { + "affiliation": "Environment and Health, Amsterdam Institute for Life and Environment, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/008xxew50" + ] + }, + { + "affiliation": "Lancashire & South Cumbria NHS Foundation Trust, London, UK", + "ror_ids": [ + "https://ror.org/03zefc030" + ] + }, + { + "affiliation": "Department of Neuromedicine and Movement Science, NTNU, Faculty of Medicine, Norwegian University of Science and Technology, Trondheim, Norway", + "ror_ids": [ + "https://ror.org/05xg72x27" + ] + }, + { + "affiliation": "Department of Medical Biochemistry, Hamidiye School of Medicine, University of Health Sciences, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "Department of Physics, Faculty of Sciences – University of Antananarivo, Antananarivo, Madagascar", + "ror_ids": [ + "https://ror.org/02w4gwv87" + ] + }, + { + "affiliation": "Department of Gastroenterology, The First Affiliated Hospital of Guangxi Medical University, Nanning, China", + "ror_ids": [ + "https://ror.org/030sc3x20" + ] + }, + { + "affiliation": "College of Animal Science and Veterinary Medicine, Henan Institute of Science and Technology, Xinxiang, Henan, China", + "ror_ids": [ + "https://ror.org/0578f1k82" + ] + }, + { + "affiliation": "Child Trauma Research Center, University of Regina, Regina, SK, Canada", + "ror_ids": [ + "https://ror.org/03dzc0485" + ] + }, + { + "affiliation": "Department of Neurosciences, Reproductive Sciences and Odontostomatology, School of Medicine, University of Naples “Federico II”, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Department of Urology, Chengdu Xinhua Hospital Affiliated to North Sichuan Medical College, Chengdu, China", + "ror_ids": [ + "https://ror.org/05k3sdc46" + ] + }, + { + "affiliation": "Department of Biomedical Engineering, University of California, Davis, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Laboratory of Vegetable Production, Department of Agriculture, Crop Production and Rural Environ-Ment, University of Thessaly, N. Ionia, Greece", + "ror_ids": [ + "https://ror.org/04v4g9h31" + ] + }, + { + "affiliation": "The Urban Institute School of Energy, Geoscience, Infrastructure and Society Heriot-Watt University Edinburgh, Edinburgh, UK", + "ror_ids": [ + "https://ror.org/04mghma93" + ] + }, + { + "affiliation": "Department of General Surgery, Faculty of Medicine, Kutahya Health Sciences University, Kutahya, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Discipline of Public Health Medicine, School of Nursing and Public Health, University of KwaZulu-Natal, Durban, South Africa", + "ror_ids": [ + "https://ror.org/04qzfn040" + ] + }, + { + "affiliation": "Department of Pharmacy, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/056swr059" + ] + }, + { + "affiliation": "Departamento de Química, Universidade Federal da Paraíba, João Pessoa, Paraíba, Brazil", + "ror_ids": [ + "https://ror.org/00p9vpz11" + ] + }, + { + "affiliation": "Department of CSBS, R.V.R & J.C College of Engineering, Guntur, India", + "ror_ids": [ + "https://ror.org/02mfapa96" + ] + }, + { + "affiliation": "Department of Physics, Virginia Commonwealth University, Richmond, VA, USA", + "ror_ids": [ + "https://ror.org/02nkdxk79" + ] + }, + { + "affiliation": "Department of Medical Education, Jeonbuk National University Medical School, Jeonju, Korea", + "ror_ids": [ + "https://ror.org/05q92br09" + ] + }, + { + "affiliation": "Key Laboratory of Carcinogenesis and Translational Research (Ministry of Education/Beijing), Key Laboratory for Research and Evaluation of Radiopharmaceuticals (National Medical Products Administration), Department of Nuclear Medicine, Peking University Cancer Hospital & Institute, , China", + "ror_ids": [ + "https://ror.org/00nyxxr91" + ] + }, + { + "affiliation": "Servicios Informáticos, Universidad de Salamanca, Salamanca, Spain", + "ror_ids": [ + "https://ror.org/02f40zc51" + ] + }, + { + "affiliation": "Department of Public Health, Occupational and Environmental Medicine, Faculty of Medicine, Suez Canal University, Ismailia, Egypt", + "ror_ids": [ + "https://ror.org/02m82p074" + ] + }, + { + "affiliation": "Department of Digital Systems, School of Economics and Technology, University of the Peloponnese, Sparta, Greece", + "ror_ids": [ + "https://ror.org/04d4d3c02" + ] + }, + { + "affiliation": "Department of Surgery, NTT Medical Center Tokyo, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/0285prp25" + ] + }, + { + "affiliation": "Networking and Communications, SRM Institute of Science and Technology, Chennai, India", + "ror_ids": [ + "https://ror.org/050113w36" + ] + }, + { + "affiliation": "National Institute of Fitness and Sports in Kanoya, Kagoshima, Japan", + "ror_ids": [ + "https://ror.org/04n6qtb21" + ] + }, + { + "affiliation": "University Hospital Besançon, Besançon, France", + "ror_ids": [ + "https://ror.org/0084te143" + ] + }, + { + "affiliation": "Department of Radiology, West China Hospital, Sichuan University, Chengdu, Sichuan, China", + "ror_ids": [ + "https://ror.org/011ashp19", + "https://ror.org/007mrxy13" + ] + }, + { + "affiliation": "Technology Innovation Center for Smart Human Settlements and Spatial Planning & Governance, Ministry of Natural Resources, Beijing, China", + "ror_ids": [ + "https://ror.org/02kxqx159" + ] + }, + { + "affiliation": "University of Colorado Boulder, Department of Physics, Boulder, Colorado, USA", + "ror_ids": [ + "https://ror.org/02ttsq026" + ] + }, + { + "affiliation": "Department of Digital Health and Epidemiology, Graduate School of Medicine, Kyoto University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Institute of Educational Research, Ruhr-Universität Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Department of Mechanical and Power Engineering, East China University of Science and Technology, Shanghai, China", + "ror_ids": [ + "https://ror.org/01vyrm377" + ] + }, + { + "affiliation": "Department of Computer Education, Korea National University of Education, Cheongju, Republic of Korea", + "ror_ids": [ + "https://ror.org/03c9fpk55" + ] + }, + { + "affiliation": "Clinic’n’Cell SAS, UFR de Médecine et de Pharmacie, Clermont-Ferrand, TSA, France", + "ror_ids": [ + "https://ror.org/01a8ajp46" + ] + }, + { + "affiliation": "Department of Physiological Education, Chonnam National University, Gwangju, Republic of Korea", + "ror_ids": [ + "https://ror.org/05kzjxq56" + ] + }, + { + "affiliation": "Department of Reproductive Endocrinology, University Hospital Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/01462r250" + ] + }, + { + "affiliation": "Department of Physics, Technical University of Denmark, Lyngby, Denmark", + "ror_ids": [ + "https://ror.org/04qtj9h94" + ] + }, + { + "affiliation": "International Institute for Applied Systems Analysis (IIASA), Laxenburg, Austria", + "ror_ids": [ + "https://ror.org/02wfhk785" + ] + }, + { + "affiliation": "Kazim Karabekir Faculty of Education, Ataturk University, Erzurum, Türkiye", + "ror_ids": [ + "https://ror.org/03je5c526" + ] + }, + { + "affiliation": "Department of Surgery, Swiss HPB and Transplantation Centre, University Hospital Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/01462r250" + ] + }, + { + "affiliation": "Department of Epidemiology of Microbial Diseases, Yale School of Public Health, New Haven, CT, USA", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "CHU Strasbourg University Hospital, Strasbourg, France", + "ror_ids": [ + "https://ror.org/00pg6eq24" + ] + }, + { + "affiliation": "Electronics and Communication Enggineering Department, National Institute of Technology, Silchar, Assam, India", + "ror_ids": [ + "https://ror.org/001ws2a36" + ] + }, + { + "affiliation": "RWU Hochschule Ravensburg-Weingarten, Hochschule für angewandte Wissenschaften, Weingarten, Deutschland", + "ror_ids": [ + "https://ror.org/01k5h5v15" + ] + }, + { + "affiliation": "Noncommunicable Diseases Research Center, Bam University of Medical Sciences, Bam, Iran", + "ror_ids": [ + "https://ror.org/02mm76478" + ] + }, + { + "affiliation": "Department of Neurosurgery, Faculty of Medicine, Mansoura University, Mansoura, Egypt", + "ror_ids": [ + "https://ror.org/01k8vtd75" + ] + }, + { + "affiliation": "Department of History and Philosophy of Science, University of Cambridge, Cambridge, UK", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Canada Research Chair in Statistical Hydro-Climatology, Institut national de la recherche scientifique INRS-ETE, Quebec City, Canada", + "ror_ids": [ + "https://ror.org/04td37d32" + ] + }, + { + "affiliation": "Department of Pediatrics, Perelman School of Medicine, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Nuffield Department of Women’s & Reproductive Health, University of Oxford, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Department of Psychology, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "Department of Audiology, School of Rehabilitation Sciences, Hearing Disorder Research Center, Hamadan University of Medical Sciences, Hamadan, Iran", + "ror_ids": [ + "https://ror.org/02ekfbp48" + ] + }, + { + "affiliation": "Wellcome Wolfson Institute for Experimental Medicine, Queen’s University Belfast, Belfast, UK", + "ror_ids": [ + "https://ror.org/00hswnk62" + ] + }, + { + "affiliation": "Department of Food Engineering, Federal University of Triângulo Mineiro, Uberaba, MG, Brazil", + "ror_ids": [ + "https://ror.org/01av3m334" + ] + }, + { + "affiliation": "University of Illinois College of Medicine at Peoria, Peoria, IL, USA", + "ror_ids": [ + "https://ror.org/02qrdc062" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Kwangwoon University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/02e9zc863" + ] + }, + { + "affiliation": "Department of Economics, Soochow University, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05kvm7n82" + ] + }, + { + "affiliation": "Graduate School of Natural and Applied Sciences, Department of Nanoscience and Nanotechnology, Izmir Katip Çelebi University, Izmir, Turkey", + "ror_ids": [ + "https://ror.org/024nx4843" + ] + }, + { + "affiliation": "Department of Medical Life Sciences, College of Medicine, The Catholic University of Korea, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/01fpnj063" + ] + }, + { + "affiliation": "TIFAC-CORE in Cyber Security, Amrita School of Engineering, Amrita Vishwa Vidyapeetham, Coimbatore, India", + "ror_ids": [ + "https://ror.org/03am10p12" + ] + }, + { + "affiliation": "Institut für Gesellschaftswissenschaften, Otto-von-Guericke-University Magdeburg, Magdeburg, Deutschland", + "ror_ids": [ + "https://ror.org/00ggpsq73" + ] + }, + { + "affiliation": "Department of Political and Administrative Studies, School of Humanities and Social Sciences, The University of Zambia, Lusaka, Zambia", + "ror_ids": [ + "https://ror.org/03gh19d69" + ] + }, + { + "affiliation": "Anhui Key Laboratory of Advanced Building Materials, Anhui Jianzhu University, Hefei, Anhui, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0108wjw08" + ] + }, + { + "affiliation": "MD Anderson Cancer Center UTHealth Graduate School of Biomedical Sciences, University of Texas, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/03gds6c39", + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "School of Medical Information and Engineering, Xuzhou Medical University, Xuzhou, Jiangsu, China", + "ror_ids": [ + "https://ror.org/04fe7hy80" + ] + }, + { + "affiliation": "Department of Computer Science, Guangzhou Software Institute, Guangzhou, Guangdong Province, China", + "ror_ids": [ + "https://ror.org/0493m8x04" + ] + }, + { + "affiliation": "Laboratory of Neuropathology – Department of Imaging and Pathology, KU Leuven, Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, Semmelweis University Faculty of Medicine, Budapest, Hungary", + "ror_ids": [ + "https://ror.org/01g9ty582" + ] + }, + { + "affiliation": "Center for Weather Forecasting and Climate Studies (CPTEC), National Institute for Space Research (INPE), Cachoeira Paulista, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/04xbn6x09" + ] + }, + { + "affiliation": "Stem Cell Research Lab, GROW Lab, Narayana Nethralaya Foundation, Narayana Nethralaya Eye Hospital, Bangalore, Karnataka, India", + "ror_ids": [ + "https://ror.org/02h8pgc47" + ] + }, + { + "affiliation": "Division of Geriatric Medicine, Dalhousie University, Halifax, NS, Canada", + "ror_ids": [ + "https://ror.org/01e6qks80" + ] + }, + { + "affiliation": "Aircraft Swarm Intelligent Sensing and Cooperative Control Key Laboratory of Sichuan Province, UESTC, Chengdu, Sichuan, China", + "ror_ids": [ + "https://ror.org/04qr3zq92" + ] + }, + { + "affiliation": "Department of Mathematics Faculty of Science, Chulalongkorn University, Bangkok 5, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Department of Traditional Chinese Medicine, Children’s Hospital, Zhejiang University School of Medicine, National Clinical Research Center for Child Health, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Departamento de Quimica, Centro de Ciencias Exatas, Universidade Estadual de Londrina, Londrina, Paraná, Brazil", + "ror_ids": [ + "https://ror.org/01585b035" + ] + }, + { + "affiliation": "L3S Research Center, Leibniz University Hannover, Hanover, Germany", + "ror_ids": [ + "https://ror.org/0304hq317", + "https://ror.org/039t4wk02" + ] + }, + { + "affiliation": "Department of Public Health, University of Texas at San Antonio, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/01kd65564" + ] + }, + { + "affiliation": "Department of Biomedical and Health Informatics, Data Science and Biostatistics Unit, Children’s Hospital of Philadelphia, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/01z7r7q48" + ] + }, + { + "affiliation": "Earth and Ocean Sciences, Nicholas School of the Environment, Duke University, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Department of Economics, Turku School of Economics, University of Turku, Turku, Finland", + "ror_ids": [ + "https://ror.org/05vghhr25" + ] + }, + { + "affiliation": "Department of Radiology, Children’s Hospital Medical Center, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Northwell Health Cancer Institute, Lenox Hill Hospital, New York, NY, USA", + "ror_ids": [ + "https://ror.org/0231d2y50" + ] + }, + { + "affiliation": "Health First Heart and Vascular, Melbourne, FL, USA", + "ror_ids": [ + "https://ror.org/00cm7z053" + ] + }, + { + "affiliation": "Faculty of Medicine and University Hospital Cologne, Policlinic for Endocrinology, Diabetology and Preventive Medicine (PEPD), University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774", + "https://ror.org/05mxhda18" + ] + }, + { + "affiliation": "MoE Key Lab of Artificial Intelligence, Shanghai Jiao Tong University, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Faculty of Health Sciences, Valencian International University, Valencia, Spain", + "ror_ids": [ + "https://ror.org/00gjj5n39" + ] + }, + { + "affiliation": "Department of Mathematics, Bar-Ilan University, Ramat-Gan, Israel", + "ror_ids": [ + "https://ror.org/03kgsv495" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, University of Saskatchewan, Saskatoon, Saskatchewan, Canada", + "ror_ids": [ + "https://ror.org/010x8gc63" + ] + }, + { + "affiliation": "Department of Industrial Engineering, Yildiz Technical University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/0547yzj13" + ] + }, + { + "affiliation": "Department of Electric and Energy, Vocational Scholl of Technical Science, Fırat University, Elazığ, Turkey", + "ror_ids": [ + "https://ror.org/05teb7b63" + ] + }, + { + "affiliation": "Third World Center for Science and Technology, H.E.J. Research Institute of Chemistry, International Centre for Chemical and Biological Sciences (ICCBS), University of Karachi, Karachi, Pakistan", + "ror_ids": [ + "https://ror.org/05bbbc791" + ] + }, + { + "affiliation": "IDG/McGovern Institute for Brain Research, Beijing Normal University, Beijing, China", + "ror_ids": [ + "https://ror.org/022k4wk35" + ] + }, + { + "affiliation": "State Key Laboratory of New Ceramics and Fine Processing, School of Materials Science and Engineering, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Surgery, State University of New York, Upstate Medical University, Syracuse, NY, USA", + "ror_ids": [ + "https://ror.org/040kfrw16" + ] + }, + { + "affiliation": "Laboratory of Pharmacology of Natural and Synthetic Products, Institute of Biological Sciences, Federal University of Goiás, Goiania, Brazil", + "ror_ids": [ + "https://ror.org/0039d5757" + ] + }, + { + "affiliation": "Department of Clinical Medical College, Shanxi Datong University, Datong, China", + "ror_ids": [ + "https://ror.org/03s8xc553" + ] + }, + { + "affiliation": "Department of Endocrinology, Centre for Diabetes Endocrinology & Metabolism, University College of Medical Sciences (University of Delhi) & GTB Hospital, Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213", + "https://ror.org/01h3fm945" + ] + }, + { + "affiliation": "Department of Medical Pharmacology, Faculty of Medicine, Ataturk University, Erzurum, Turkey", + "ror_ids": [ + "https://ror.org/03je5c526" + ] + }, + { + "affiliation": "Department of Genitourinary Medical Oncology, The University of Texas MD Anderson Cancer Center, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Department of Colorectal Surgery, Intestinal Rehabilitation Unit, St Mark’s Hospital, London, UK", + "ror_ids": [ + "https://ror.org/05am5g719" + ] + }, + { + "affiliation": "Anhui Province Key Laboratory of Tissue Transplantation and School of Life Sciences, Bengbu Medical College, Bengbu, China", + "ror_ids": [ + "https://ror.org/01f8qvj05" + ] + }, + { + "affiliation": "Department of Computer Science, University of Sherbrooke, Sherbrooke, Canada", + "ror_ids": [ + "https://ror.org/00kybxq39" + ] + }, + { + "affiliation": "State Key Laboratory of Coal Mining and Clean Utilization, China Coal Research Institute, Beijing, China", + "ror_ids": [ + "https://ror.org/05dy2c135" + ] + }, + { + "affiliation": "Institute Medical Sciences, Canterbury Christ Church University, Canterbury, Kent, UK", + "ror_ids": [ + "https://ror.org/0489ggv38" + ] + }, + { + "affiliation": "School of Education, Shihezi University, Shihezi, Xinjiang, China", + "ror_ids": [ + "https://ror.org/04x0kvm78" + ] + }, + { + "affiliation": "Department of Clinical Sciences Lund, Rheumatology, and the Clinic for Rheumatology, Skåne University Hospital, Lund University, Lund, Sweden", + "ror_ids": [ + "https://ror.org/012a77v79", + "https://ror.org/02z31g829" + ] + }, + { + "affiliation": "Department of Surgical Science, University of Cagliari, Cagliari, Italy", + "ror_ids": [ + "https://ror.org/003109y17" + ] + }, + { + "affiliation": "School of Mathematics & Statistics, Nanjing University of Science and Technology, Nanjing, China", + "ror_ids": [ + "https://ror.org/00xp9wg62" + ] + }, + { + "affiliation": "Dyeing, Printing and Textile Auxiliaries Department, Textile Research and Technology Institute, National Research Centre, Dokki, Giza, Egypt", + "ror_ids": [ + "https://ror.org/02n85j827" + ] + }, + { + "affiliation": "Department of Psychology, San Diego State University, San Diego, CA, USA", + "ror_ids": [ + "https://ror.org/0264fdx42" + ] + }, + { + "affiliation": "Tecnologico de Monterrey, Campus Estado de México, Cd. López Mateos, México", + "ror_ids": [ + "https://ror.org/03ayjn504" + ] + }, + { + "affiliation": "Department of Applied Physics, Eindhoven University of Technology, Eindhoven, The Netherlands", + "ror_ids": [ + "https://ror.org/02c2kyt77" + ] + }, + { + "affiliation": "Department of Cardiology, Bispebjerg-Frederiksberg Hospital, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/00d264c35" + ] + }, + { + "affiliation": "Yesenin Ryazan State University, Ryazan, Russia", + "ror_ids": [ + "https://ror.org/0562zzt06" + ] + }, + { + "affiliation": "Department of Advanced Biomedical Sciences, Section of Cardiology, Federico II University, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Florida A&M University-Florida State University College of Engineering, Tallahassee, FL, USA", + "ror_ids": [ + "https://ror.org/00c4wc133", + "https://ror.org/01v4tq883" + ] + }, + { + "affiliation": "School of Medicine, Southern University of Science and Technology, Shenzhen, China", + "ror_ids": [ + "https://ror.org/049tv2d57" + ] + }, + { + "affiliation": "Instituto de Investigaciones en Ciencia Y Tecnología de Materiales (INTEMA-CONICET-UNMDP), Mar del Plata, Argentina", + "ror_ids": [ + "https://ror.org/034s8ev31" + ] + }, + { + "affiliation": "Fakultät für Mathematik und Naturwissenschaften, Bergische Universität Wuppertal, Wuppertal, Germany", + "ror_ids": [ + "https://ror.org/00613ak93" + ] + }, + { + "affiliation": "School of Medicine, Eastern Virginia Medical School, Norfolk, VA, USA", + "ror_ids": [ + "https://ror.org/056hr4255" + ] + }, + { + "affiliation": "Department of Plant Biology and Biodiversity Management, Addis Ababa University, Addis Ababa, Ethiopia", + "ror_ids": [ + "https://ror.org/038b8e254" + ] + }, + { + "affiliation": "Laboratory of Clinical Investigation, Intramural Research Program, National Institute On Aging, National Institutes of Health, Baltimore, MD, USA", + "ror_ids": [ + "https://ror.org/049v75w11" + ] + }, + { + "affiliation": "Center for Computational and Theoretical Biology, University of Würzburg, Würzburg, Germany", + "ror_ids": [ + "https://ror.org/00fbnyb24" + ] + }, + { + "affiliation": "Renewable Energy, Al Al-Bayt University, Mafraq, Jordan", + "ror_ids": [ + "https://ror.org/028jh2126" + ] + }, + { + "affiliation": "School of Pharmaceutical Sciences, Zhengzhou University, Zhengzhou, Henan, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Faculty of Psychology and Educational Sciences, Department of Psychology, Ludwig-Maximilian University, Munich, Germany", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "Department of Civil Engineering, MNNIT Allahabad, Allahabad, India", + "ror_ids": [ + "https://ror.org/04dp7tp96" + ] + }, + { + "affiliation": "Beijing Key Laboratory of Construction Tailorable Advanced Functional Materials and Green Applications, School of Materials Science and Engineering, Beijing Institute of Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, College of Engineering Guindy, Anna University, Chennai, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Belgorod State National Research University, Belgorod, Russia", + "ror_ids": [ + "https://ror.org/044cm3z84" + ] + }, + { + "affiliation": "Theodor Kocher Institute, University of Bern, Bern, Switzerland", + "ror_ids": [ + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "Information Materials and Intelligent Sensing Laboratory of Anhui Province, Anhui University, Hefei, Anhui, China", + "ror_ids": [ + "https://ror.org/05th6yx34" + ] + }, + { + "affiliation": "Department of Environmental and Occupational Health, School of Public Health, Indiana University, Bloomington, IN, USA", + "ror_ids": [ + "https://ror.org/02k40bc56" + ] + }, + { + "affiliation": "Department of Neurosurgery, Hokkaido University Hospital, Sapporo, Hokkaido, Japan", + "ror_ids": [ + "https://ror.org/0419drx70" + ] + }, + { + "affiliation": "School of Psychology, The University of Adelaide, Adelaide, South Australia, Australia", + "ror_ids": [ + "https://ror.org/00892tw58" + ] + }, + { + "affiliation": "Department of the Built Environment, Eindhoven University of Technology, Eindhoven, The Netherlands", + "ror_ids": [ + "https://ror.org/02c2kyt77" + ] + }, + { + "affiliation": "Department of Mathematics, Chonnam National University, Gwangju, Korea", + "ror_ids": [ + "https://ror.org/05kzjxq56" + ] + }, + { + "affiliation": "Institute of Biology, National Institute in Science and Technology in Interdisciplinary and Transdisciplinary Studies in Ecology and Evolution (INCT-IN-TREE), Federal University of Bahia, Bahia, Brazil", + "ror_ids": [ + "https://ror.org/03k3p7647" + ] + }, + { + "affiliation": "Department of Master of Islamic Education, Universitas Muhammadiyah Surakarta, Surakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03cnmz153" + ] + }, + { + "affiliation": "Thyroid Center LUKS, Lucerne, Switzerland", + "ror_ids": [ + "https://ror.org/02zk3am42" + ] + }, + { + "affiliation": "Institut für Gesundheitswissenschaften, Universität zu Lübeck, Lübeck, Deutschland", + "ror_ids": [ + "https://ror.org/00t3r8h32" + ] + }, + { + "affiliation": "University of Melbourne Centre for Cancer Research, VCCC, Melbourne, Victoria, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98", + "https://ror.org/00st91468" + ] + }, + { + "affiliation": "Department of Biology and Biotechnologies “Charles Darwin”, Sapienza University of Rome, Rome, Italy", + "ror_ids": [ + "https://ror.org/02be6w209" + ] + }, + { + "affiliation": "Department of Pathology and Laboratory Medicine, Taichung Veterans General Hospital, Taichung, Taiwan", + "ror_ids": [ + "https://ror.org/00e87hq62" + ] + }, + { + "affiliation": "Center for Metabolomics, Scripps Research Institute, La Jolla, CA, USA", + "ror_ids": [ + "https://ror.org/02dxx6824" + ] + }, + { + "affiliation": "College of Computer Science and Technology, Harbin Engineering University, Harbin, China", + "ror_ids": [ + "https://ror.org/03x80pn82" + ] + }, + { + "affiliation": "Hospital Moinhos de Vento, R. Ramiro Barcelos, Porto Alegre, RS, Brazil", + "ror_ids": [ + "https://ror.org/009gqrs30" + ] + }, + { + "affiliation": "State Key Laboratory of Advanced Technology for Materials Synthesis and Processing, Nanostructure Research Center, Wuhan University of Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/03fe7t173" + ] + }, + { + "affiliation": "Faculty of Pure and Applied Mathematics, Wrocław University of Science and Technology, Wrocław, Poland", + "ror_ids": [ + "https://ror.org/008fyn775" + ] + }, + { + "affiliation": "Department of Surgery, Renaissance School of Medicine, Stony Brook, NY, USA", + "ror_ids": [ + "https://ror.org/05qghxh33" + ] + }, + { + "affiliation": "Ospedale Generale Regionale ‘F. Miulli’, Bari, Italy", + "ror_ids": [ + "https://ror.org/03djvm380" + ] + }, + { + "affiliation": "School of Sociology, Beijing Normal University, Beijing, China", + "ror_ids": [ + "https://ror.org/022k4wk35" + ] + }, + { + "affiliation": "Istituto Nazionale di Geofisica e Vulcanologia, Rome, Italy", + "ror_ids": [ + "https://ror.org/00qps9a02" + ] + }, + { + "affiliation": "Chemistry Department, Faculty of Science, Beni-Suef University, Beni-Suef, Egypt", + "ror_ids": [ + "https://ror.org/05pn4yv70" + ] + }, + { + "affiliation": "Georgetown University Linguistics, Washington, DC, USA", + "ror_ids": [ + "https://ror.org/05vzafd60" + ] + }, + { + "affiliation": "School of Soil and Water Conservation, Beijing Forestry University, Beijing, China", + "ror_ids": [ + "https://ror.org/04xv2pc41" + ] + }, + { + "affiliation": "Department of Biostatistics, University of Georgia, Athens, GA, USA", + "ror_ids": [ + "https://ror.org/02bjhwk41" + ] + }, + { + "affiliation": "Faculty of Physical Education and Physiotherapy, Federal University of Amazonas - UFAM, Manaus, Brazil", + "ror_ids": [ + "https://ror.org/02263ky35" + ] + }, + { + "affiliation": "Department of Clinical Sciences, Faculty of Veterinary Medicine, Shahrekord University, Shahrekord, Iran", + "ror_ids": [ + "https://ror.org/051rngw70" + ] + }, + { + "affiliation": "Department of Materials Science of Semiconductors and Dielectrics, National University of Science and Technology “MISIS”, Moscow, Russia", + "ror_ids": [ + "https://ror.org/019vsm959" + ] + }, + { + "affiliation": "Centre for Interdisciplinary Social Research, Phenikaa University, Hanoi, Viet Nam", + "ror_ids": [ + "https://ror.org/03anxx281" + ] + }, + { + "affiliation": "Department of Surgery, Pediatric Service, Memorial Sloan Kettering Cancer Center, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02yrq0923" + ] + }, + { + "affiliation": "College of Optical, Mechanical and Electrical Engineering, Institute of Carbon Neutrality, Zhejiang A&F University, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/02vj4rn06" + ] + }, + { + "affiliation": "Department of Biology, Massachusetts College of Liberal Arts, North Adams, MA, USA", + "ror_ids": [ + "https://ror.org/01ka28180" + ] + }, + { + "affiliation": "Conservative Dentistry Unit, School of Dental Sciences, Universiti Sains Malaysia, Kubang Kerian, Kelantan, Malaysia", + "ror_ids": [ + "https://ror.org/02rgb2k63" + ] + }, + { + "affiliation": "Department of Intelligence Science and Technology, Graduate School of Informatics, Kyoto University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Faculty of Health and Sports Science, Doshisha University, Kyotanabe, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/01fxdkm29" + ] + }, + { + "affiliation": "Environmental Simulation and Pollution Control State Key Joint Laboratory, State Environmental Protection Key Laboratory of Microorganism Application and Risk Control (SMARC), School of Environment, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Key Laboratory of the Provincial Education, Department of Heilongjiang for Common Animal Disease Prevention and Treatment, Northeast Agricultural University, Harbin, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0515nd386" + ] + }, + { + "affiliation": "Laboratoire de Chimie Moléculaire, Matériaux et Environnement (LCM2E), Faculté Pluridisciplinaire de Nador, Université Mohammed 1er, Nador, Morocco", + "ror_ids": [ + "https://ror.org/01ejxf797" + ] + }, + { + "affiliation": "Ministry of Land, Infrastructure, Transport, and Tourism (now at Public Works Research Institute), Nara, Japan", + "ror_ids": [ + "https://ror.org/00b0p4j69", + "https://ror.org/04b8j4a33" + ] + }, + { + "affiliation": "Human Flourishing Program, Institute of Quantitative Social Science, Harvard University, Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Edinburgh Medical School: Medical Education, University of Edinburgh, Edinburgh, Scotland", + "ror_ids": [ + "https://ror.org/01nrxwf90" + ] + }, + { + "affiliation": "Department of Trauma Surgery, St. Antonius Hospital, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/01jvpb595" + ] + }, + { + "affiliation": "Department of Plant Sciences, University of Hyderabad, Hyderabad, Telangana, India", + "ror_ids": [ + "https://ror.org/04a7rxb17" + ] + }, + { + "affiliation": "Institute of Artificial Intelligence, Soochow University, Suzhou, China", + "ror_ids": [ + "https://ror.org/05t8y2r12" + ] + }, + { + "affiliation": "Department of Mathematics and Computer Science, University of Manitoba, Brandon, MB, Canada", + "ror_ids": [ + "https://ror.org/02gfys938" + ] + }, + { + "affiliation": "The People’s Hospital of Guangxi Zhuang Autonomous Region, Nanning, Guangxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02aa8kj12" + ] + }, + { + "affiliation": "RCE Graz-Styria – Zentrum für nachhaltige Gesellschaftstransformation, Universität Graz, Graz, Austria", + "ror_ids": [ + "https://ror.org/01faaaf77" + ] + }, + { + "affiliation": "Centre for Advanced Structural Materials, City University of Hong Kong Shenzhen Research Institute, Greater Bay Joint Division, Shenyang National Laboratory for Materials Science, Shenzhen, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00xc0ma20", + "https://ror.org/03q8dnn23" + ] + }, + { + "affiliation": "Department of Anesthesiology, the First Hospital of Wuhan, Wuhan, China", + "ror_ids": [ + "https://ror.org/021ty3131" + ] + }, + { + "affiliation": "Department of Chiropractic Medicine, Faculty of Medicine, Balgrist University Hospital, University of Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "Haematology Department of Shengjing Hospital, China Medical University, Shenyang, Liaoning, P.R. China", + "ror_ids": [ + "https://ror.org/032d4f246" + ] + }, + { + "affiliation": "Agricultural Experiment Station, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "School of Mathematics, University of East Anglia, Norwich, UK", + "ror_ids": [ + "https://ror.org/026k5mg93" + ] + }, + { + "affiliation": "School of Pathology and Laboratory Medicine, University of Western Australia, Perth, Australia", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "Klinik für Geburtshilfe und Pränatalmedizin, Universitätsklinikum Hamburg-Eppendorf (UKE), Hamburg, Deutschland", + "ror_ids": [ + "https://ror.org/01zgy1s35" + ] + }, + { + "affiliation": "Department of Neurosurgery, Lu’an Hospital Affiliated to Anhui Medical University, Lu’an, China", + "ror_ids": [ + "https://ror.org/03xb04968" + ] + }, + { + "affiliation": "CDS-Creative Data Solutions, Colfax, CA, USA", + "ror_ids": [ + "https://ror.org/0429eqk16" + ] + }, + { + "affiliation": "The Henryk Niewodniczanski Institute of Nuclear Physics, Polish Academy of Sciences, Cracow, Poland", + "ror_ids": [ + "https://ror.org/01dr6c206", + "https://ror.org/01n78t774" + ] + } +] \ No newline at end of file diff --git a/rorapi/tests/tests_functional/tests_matching_v1.py b/rorapi/tests/tests_functional/tests_matching_v1.py index 7a707564..ba0d7214 100644 --- a/rorapi/tests/tests_functional/tests_matching_v1.py +++ b/rorapi/tests/tests_functional/tests_matching_v1.py @@ -12,6 +12,8 @@ API_URL = os.environ.get('ROR_BASE_URL', 'http://localhost') API_VERSION = 'v1' +TEST_DATASET_1 = "dataset_affiliations_springer_2023_10_31.json" +TEST_DATASET_2 = "dataset_affiliations_crossref_2024_02_19.json" class AffiliationMatchingTestCase(SimpleTestCase): @@ -26,10 +28,14 @@ def match(self, affiliation): if item.get('chosen') ] - def setUp(self): + def setUp(self, test_dataset='crossref'): + if test_dataset == 'crossref': + test_dataset = TEST_DATASET_2 + else: + test_dataset = TEST_DATASET_1 with open( os.path.join(os.path.dirname(__file__), - 'data/dataset_affiliations.json')) as affs_file: + f'data/{test_dataset}')) as affs_file: self.dataset = json.load(affs_file) self.results = [] for i, d in enumerate(self.dataset): diff --git a/rorapi/tests/tests_functional/tests_matching_v2.py b/rorapi/tests/tests_functional/tests_matching_v2.py index 09d99ab0..1fbd8df6 100644 --- a/rorapi/tests/tests_functional/tests_matching_v2.py +++ b/rorapi/tests/tests_functional/tests_matching_v2.py @@ -11,28 +11,40 @@ RECALL_MIN = 0.920048 API_URL = os.environ.get('ROR_BASE_URL', 'http://localhost') +TEST_DATASET_1 = "dataset_affiliations_springer_2023_10_31.json" +TEST_DATASET_2 = "dataset_affiliations_crossref_2024_02_19.json" class AffiliationMatchingTestCase(SimpleTestCase): - def match(self, affiliation): + def match(self, affiliation, single_search=False): affiliation = re.sub(r'([\+\-=\&\|> Date: Wed, 10 Sep 2025 15:14:02 -0400 Subject: [PATCH 02/33] Adding testing --- .github/workflows/dev.yml | 1 + rorapi/tests/tests_affiliations/__init__.py | 0 ...aset_affiliations_crossref_2024_02_19.json | 17314 +++++++++++++++ ...aset_affiliations_springer_2023_10_31.json | 18195 ++++++++++++++++ .../tests_affiliations/tests_matching_v1.py | 137 + .../tests_affiliations/tests_matching_v2.py | 255 + .../tests_functional/tests_matching_v1.py | 79 - .../tests_functional/tests_matching_v2.py | 84 - 8 files changed, 35902 insertions(+), 163 deletions(-) create mode 100644 rorapi/tests/tests_affiliations/__init__.py create mode 100644 rorapi/tests/tests_affiliations/data/dataset_affiliations_crossref_2024_02_19.json create mode 100644 rorapi/tests/tests_affiliations/data/dataset_affiliations_springer_2023_10_31.json create mode 100644 rorapi/tests/tests_affiliations/tests_matching_v1.py create mode 100644 rorapi/tests/tests_affiliations/tests_matching_v2.py delete mode 100644 rorapi/tests/tests_functional/tests_matching_v1.py delete mode 100644 rorapi/tests/tests_functional/tests_matching_v2.py diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 3bfa57f0..ad35c53b 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -87,6 +87,7 @@ jobs: working-directory: ./ror-api run: | python manage.py test rorapi.tests.tests_unit + python manage.py test rorapi.tests.tests_affiliations # TODO fix these tests running in GitHub Action # python manage.py test rorapi.tests_integration # python manage.py test rorapi.tests_functional diff --git a/rorapi/tests/tests_affiliations/__init__.py b/rorapi/tests/tests_affiliations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/rorapi/tests/tests_affiliations/data/dataset_affiliations_crossref_2024_02_19.json b/rorapi/tests/tests_affiliations/data/dataset_affiliations_crossref_2024_02_19.json new file mode 100644 index 00000000..3bda061c --- /dev/null +++ b/rorapi/tests/tests_affiliations/data/dataset_affiliations_crossref_2024_02_19.json @@ -0,0 +1,17314 @@ +[ + { + "affiliation": "North China University of Water Resources and Electric Power", + "ror_ids": [ + "https://ror.org/03acrzv41" + ] + }, + { + "affiliation": "Biological Research Laboratories, Nissan Chemical Industries, Ltd., 1470 Shiraoka, Shiraoka, Saitama 349-0294, Japan", + "ror_ids": [ + "https://ror.org/01skwyh03" + ] + }, + { + "affiliation": "Toyohashi Univ. of Tech.", + "ror_ids": [ + "https://ror.org/04ezg6d83" + ] + }, + { + "affiliation": "Aerospace Science & Industry Shenzhen (Group) Co., Ltd,Shenzhen,China", + "ror_ids": [] + }, + { + "affiliation": "Department of Plant Physiology and Crop Production, Federal University of Agriculture, Abeokuta, Nigeria", + "ror_ids": [ + "https://ror.org/050s1zm26" + ] + }, + { + "affiliation": "Ophthalmology; and", + "ror_ids": [] + }, + { + "affiliation": "Complejo Asistencial Universitario de León, Gastroenterology Department, León, Spain", + "ror_ids": [] + }, + { + "affiliation": "Specialist Trainee,Department of Neurology,Royal Hallamshire Hospital,Sheffield S10 2JF, UK.", + "ror_ids": [ + "https://ror.org/00514rc81" + ] + }, + { + "affiliation": "Republican Specialized Scientific and Practical Medical Center for Cardiology", + "ror_ids": [] + }, + { + "affiliation": "Antai College of Economics & Management, Shanghai Jiao Tong University, Shanghai, People's Republic of China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Complex and Distributed IT Systems Technische Universität Berlin Berlin Germany", + "ror_ids": [ + "https://ror.org/03v4gjf40" + ] + }, + { + "affiliation": "Washington Univ in St. Louis, St. Louis, MO", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Department of Automation, China University of Petroleum, Beijing 102200, China", + "ror_ids": [ + "https://ror.org/041qf4r12" + ] + }, + { + "affiliation": "Translational Cardiology, Center for Molecular Medicine, Karolinska Institutet, Stockholm 14186, Sweden", + "ror_ids": [ + "https://ror.org/056d84691" + ] + }, + { + "affiliation": "Univ Paris-Sud, Centre de Neurosciences Paris-Sud, UMR8195, Orsay, F-91405, France", + "ror_ids": [ + "https://ror.org/03xjwb503" + ] + }, + { + "affiliation": "Institute of Biomedical and Genetic Engineering (IBGE) , Islamabad , Pakistan", + "ror_ids": [ + "https://ror.org/05h6f5h95" + ] + }, + { + "affiliation": "Department of Mathematics, Sarvajanik College of Engineering & Technology, Surat 395001, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Pharmacology All India Institute of Medical Sciences Jodhpur India", + "ror_ids": [ + "https://ror.org/05e15a779" + ] + }, + { + "affiliation": "The Jefferiss Wing, Imperial College Healthcare NHS Trust, St Mary's Hospital, London, UK", + "ror_ids": [ + "https://ror.org/056ffv270", + "https://ror.org/01aysdw42" + ] + }, + { + "affiliation": "1Kyungpook National University", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "Department of Molecular Medicine, Sapporo Medical University, Sapporo 060-8556, Japan", + "ror_ids": [ + "https://ror.org/01h7cca57" + ] + }, + { + "affiliation": "IBM Research Division (United States)", + "ror_ids": [ + "https://ror.org/05hh8d621" + ] + }, + { + "affiliation": "School of Education, University of Missouri–Kansas City, Kansas City, MO, USA", + "ror_ids": [ + "https://ror.org/01w0d5g70" + ] + }, + { + "affiliation": "Center for Animal Disease Models, Research Institute for Biomedical Sciences, Tokyo University of Science, Noda-shi, Chiba, Japan", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Dermatology Research Centre, The University of Queensland, School of Medicine, Australia", + "ror_ids": [ + "https://ror.org/00rqy9422" + ] + }, + { + "affiliation": "The summary was prepared by Derek W. Johnson, CFA, Comerica Bank.", + "ror_ids": [ + "https://ror.org/008khdx92" + ] + }, + { + "affiliation": "Theoretical Physics Group, Indian Statistical Institute, Calcutta-700 035, India", + "ror_ids": [ + "https://ror.org/00q2w1j53" + ] + }, + { + "affiliation": "Department of Chemistry and Center for Analytical Instrumentation Development, Purdue University, West Lafayette, IN 47907;", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "MRC Molecular Pathogenesis Group, Department of Medical Microbiology, St Bartholomew’s and The Royal London School of Medicine & Dentistry, Queen Mary and Westfield College, 32 Newark Street, London E1 2AA, UK1", + "ror_ids": [ + "https://ror.org/026zzn846" + ] + }, + { + "affiliation": "BMW AG", + "ror_ids": [ + "https://ror.org/05vs9tj88" + ] + }, + { + "affiliation": "Department of Pure Mathematics, University of Calcutta, 35 Ballygunge Circular Road, Kol-700019, West Bengal, India", + "ror_ids": [ + "https://ror.org/01e7v7w47" + ] + }, + { + "affiliation": "Loyola University Chicago, Chicago, IL.", + "ror_ids": [ + "https://ror.org/04b6x2g63" + ] + }, + { + "affiliation": "University of North Carolina Greensboro Greensboro, North Carolina", + "ror_ids": [ + "https://ror.org/04fnxsj42" + ] + }, + { + "affiliation": "Universidade Estadual Paulista", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "University of Göttingen", + "ror_ids": [ + "https://ror.org/01y9bpm73" + ] + }, + { + "affiliation": "Department of Oncology, Cixi People’s Hospital, Cixi, China", + "ror_ids": [] + }, + { + "affiliation": "From the Institute for Genetics and the Department of Internal Medicine I, University of Cologne, Germany; Department of Pathology, University of Frankfurt, Frankfurt/Main, Germany; and the Institute of Cancer Genetics, Columbia University, New York, NY.", + "ror_ids": [ + "https://ror.org/00rcxh774", + "https://ror.org/00hj8s172", + "https://ror.org/02msan859" + ] + }, + { + "affiliation": "Reproductive Endocrinology Research Center Research Institute for Endocrine Sciences Shahid Beheshti University of Medical Sciences Tehran Iran", + "ror_ids": [ + "https://ror.org/034m2b326", + "https://ror.org/01kpm1136" + ] + }, + { + "affiliation": "School of Science and Engineering, The Chinese University of Hong Kong (Shenzhen) , Shenzhen, 518172 , China", + "ror_ids": [ + "https://ror.org/02d5ks197" + ] + }, + { + "affiliation": "University of Göttingen, Germany", + "ror_ids": [ + "https://ror.org/01y9bpm73" + ] + }, + { + "affiliation": "Neurobiology Research Unit, Copenhagen University Hospital, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/05bpbnx46" + ] + }, + { + "affiliation": "Iowa State College", + "ror_ids": [] + }, + { + "affiliation": "Section of Thoracic and Cardiovascular Surgery, Department of Surgery and Department of Pediatrics, University of Missouri, Columbia, Missouri", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "Hydraulic Engr. U.S. Geological Survey, Washington, D.C.", + "ror_ids": [ + "https://ror.org/035a68863" + ] + }, + { + "affiliation": "Okayama Univ. Graduate School of Natural Science and Technology", + "ror_ids": [ + "https://ror.org/02pc6pc55" + ] + }, + { + "affiliation": "CUKUROVA UNIVERSITY", + "ror_ids": [ + "https://ror.org/05wxkj555" + ] + }, + { + "affiliation": "Xianyang Vocational Technical College, Xianyang, Shaanxi, China", + "ror_ids": [] + }, + { + "affiliation": "Department of Anesthesiology and Pain Medicine, Kangbuk Samsung Hospital, Sungkyunkwan University School of Medicine, Korea.", + "ror_ids": [ + "https://ror.org/013e76m06", + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Kliniken Schmieder Konstanz", + "ror_ids": [ + "https://ror.org/04bkje958" + ] + }, + { + "affiliation": "Soilmoisture Equipment Corp., Goleta, CA 93117, US.", + "ror_ids": [] + }, + { + "affiliation": "Institute of Epidemiology & Preventive Medicine College of Public Health National Taiwan University Taipei Taiwan", + "ror_ids": [ + "https://ror.org/05bqach95" + ] + }, + { + "affiliation": "Georgia State University", + "ror_ids": [ + "https://ror.org/03qt6ba18" + ] + }, + { + "affiliation": "University of Bern/AstraZeneca", + "ror_ids": [ + "https://ror.org/02k7v4d05", + "https://ror.org/04r9x1a08" + ] + }, + { + "affiliation": "Bluepearl Veterinary Partners, Tampa, Florida, United States", + "ror_ids": [] + }, + { + "affiliation": "Agricultural Research Center “Donskoy”", + "ror_ids": [ + "https://ror.org/00hcsjz98" + ] + }, + { + "affiliation": "Mayo Clinic, Rochester, Minnesota 55905", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Departemen Perencanaan Wilayah dan Kota, , Indonesia", + "ror_ids": [] + }, + { + "affiliation": "Tsinghua-Peking Center for Life Sciences, Tsinghua University, Beijing, China 4", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Institute for Fiscal Studies", + "ror_ids": [ + "https://ror.org/04r1cjx59" + ] + }, + { + "affiliation": "Division of Fluid Mechanics, Department of Energy Sciences, Lund University, Lund, Sweden", + "ror_ids": [ + "https://ror.org/012a77v79" + ] + }, + { + "affiliation": "Yantai Yuhuangding Hospital", + "ror_ids": [ + "https://ror.org/05vawe413" + ] + }, + { + "affiliation": "Laboratory of Metabolism, National Cancer Institute, National Institutes of Health, Bethesda, Maryland 208923", + "ror_ids": [ + "https://ror.org/01cwqze88", + "https://ror.org/040gcmg81" + ] + }, + { + "affiliation": "Istituto Geofisico E Geodetico Universita Degli Studi Via Osservatorio 4 98100 Messina, Italy", + "ror_ids": [] + }, + { + "affiliation": "State Key Lab of Fire Science University of Science and Technology of China Hefei, Anhui 230026, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04c4dkn09", + "https://ror.org/01vq13895" + ] + }, + { + "affiliation": "Editor", + "ror_ids": [] + }, + { + "affiliation": "Moscow University after S. Y. Witte", + "ror_ids": [ + "https://ror.org/0119zea93" + ] + }, + { + "affiliation": "Department of Aerospace Engineering Science; University of Colorado at Boulder; Boulder; Colorado; USA", + "ror_ids": [ + "https://ror.org/02ttsq026" + ] + }, + { + "affiliation": "Unidade de Vigilância Sanitária de Ribeirão Pires, Brasil", + "ror_ids": [] + }, + { + "affiliation": "Customer Performance Group", + "ror_ids": [] + }, + { + "affiliation": "Biomedical Sciences Division, University of California, Riverside, CA 92521, USA.", + "ror_ids": [ + "https://ror.org/03nawhv43" + ] + }, + { + "affiliation": "Kyiv National University of Culture and Arts, Ukraine", + "ror_ids": [ + "https://ror.org/012b9mf52" + ] + }, + { + "affiliation": "Ecoforêt (CH) *", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Engineering, Gunma University", + "ror_ids": [ + "https://ror.org/046fm7598" + ] + }, + { + "affiliation": "School of Mechanical Engineering, The Georgia Institute of Technology, Atlanta, GA 30332-0405", + "ror_ids": [ + "https://ror.org/01zkghx44" + ] + }, + { + "affiliation": "Radiology Techniques Department, Dijlah University College, Al-Masafi Street, Baghdad 00964, Iraq", + "ror_ids": [ + "https://ror.org/03vndx142" + ] + }, + { + "affiliation": "Department of Medicine, Division of Infectious Diseases, The University of Alabama at Birmingham, Birmingham, Alabama, USA", + "ror_ids": [ + "https://ror.org/008s83205" + ] + }, + { + "affiliation": "Department of Marketing, Raj Soin College of Business, Wright State University, Dayton, Ohio, USA", + "ror_ids": [ + "https://ror.org/04qk6pt94" + ] + }, + { + "affiliation": "University of Maryland, College Park.", + "ror_ids": [ + "https://ror.org/047s2c258" + ] + }, + { + "affiliation": "Department of Condensed Matter Physics, Royal Institute of Technology, S-100 44 Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Cardiovascular Division, Department of Medicine, Beth Israel Deaconess Medical Center, Harvard Medical School, Boston, MA (M.K., Y.D., S.K., G.C., A.K., M.K.A., H.K., S.D., F.A.).", + "ror_ids": [ + "https://ror.org/04drvxt59", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Department of Chemistry, College of Basic Science, Yadegar-e-Imam Khomeini (RAH) Shahre Rey Branch; Islamic Azad University; Tehran Iran", + "ror_ids": [ + "https://ror.org/01kzn7k21" + ] + }, + { + "affiliation": "Forest Research Institute Jersey City New Jersey United States", + "ror_ids": [] + }, + { + "affiliation": "Department of Obstetrics and gynecology Heze Municipal Hospital of Shandong Province Heze China", + "ror_ids": [ + "https://ror.org/03cy8qt72" + ] + }, + { + "affiliation": "Department of Social Sciences, Heinrich Heine University, Düsseldorf, Germany", + "ror_ids": [ + "https://ror.org/024z2rq82" + ] + }, + { + "affiliation": "Department of General Surgery Peking Union Medical College Hospital Chinese Academy of Medical Sciences and Peking Union Medical College Beijing China", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "School of Intelligent Construction, Liuzhou Vocational and Technical College, Liuzhou, Sichuan, China", + "ror_ids": [] + }, + { + "affiliation": "Department of Pharmacology & Toxicology, Faculty of Medicine, Kuwait University, P.O. Box 24923, 13110 Safat, Kuwait", + "ror_ids": [ + "https://ror.org/021e5j056" + ] + }, + { + "affiliation": "Nanjing University of Chinese Medicine", + "ror_ids": [ + "https://ror.org/04523zj19" + ] + }, + { + "affiliation": "Davidson School of Chemical Engineering, Purdue University, West Lafayette, Indiana 47907, United States", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Institut für Metallforschung Saarbrücken", + "ror_ids": [] + }, + { + "affiliation": "Unesp", + "ror_ids": [] + }, + { + "affiliation": "University of Pittsburgh, USA", + "ror_ids": [ + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Los Alamos National Laboratory 1 Center for Integrated Nanotechnologies, , MS K771 Los Alamos, New Mexico 87544, USA", + "ror_ids": [ + "https://ror.org/031yh0y38", + "https://ror.org/01e41cf67" + ] + }, + { + "affiliation": "Department of Applied Chemistry and Chemical Engineering, Faculty of Engineering, Kagoshima University1-21-40 Korimoto, Kagoshima", + "ror_ids": [ + "https://ror.org/03ss88z23" + ] + }, + { + "affiliation": "Stockholm Resilience Centre Stockholm University Kräftriket 2B 114 19 Stockholm Sweden", + "ror_ids": [ + "https://ror.org/05f0yaq80", + "https://ror.org/0145rpw38" + ] + }, + { + "affiliation": "College of Chemistry and Chemical Engineering", + "ror_ids": [] + }, + { + "affiliation": "Dept. of Communicative Disord. and Waisman Ctr., Univ. of Wisconsin-Madison, 1500 Highland Ave., Madison, WI 53705", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Chia Nan University of Pharmacy and Science", + "ror_ids": [ + "https://ror.org/02834m470" + ] + }, + { + "affiliation": "Assistant Professor, Department of International Relations, Lahore College for Women University, Lahore, Punjab, Pakistan.", + "ror_ids": [ + "https://ror.org/02bf6br77" + ] + }, + { + "affiliation": "From the Department of Physiology and Pharmacology, Michigan State College, East Lansing, Michigan and the Department of Physiology, Faculty of Veterinary Medicine, Cairo University, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/03q21mh05" + ] + }, + { + "affiliation": "Department of Pathology, Shengjing Hospital, China Medical University, Shenyang, Liaoning Province - China", + "ror_ids": [ + "https://ror.org/032d4f246" + ] + }, + { + "affiliation": "Jihua Laboratory,Foshan,China,528000", + "ror_ids": [ + "https://ror.org/006aydy55" + ] + }, + { + "affiliation": "Klein College of Media and Communication, Temple University, Philadelphia, USA", + "ror_ids": [ + "https://ror.org/00kx1jb78" + ] + }, + { + "affiliation": "Research Associate, Dept. of Civil and Environmental Engineering, Pennsylvania State Univ., University Park, PA 16802.", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "a Chester College ,", + "ror_ids": [] + }, + { + "affiliation": "Civil Engineering, University of Massachusetts, Amherst, Mass. 01003", + "ror_ids": [ + "https://ror.org/0072zz521" + ] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biophysics Columbia University New York NY USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "From the Cardiovascular Center and Departments of Internal Medicine and Pharmacology, University of Iowa Carver College of Medicine and VA Medical Center, Iowa City, Iowa.", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "Nagoya Institute of Technology", + "ror_ids": [ + "https://ror.org/055yf1005" + ] + }, + { + "affiliation": "General Nursing, University of Central England, Birmingham and Dudley Group of Hospitals NHS Trust", + "ror_ids": [ + "https://ror.org/00t67pt25" + ] + }, + { + "affiliation": "Division of High-Consequence Pathogens and Pathology, Centers for Disease Control and Prevention, USA", + "ror_ids": [ + "https://ror.org/042twtr12" + ] + }, + { + "affiliation": "Cátedra de Ginecología, Hospital Universitario de Maternidad y Neonatología, Facultad de Ciencias Medicas, Universidad Nacional de Córdoba, Argentina", + "ror_ids": [ + "https://ror.org/056tb7j80" + ] + }, + { + "affiliation": "University of East Anglia", + "ror_ids": [ + "https://ror.org/026k5mg93" + ] + }, + { + "affiliation": "19 Memorial Drive West Lehigh University", + "ror_ids": [ + "https://ror.org/012afjb06" + ] + }, + { + "affiliation": "Pharmacology Department, National Research Center, Dokki, Giza, Egypt", + "ror_ids": [ + "https://ror.org/02n85j827" + ] + }, + { + "affiliation": "Laboratory of Thermodynamics in Emerging Technologies 1 , Department of Mechanical and Process Engineering, ETH Zurich, 8092 Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Department of Mathematics, University of Oslo, Norway, Norwegian\n Computing Center, Oslo, Norway,", + "ror_ids": [ + "https://ror.org/02gm7te43", + "https://ror.org/01xtthb56" + ] + }, + { + "affiliation": "Institute of Machine Design and Construction, Rheinisch Westfa¨lische Technische Hochschule Aachen, West Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "FSBSI Agricultural Research Center “Donskoy”", + "ror_ids": [ + "https://ror.org/00hcsjz98" + ] + }, + { + "affiliation": "Kunming Engineering Corporation Limited, PowerChina, Kunming 650051, China", + "ror_ids": [ + "https://ror.org/01varr368" + ] + }, + { + "affiliation": "State Key Laboratory for Manufacturing Systems Engineering Xi'an Jiaotong University Xi'an 710049 China", + "ror_ids": [ + "https://ror.org/017zhmm22" + ] + }, + { + "affiliation": "Alsip, Hazelgreen, and Oaklawn (Ill.) schools, and teaches at St. Xavier College, Chicago, Ill.", + "ror_ids": [] + }, + { + "affiliation": "Department of Cardiovascular and Thoracic Surgery Sanjay Gandhi Postgraduate Institute of Medical Sciences Lucknow, Uttar Pradesh, India", + "ror_ids": [ + "https://ror.org/01rsgrz10" + ] + }, + { + "affiliation": "Chapman University , US", + "ror_ids": [ + "https://ror.org/0452jzg20" + ] + }, + { + "affiliation": "1Borough of Manhattan Community College City University of New York, Email: cpost@bmcc.cuny.edu", + "ror_ids": [ + "https://ror.org/00453a208", + "https://ror.org/040hwr020" + ] + }, + { + "affiliation": "Program in Physics, Faculty of Science, Udon Thani Rajabhat University, Udon Thani, Thailand", + "ror_ids": [ + "https://ror.org/05h6yt550" + ] + }, + { + "affiliation": "Institutes of Molecular and Cellular Virology, Friedrich-Loeffler-Institutes, Federal Research Centre for Virus Diseases of Animals, Insel Riems, Germany.", + "ror_ids": [ + "https://ror.org/025fw7a54" + ] + }, + { + "affiliation": "Department of International Relations at the London School of Economics", + "ror_ids": [ + "https://ror.org/0090zs177" + ] + }, + { + "affiliation": "Financial University under Government of Russian Federation", + "ror_ids": [ + "https://ror.org/02hchde94", + "https://ror.org/01hnrbb29" + ] + }, + { + "affiliation": "Australian Cancer Research Foundation Department of Cancer Biology and Therapeutics, The John Curtin School of Medical Research, The Australian National University, Canberra, Australia 1", + "ror_ids": [ + "https://ror.org/0459phn12", + "https://ror.org/019wvm592" + ] + }, + { + "affiliation": "University of Miyazaki", + "ror_ids": [ + "https://ror.org/0447kww10" + ] + }, + { + "affiliation": "Department of Chemical Engineering, University of South Carolina, Columbia, South Carolina 29208", + "ror_ids": [ + "https://ror.org/02b6qw903" + ] + }, + { + "affiliation": "Department of Genetics Stanford University Stanford California USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Dept of Physiology, Tulane Univ Health Sciences Cntr and Sch of Medicine, New Orleans, LA", + "ror_ids": [ + "https://ror.org/04vmvtb21" + ] + }, + { + "affiliation": "School of Information Engineering, Nanchang Hangkong University, Nanchang 330063, China", + "ror_ids": [ + "https://ror.org/0369pvp92" + ] + }, + { + "affiliation": "Information Systems, Curtin University, Perth, Australia", + "ror_ids": [ + "https://ror.org/02n415q13" + ] + }, + { + "affiliation": "Farm Street Church, London", + "ror_ids": [] + }, + { + "affiliation": "São Paulo State University", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Institute for High Energy Physics, Protvino, Moscow Region, 142281, Russia", + "ror_ids": [ + "https://ror.org/03kn4xv14" + ] + }, + { + "affiliation": "Graduate Program in Biomedical Sciences, University of California San Francisco, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "National Laboratory of Solid State Microstructures, College of Engineering and Applied Sciences and Collaborative Innovation Centre of Advanced Microstructures, Nanjing University c , Nanjing 210093, China", + "ror_ids": [ + "https://ror.org/04ttadj76", + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "Laboratory of Natural Substances, Pharmacology, Environment, Modeling, Health and Quality of Life (SNAMOPEQ), Faculty of Sciences Dhar El-Mehraz, Sidi Mohamed Ben Abdellah University, Fez 30000, Morocco", + "ror_ids": [ + "https://ror.org/04efg9a07" + ] + }, + { + "affiliation": "University Technology Malaysia", + "ror_ids": [ + "https://ror.org/026w31v75" + ] + }, + { + "affiliation": "INFN and University of Bologna, Italy", + "ror_ids": [ + "https://ror.org/01111rn36", + "https://ror.org/04j0x0h93" + ] + }, + { + "affiliation": "HSE University", + "ror_ids": [ + "https://ror.org/055f7t516" + ] + }, + { + "affiliation": "University of PennsylvaniaPhiladelphiaPA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Laboratory of Robotic SystemsÉcole Polytechnique Fédérale de LausanneLausanne1015Switzerland", + "ror_ids": [ + "https://ror.org/02s376052" + ] + }, + { + "affiliation": "Department of Computer Science, Missouri University of Science and Technology, Rolla, MO, USA", + "ror_ids": [ + "https://ror.org/00scwqd12" + ] + }, + { + "affiliation": "Institute of Landscape Architecture, Urban Planning and Garden Art , Hungarian University of Agriculture and Life Sciences , Budapest , Hungary", + "ror_ids": [ + "https://ror.org/01394d192" + ] + }, + { + "affiliation": "Department of Chemistry, Indian Institute of Technology Hyderabad, Sangareddy 502285, Telangana, India", + "ror_ids": [ + "https://ror.org/01j4v3x97" + ] + }, + { + "affiliation": "Department of Physics, Alzahra University, Tehran 19938-93973, Iran.", + "ror_ids": [ + "https://ror.org/013cdqc34" + ] + }, + { + "affiliation": "Department of Pharmacology, Stanford University School of Medicine, Stanford, CA 94305-5332", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Huazhong University of Science and Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Technical University of Denmark, Kongens Lyngby, Denmark", + "ror_ids": [ + "https://ror.org/04qtj9h94" + ] + }, + { + "affiliation": "Faculty of Medicine, University in Oslo, Oslo, Norway;", + "ror_ids": [ + "https://ror.org/01xtthb56" + ] + }, + { + "affiliation": "Department of Laboratory Medicine,\n Washington University School of Medicine, St. Louis - USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Information Sciences Institute, University of Southern California, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "FIRAT ÜNİVERSİTESİ İLETİŞİM FAKÜLTESİ HALKLA İLİŞKİLER VE TANITIM BÖLÜMÜ", + "ror_ids": [ + "https://ror.org/05teb7b63" + ] + }, + { + "affiliation": "Professor of Political Science, University of Wisconsin", + "ror_ids": [ + "https://ror.org/03ydkyb10" + ] + }, + { + "affiliation": "From the Johns Hopkins Medical Institutions, Baltimore, MD; The University of Texas M. D. Anderson Cancer Center, Houston, TX; University of Alabama at Birmingham, Birmingham, AL; Sydney Melanoma Unit, University of Sydney, Sydney, NSW, Australia; University of Washington, Seattle, WA; Istituto Nazionale Tumori, Milan, Italy; David Geffen School of Medicine, University of California, Los Angeles, Los Angeles; University of California, San Francisco School of Medicine, San Francisco; John Wayne Cancer...", + "ror_ids": [ + "https://ror.org/00cvxb145", + "https://ror.org/01gek1696", + "https://ror.org/008s83205", + "https://ror.org/046rm7j60", + "https://ror.org/04twxam07", + "https://ror.org/05dwj7825", + "https://ror.org/043mz5j54", + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Nihon University Graduate School", + "ror_ids": [ + "https://ror.org/05jk51a88" + ] + }, + { + "affiliation": "Department of Physics, Central Michigan University 2 , Mount Pleasant, Michigan 48859, USA", + "ror_ids": [ + "https://ror.org/02xawj266" + ] + }, + { + "affiliation": "University of Bath", + "ror_ids": [ + "https://ror.org/002h8g185" + ] + }, + { + "affiliation": "Peoples Friendship University of Russia (RUDN University)", + "ror_ids": [ + "https://ror.org/02dn9h927" + ] + }, + { + "affiliation": "Jaya Engineering College,Department of MCA,Chennai,India,602024", + "ror_ids": [] + }, + { + "affiliation": "University of Guam Marine Laboratory UOG Station Mangilao GU USA", + "ror_ids": [ + "https://ror.org/00376bg92" + ] + }, + { + "affiliation": "Kathyn Cassidy is Associate Professor in the Department of Geography and Environmental Sciences, Northumbria University, UK (email: ).", + "ror_ids": [ + "https://ror.org/049e6bc10" + ] + }, + { + "affiliation": "From the Department of Veterinary Clinical Sciences, College of Veterinary Medicine, The Ohio State University, Columbus, OH 43210-1089.", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Integrative Biology and Pharmacology UTHSC at Houston Houston TX", + "ror_ids": [ + "https://ror.org/03gds6c39" + ] + }, + { + "affiliation": "Hiroshima University", + "ror_ids": [ + "https://ror.org/03t78wx29" + ] + }, + { + "affiliation": "A.N. Bakoulev National Medical Research Center for Cardiovascular Surgery; N.A. Semashko National Research Institute of Public Health", + "ror_ids": [ + "https://ror.org/05pc7fv53" + ] + }, + { + "affiliation": "Okamura Laboratory Inc.", + "ror_ids": [] + }, + { + "affiliation": "Rutgers University", + "ror_ids": [ + "https://ror.org/05vt9qd57" + ] + }, + { + "affiliation": "Virginia Commonwealth University Children's Medical Center, USA", + "ror_ids": [ + "https://ror.org/02nkdxk79" + ] + }, + { + "affiliation": "Jet Propulsion Laboratory, California Institute of Technology, Pasadena, California 91109", + "ror_ids": [ + "https://ror.org/027k65916", + "https://ror.org/05dxps055" + ] + }, + { + "affiliation": "Xavier University", + "ror_ids": [ + "https://ror.org/00f266q65" + ] + }, + { + "affiliation": "School of Psychology and Speech Pathology, Curtin University, Perth, Western Australia, Australia,", + "ror_ids": [ + "https://ror.org/02n415q13" + ] + }, + { + "affiliation": "Mt. Vernon, N. Y.", + "ror_ids": [] + }, + { + "affiliation": "Kyoto Institute of Technology", + "ror_ids": [ + "https://ror.org/00965ax52" + ] + }, + { + "affiliation": "State Key Laboratory of Oral Diseases National Clinical Research Center for Oral Diseases Department of Pediatric Dentistry West China Hospital of Stomatology Sichuan University Chengdu China", + "ror_ids": [ + "https://ror.org/00pvqk557", + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "Faculty of Agricultural Sciences, Universidad Central del Ecuador, Ecuador", + "ror_ids": [ + "https://ror.org/010n0x685" + ] + }, + { + "affiliation": "Bar Harbor, Maine", + "ror_ids": [] + }, + { + "affiliation": "Transportadora de Gas del Norte S.A.", + "ror_ids": [] + }, + { + "affiliation": "Department of Pathology, University of Pittsburgh School of Medicine and University of Pittsburgh Medical Center, Pittsburgh, PA, USA", + "ror_ids": [ + "https://ror.org/04ehecz88", + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Universidade Federal do Paraná, Brasil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "IBM, Deutschland, German Manufacturing Technology Center, 7032 Sendelfingen, Germany", + "ror_ids": [ + "https://ror.org/00pm7rm97" + ] + }, + { + "affiliation": "Yuri Gastyev, a mathematician involved with A Chronicle of Current Events and other human rights activities, emigrated from the USSR earlier this year and now lives in Vienna.", + "ror_ids": [] + }, + { + "affiliation": "Hematology Department, Hospital Universitario La Paz, Madrid, Spain", + "ror_ids": [ + "https://ror.org/01s1q0w69" + ] + }, + { + "affiliation": "Department of Electronics and Communication Engineering National Engineering College Kovilpatti Tamil Nadu India", + "ror_ids": [] + }, + { + "affiliation": "Centre for Population Health Research, School of Health and Social Development Deakin University Burwood Victoria Australia", + "ror_ids": [ + "https://ror.org/02czsnj07" + ] + }, + { + "affiliation": "Kenyan with a veterinary background, he has been working with a number of international organizations in the Horn of Africa on livestock-related matters; He is currently engaged with the ICRC in region five of Ethiopia.", + "ror_ids": [] + }, + { + "affiliation": "School of Mathematical Sciences and Shanghai Key Laboratory of Contemporary Applied Mathematics, Fudan University, Shanghai, P. R. China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "The Goverment Industrial Research Institute", + "ror_ids": [] + }, + { + "affiliation": "Tang Du Hospital", + "ror_ids": [ + "https://ror.org/04yvdan45" + ] + }, + { + "affiliation": "Department of Mathematics , Periyar University , Salem , 636 011 , India", + "ror_ids": [ + "https://ror.org/05crs8s98" + ] + }, + { + "affiliation": "Florida State University, Tallahassee, USA", + "ror_ids": [ + "https://ror.org/05g3dte14" + ] + }, + { + "affiliation": "Austin Speech Labs, Austin, TX", + "ror_ids": [ + "https://ror.org/01jj3v002" + ] + }, + { + "affiliation": "Key Laboratory of Pesticide Toxicology and Application Technique, College of Plant Protection, Shandong Agricultural University", + "ror_ids": [ + "https://ror.org/02ke8fw32" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Wayne State University, 5050 Anthony Wayne Drive, Detroit, Michigan 48202-3902", + "ror_ids": [ + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "School of Resource and Environmental Management, Simon Fraser University, 8888 University Drive, Burnaby, British Columbia, Canada V5A 1S6, Canada", + "ror_ids": [ + "https://ror.org/0213rcc28" + ] + }, + { + "affiliation": "Old Testament, Columbia Theological Seminary", + "ror_ids": [ + "https://ror.org/00g5hfp88" + ] + }, + { + "affiliation": "Department of Animal and Plant Sciences, University of Sheffield, Sheffield, UK", + "ror_ids": [ + "https://ror.org/05krs5044" + ] + }, + { + "affiliation": "Department of Supply Chain, Management at the Marondera University of Agricultural Sciences and Technology (MUAST), Zimbabwe", + "ror_ids": [] + }, + { + "affiliation": "Federal State Budgetary Scientific Institution «Scientific Research Institute – Federal Research Centre for Projects Evaluation and Consulting Services» (SRI FRCEC)", + "ror_ids": [] + }, + { + "affiliation": "School of Pharmacy and Pharmaceutical Sciences, Isfahan University of Medical Sciences, Isfahan, Iran", + "ror_ids": [ + "https://ror.org/04waqzz56" + ] + }, + { + "affiliation": "Max-Planck-Institut für Extraterrestrische Physik Centre for Interdisciplinary Plasma Science, , D-85741 Garching, Germany", + "ror_ids": [ + "https://ror.org/00e4bwe12" + ] + }, + { + "affiliation": "Roanwell Corporation, New York, New York 1OO14", + "ror_ids": [] + }, + { + "affiliation": "Chemistry Section, Scientific Police Research Institute", + "ror_ids": [] + }, + { + "affiliation": "Department of Mechanics, Tianjin University, Tianjin 300350, P. R. China", + "ror_ids": [ + "https://ror.org/012tb2g32" + ] + }, + { + "affiliation": "Service d’Ingénierie Moléculaire des Protéines, Laboratoire de Toxinologie Moléculaire et Biotechnologies, Commissariat à l'Energie Atomique, F-91191 Gif-sur-Yvette, France", + "ror_ids": [] + }, + { + "affiliation": "CSIR-Centre for Cellular and Molecular Biology, Hyderabad, India 500007", + "ror_ids": [ + "https://ror.org/05shq4n12" + ] + }, + { + "affiliation": "Department of Chemistry, University of Southern California, Los Angeles, California 90089, Institut Laue-Langevin, Grenoble, France F-38042, and Department of Chemistry, University of British Columbia, Vancouver, British Columbia, Canada V6T 1Z1", + "ror_ids": [ + "https://ror.org/03rmrcq20", + "https://ror.org/01xtjs520", + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "School of Computing, Dublin City University,Dublin,Ireland", + "ror_ids": [ + "https://ror.org/04a1a1e81" + ] + }, + { + "affiliation": "Functional Nanomaterials Research lab, Department of Physics and Centre for Nanotechnology, Indian Institute of Technology Roorkee 1 , Roorkee-247667, Uttarakhand, India", + "ror_ids": [ + "https://ror.org/00582g326" + ] + }, + { + "affiliation": "Department of Anesthesiology, MD Anderson Cancer Center The University of Texas Houston Texas USA", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Iowa State University", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "The Cardiac Surgery Program, Royal Columbian Hospital, Fraser Health Authority, New Westminster, British Columbia, and the School of Nursing, University of British Columbia, Vancouver, British Columbia.", + "ror_ids": [ + "https://ror.org/03rmrcq20", + "https://ror.org/05ymyxj51" + ] + }, + { + "affiliation": "Dhupuma Foundational Education Centre, East Arnhem Region East Arnhem NT Australia", + "ror_ids": [] + }, + { + "affiliation": "SAKARYA ÜNİVERSİTESİ, EĞİTİM BİLİMLERİ ENSTİTÜSÜ, İNGİLİZ DİLİ EĞİTİMİ (YL) (TEZLİ)", + "ror_ids": [ + "https://ror.org/04ttnw109" + ] + }, + { + "affiliation": "University of Michigan, Ann Arbor, MI", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Giresun Univ. Healthy Science Fac. Nursing Dep.", + "ror_ids": [ + "https://ror.org/05szaq822" + ] + }, + { + "affiliation": "Kennedy Space Center , Florida , United States of America", + "ror_ids": [ + "https://ror.org/03kjpzv42" + ] + }, + { + "affiliation": "American Museum of Natural History, New York, NY 10024, USA.", + "ror_ids": [ + "https://ror.org/03thb3e06" + ] + }, + { + "affiliation": "Universidad Nacional de Colombia, Bogotá, Colombia", + "ror_ids": [ + "https://ror.org/059yx9a68" + ] + }, + { + "affiliation": "Orbital and Oculofacial Plastic Surgery, Department of Ophthalmology, Medical College of Wisconsin, Milwaukee, Wisconsin, USA", + "ror_ids": [ + "https://ror.org/00qqv6244" + ] + }, + { + "affiliation": "Gulf Research & Development Company, Pittsburgh, Pa.", + "ror_ids": [] + }, + { + "affiliation": "Synopsys, Inc.,Mountain View,CA", + "ror_ids": [ + "https://ror.org/013by2m91" + ] + }, + { + "affiliation": "Beijing 100871", + "ror_ids": [] + }, + { + "affiliation": "Cambridge University Hospitals NHS Foundation Trust, Department of Respiratory Medicine, Cambridge, UK", + "ror_ids": [ + "https://ror.org/04v54gj93" + ] + }, + { + "affiliation": "Kyushu Institute of Technology", + "ror_ids": [ + "https://ror.org/02278tr80" + ] + }, + { + "affiliation": "Centre de Biologie du Developpement, CNRS / University Paul Sabatier, France", + "ror_ids": [ + "https://ror.org/02v6kpv12", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Food Colloids Group, School\nof Food Science and Nutrition, University of Leeds, Leeds LS2 9JT, U.K.", + "ror_ids": [ + "https://ror.org/024mrxd33" + ] + }, + { + "affiliation": "School of Psychology, University of St Andrews, St Andrews, UK", + "ror_ids": [ + "https://ror.org/02wn5qz54" + ] + }, + { + "affiliation": "Reference and Research Services, University of New Mexico, Las Cruces, New Mexico, USA", + "ror_ids": [ + "https://ror.org/05fs6jp91" + ] + }, + { + "affiliation": "Exercise Physiology Lab, Institute of Human Movement Sciences and Sport, ETH Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "The Second Department of Internal Medicine, Nagoya City University Medical School", + "ror_ids": [ + "https://ror.org/04wn7wc95" + ] + }, + { + "affiliation": "Laboratory of General Bacteriology, Yale University, New Haven, Connecticut", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Institute of Chemical\nSciences, Heriot Watt University, Edinburgh EH14 4AS, United Kingdom", + "ror_ids": [ + "https://ror.org/04mghma93" + ] + }, + { + "affiliation": "Department of Dermatology and Allergology, Nagasaki University Hospital", + "ror_ids": [ + "https://ror.org/05kd3f793" + ] + }, + { + "affiliation": "Fiji National University, Lautoka, Fiji", + "ror_ids": [ + "https://ror.org/00qk2nf71" + ] + }, + { + "affiliation": "Physician Superintendent, St. Andrew's Hospital, Northampton", + "ror_ids": [ + "https://ror.org/033mx0906" + ] + }, + { + "affiliation": "From the Department of Anesthesiology, Perioperative and Pain Medicine, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts.", + "ror_ids": [ + "https://ror.org/04b6nzv94", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Cornell University", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Arizona State College", + "ror_ids": [] + }, + { + "affiliation": "Oak Ridge National Laboratory, Oak Ridge, Tennessee", + "ror_ids": [ + "https://ror.org/01qz5mb56" + ] + }, + { + "affiliation": "Department of Otolaryngology University Hospital of Lund Lund Sweden", + "ror_ids": [] + }, + { + "affiliation": "State Grid Shanghai Municipal Electric Power Company", + "ror_ids": [] + }, + { + "affiliation": "World Resources Institute, Washington, DC 20002, USA.", + "ror_ids": [ + "https://ror.org/047ktk903" + ] + }, + { + "affiliation": "Department of Biological Sciences, Eastern Kentucky University, Richmond, KY, USA", + "ror_ids": [ + "https://ror.org/012xks909" + ] + }, + { + "affiliation": "Centre for Petroleum, Energy Economics and Law , University of Ibadan , Ibadan , Oyo State , Nigeria", + "ror_ids": [ + "https://ror.org/03wx2rr30" + ] + }, + { + "affiliation": "1University of California, School of Veterinary Medicine, Department of Veterinary Surgical and Radiological Sciences, Davis, CA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "a Department of Biostatistics , Family Health International, Research Triangle Park , North Carolina, USA", + "ror_ids": [ + "https://ror.org/007kp6q87" + ] + }, + { + "affiliation": "King Mongkut’s University of Technology Thonburi (KMUTT)", + "ror_ids": [ + "https://ror.org/0057ax056" + ] + }, + { + "affiliation": "Japan Atomic Energy Agency", + "ror_ids": [ + "https://ror.org/05nf86y53" + ] + }, + { + "affiliation": "Burdur Müze Müdürlüğü", + "ror_ids": [] + }, + { + "affiliation": "School of Psychology; The University of Sydney; Sydney NSW Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "a Guest Editor, Professor Analytical Chemistry , Villanova University , Villanova, Pa, 19085", + "ror_ids": [ + "https://ror.org/02g7kd627" + ] + }, + { + "affiliation": "The Graduate Center–City University of New York, New York City, NY, USA", + "ror_ids": [ + "https://ror.org/00453a208" + ] + }, + { + "affiliation": "Department of Chemistry Faculty of Science University of Guilan Rasht 41938‐33697 Iran", + "ror_ids": [ + "https://ror.org/01bdr6121" + ] + }, + { + "affiliation": "Universidad de Valladolid Departamento Bioquímica y Biología Molecular y Fisiología and Departamento Anatoima, Facultad de Mediana , , 47005-Valladolid, Spain", + "ror_ids": [ + "https://ror.org/01fvbaw18" + ] + }, + { + "affiliation": "Medical Oncology, Roswell Park Cancer Institute, Buffalo, NY, USA", + "ror_ids": [ + "https://ror.org/0499dwk57" + ] + }, + { + "affiliation": "Sandoz Nutrition 5320 W. 23rd Street, P.O. Box 370, Minneapolis, MN 55440, U.S.A.", + "ror_ids": [] + }, + { + "affiliation": "Associate Professor of Music Education, The Florida State Univcrsity, Tallahassee.", + "ror_ids": [ + "https://ror.org/05g3dte14" + ] + }, + { + "affiliation": "U.S. Navy, Naval Research Laboratory, Washington, D.C.", + "ror_ids": [ + "https://ror.org/04d23a975", + "https://ror.org/03cs53d16" + ] + }, + { + "affiliation": "University of Nigeria", + "ror_ids": [ + "https://ror.org/01sn1yx84" + ] + }, + { + "affiliation": "Children’s Hosp of Philadelphia, Philadelphia, PA", + "ror_ids": [ + "https://ror.org/01z7r7q48" + ] + }, + { + "affiliation": "Center for Ultracold Atoms and Department of Physics, Massachusetts Institute of Technology, Cambridge, Massachusetts 02139, USA", + "ror_ids": [ + "https://ror.org/042nb2s44", + "https://ror.org/053tmcn30" + ] + }, + { + "affiliation": "Omron Healthcare Co., Ltd., Osaka, Japan", + "ror_ids": [ + "https://ror.org/00q0w1h45" + ] + }, + { + "affiliation": "Bellingham Research Institute, Portland, Oregon, USA", + "ror_ids": [] + }, + { + "affiliation": "Valhalla, New York", + "ror_ids": [] + }, + { + "affiliation": "a Institut für Makromolekulare Chemie, Universität Freiburg , Stefan-Meier-Str. 31, D-7800, Freiburg, FRG", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "Beijing Institute of Technology, China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "United States Naval Academy,Cyber Sciences,Annapolis,Maryland", + "ror_ids": [ + "https://ror.org/00znex860" + ] + }, + { + "affiliation": "Universidade Federal de Sergipe, Departamento de Química, 49100-000, São Cristóvão, SE, Brazil", + "ror_ids": [ + "https://ror.org/028ka0n85" + ] + }, + { + "affiliation": "Pathology SUNY Downstate Medical Center Brooklyn NY", + "ror_ids": [ + "https://ror.org/0041qmd21" + ] + }, + { + "affiliation": "Institut\nfür Organische Chemie and ‡Institut für Anorganische\nund Analytische Chemie, Technische Universität Braunschweig, Hagenring\n30, 38106 Braunschweig, Germany", + "ror_ids": [ + "https://ror.org/010nsgg66" + ] + }, + { + "affiliation": "BiologySlippery Rock UniversitySlippery RockPennsylvaniaUnited States", + "ror_ids": [ + "https://ror.org/0369st156" + ] + }, + { + "affiliation": "Hefei University of Technology", + "ror_ids": [ + "https://ror.org/02czkny70" + ] + }, + { + "affiliation": "Department of Psychology, University of Regina, Regina, Saskatchewan, Canada", + "ror_ids": [ + "https://ror.org/03dzc0485" + ] + }, + { + "affiliation": "∥ Professor, Department of Anesthesiology, Medical College of Wisconsin. Anesthesiologist, Milwaukee Veterans Administration Hospital, Milwaukee, Wisconsin.", + "ror_ids": [ + "https://ror.org/00qqv6244" + ] + }, + { + "affiliation": "Tokyo Metropolitan University Hachioji Japan", + "ror_ids": [ + "https://ror.org/00ws30h19" + ] + }, + { + "affiliation": "Chengdu Aeronautic Vocational and Technical College", + "ror_ids": [] + }, + { + "affiliation": "Technology in Forestry and Ecology in South China, Central South University of Forestry and Technology, Changsha 410004, China", + "ror_ids": [ + "https://ror.org/02czw2k81" + ] + }, + { + "affiliation": "Department of Facial Plastic Surgery, Meridian Plastic Surgeons, Indianapolis, Indiana", + "ror_ids": [ + "https://ror.org/00hx55359" + ] + }, + { + "affiliation": "Department of Urology, Xiangyang Central Hospital, Affiliated Hospital of Hubei University of Arts and Science, Xiangyang, Hubei, 441021, China", + "ror_ids": [ + "https://ror.org/0212jcf64", + "https://ror.org/02dx2xm20" + ] + }, + { + "affiliation": "1 SPIA, North Carolina State University Department of Political Science USA Raleigh", + "ror_ids": [ + "https://ror.org/04tj63d06" + ] + }, + { + "affiliation": "Department of Zoology, University of Florida, Gainesville, Florida 32611 USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Industrial Chemistry, Faculty of Technology, Kanazawa University", + "ror_ids": [ + "https://ror.org/02hwp6a56" + ] + }, + { + "affiliation": "National Nuclear Laboratory, Central Laboratory, Sellafield, Seascale, Cumbria CA20 1PG, GB", + "ror_ids": [ + "https://ror.org/051n2dc24" + ] + }, + { + "affiliation": "İstanbul Üniversitesi-Cerrahpaşa Hasan Ali Yücel Eğitim Fakültesi", + "ror_ids": [ + "https://ror.org/01dzn5f42" + ] + }, + { + "affiliation": "Utsunomiya University", + "ror_ids": [ + "https://ror.org/05bx1gz93" + ] + }, + { + "affiliation": "Walter Cronkite School of Journalism and Mass Communication, Arizona State University, Phoenix, AZ, USA", + "ror_ids": [ + "https://ror.org/03efmqc40" + ] + }, + { + "affiliation": "Department of Criminology and Criminal Justice, Florida International University, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/02gz6gg07" + ] + }, + { + "affiliation": "Department of Zoology, University of Lucknow, Lucknow, India", + "ror_ids": [ + "https://ror.org/03bdeag60" + ] + }, + { + "affiliation": "Department of Haematology, Eastern Health and Monash University, Box Hill, Australia", + "ror_ids": [ + "https://ror.org/02bfwt286", + "https://ror.org/00vyyx863" + ] + }, + { + "affiliation": "Department of Public Health, Yale School of Medicine", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "School of Geography, University of Birmingham, Edgbaston, Birmingham BI5 2TT, England", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "School of Electronic Information Wuhan University Wuhan China", + "ror_ids": [ + "https://ror.org/033vjfk17" + ] + }, + { + "affiliation": "First Department of Internal Medicine, School of Medicine, University of Occupational and Environmental Health, Japan.", + "ror_ids": [ + "https://ror.org/020p3h829" + ] + }, + { + "affiliation": "Institute of Aeronautics and Astronautics, Northwestern Polytechnic University", + "ror_ids": [ + "https://ror.org/05wn69s11" + ] + }, + { + "affiliation": "AARP Public Policy Institute", + "ror_ids": [] + }, + { + "affiliation": "Nanjing University of Science and Technology,Computer Science and Engineering,Nanjing,China", + "ror_ids": [ + "https://ror.org/00xp9wg62" + ] + }, + { + "affiliation": "Research Center of Clinical Medicine, Affiliated Hospital of Nantong University, Nantong 226001, Jiangsu, China", + "ror_ids": [ + "https://ror.org/001rahr89" + ] + }, + { + "affiliation": "Vacuum Electronics School of Electronic Science and Engineering, University of Electronic Science and Technology of China,National Key Laboratory of Science and Technology,Chengdu,P. R. China,611731", + "ror_ids": [ + "https://ror.org/04qr3zq92" + ] + }, + { + "affiliation": "Department of Earth Sciences, Faculty of Geosciences, Department of Earth Sciences Utrecht University Utrecht Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "Beijing Technology and Business University", + "ror_ids": [ + "https://ror.org/013e0zm98" + ] + }, + { + "affiliation": "University of Kentucky, College of Pharmacy, Lexington, Kentucky", + "ror_ids": [ + "https://ror.org/02k3smh20" + ] + }, + { + "affiliation": "University Hospitals Leicester , Leicester , United Kingdom", + "ror_ids": [ + "https://ror.org/02fha3693" + ] + }, + { + "affiliation": "Completion Energy", + "ror_ids": [] + }, + { + "affiliation": "Senior programme officer at the British Council", + "ror_ids": [ + "https://ror.org/00t3pr326" + ] + }, + { + "affiliation": "Orthopaedic Surgery UCSF San Francisco CA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Research Center of Systemic Autoinflammatory Diseases and Behçet’s Disease, and Rheumatology-Ophthalmology Collaborative Uveitis Center, Department of Medical Sciences, Surgery and Neurosciences, University of Siena, Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "Department of Infectious Diseases, Robert Koch Institute, Berlin, Germany", + "ror_ids": [ + "https://ror.org/01k5qnb77" + ] + }, + { + "affiliation": "Polymer Composites Lab, Department of Chemical Engineering, A.C. Tech Anna University Chennai‐600 025 Tamil Nadu India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Istituto di Chimica Farmaceutica e Tossicologica, Università degli Studi di Urbino “Carlo Bo”, Piazza Rinascimento 6, 61029 Urbino, Italy, Dipartimento Farmaceutico, Università degli Studi di Parma, V.le G. P. Usberti 27/A Campus Universitario, 43100 Parma, Italy, and Dipartimento di Farmacologia, Chemioterapia e Tossicologia Medica, Università degli Studi di Milano, Via Vanvitelli 32, 20129 Milano, Italy", + "ror_ids": [ + "https://ror.org/04q4kt073", + "https://ror.org/02k7wn190", + "https://ror.org/00wjc7c48" + ] + }, + { + "affiliation": "Genomics Center and DF/HCC Cancer Proteomics Core, Beth Israel Deaconess Medical Center, Harvard Medical School, Boston, Massachusetts", + "ror_ids": [ + "https://ror.org/04drvxt59", + "https://ror.org/03vek6s52", + "https://ror.org/03pvyf116" + ] + }, + { + "affiliation": "Hunan University of Science and Technology", + "ror_ids": [ + "https://ror.org/02m9vrb24" + ] + }, + { + "affiliation": "University of Illinois at Urbana-Champaign,", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "AIDS Research Institute, IrsiCaixa, Badalona, Spain;", + "ror_ids": [ + "https://ror.org/001synm23" + ] + }, + { + "affiliation": "Laboratory of Geomatics, Geodesy and GIS, Department of Civil, Chemical and Environmental Engineering, University of Genoa, Genoa, Italy", + "ror_ids": [ + "https://ror.org/0107c5v14" + ] + }, + { + "affiliation": "a Staff Tutor in Science , Open University in Wales , Cardiff", + "ror_ids": [] + }, + { + "affiliation": "Department of Engineering Mechanics, University of Nebraska—Lincoln, Lincoln, Nebraska 68588-0347", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "NASA, Johnson Space Center, Houston, TX", + "ror_ids": [ + "https://ror.org/04xx4z452" + ] + }, + { + "affiliation": "National Personal Protection Technology Laboratory, National Institute for Occupational Safety and Health, USA", + "ror_ids": [ + "https://ror.org/0502a2655" + ] + }, + { + "affiliation": "Hacettepe Üniversitesi Eğitim Bilimleri Enstitüsü", + "ror_ids": [ + "https://ror.org/04kwvgz42" + ] + }, + { + "affiliation": "Toyo University", + "ror_ids": [ + "https://ror.org/059d6yn51" + ] + }, + { + "affiliation": "Dept. of Information Systems UMBC 1000 Hilltop Circle Baltimore MD 21250 USA", + "ror_ids": [] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Seoul St. Mary's Hospital, College of Medicine, The Catholic University of Korea, Seoul, Korea.", + "ror_ids": [ + "https://ror.org/01fpnj063", + "https://ror.org/056cn0e37" + ] + }, + { + "affiliation": "National Key Laboratory of Biochemical Engineering Institute of Process Engineering Chinese Academy of Sciences Beijing 100190 P. R. China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/03j4x9j18" + ] + }, + { + "affiliation": "Universität Münster, Germany", + "ror_ids": [ + "https://ror.org/00pd74e08" + ] + }, + { + "affiliation": "Department of Medical Oncology, Chelsea and Westminster Hospital, London, UK", + "ror_ids": [ + "https://ror.org/038zxea36" + ] + }, + { + "affiliation": "Dr Phillip Frost Department of Dermatology and Miami Itch Center University of Miami Miami Florida USA", + "ror_ids": [ + "https://ror.org/02dgjyy92" + ] + }, + { + "affiliation": "Department of Medical Biotechnologies and Translational Medicine, University of Milan, Milan, Italy", + "ror_ids": [ + "https://ror.org/00wjc7c48" + ] + }, + { + "affiliation": "Department of Drug Design and Pharmacology, Faculty of Health and Medical Sciences University of Copenhagen Copenhagen Denmark", + "ror_ids": [ + "https://ror.org/035b05819" + ] + }, + { + "affiliation": "Institute of Development Policy, University of Antwerp", + "ror_ids": [ + "https://ror.org/008x57b05" + ] + }, + { + "affiliation": "Institute of Physics, Aalborg University, DK-9220 Aalborg O/st, Denmark", + "ror_ids": [ + "https://ror.org/04m5j1k67" + ] + }, + { + "affiliation": "Maine, United States", + "ror_ids": [] + }, + { + "affiliation": "Shell E&P", + "ror_ids": [ + "https://ror.org/00b5m4j81" + ] + }, + { + "affiliation": "Academy of Integrative Medicine, Fujian University of Traditional Chinese Medicine, Fuzhou, Fujian 350122, P.R. China", + "ror_ids": [ + "https://ror.org/05n0qbd70" + ] + }, + { + "affiliation": "School of Medicine, Case Western Reserve University, Cleveland, Ohio", + "ror_ids": [ + "https://ror.org/051fd9666" + ] + }, + { + "affiliation": "Indiana University, IN", + "ror_ids": [ + "https://ror.org/01kg8sb98" + ] + }, + { + "affiliation": "1Moores Cancer Center, University of California San Diego, La Jolla, CA,", + "ror_ids": [ + "https://ror.org/0168r3w48", + "https://ror.org/01qkmtm61" + ] + }, + { + "affiliation": "Northeastern University, Boston, USA", + "ror_ids": [ + "https://ror.org/04t5xt781" + ] + }, + { + "affiliation": "College of Resource and Environmental Engineering, Guizhou University, Guiyang 550012, China.", + "ror_ids": [ + "https://ror.org/02wmsc916" + ] + }, + { + "affiliation": "Chinese Academy of Medical Sciences and Peking Union Medical College", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "Biogen Cambridge MA United States", + "ror_ids": [ + "https://ror.org/02jqkb192" + ] + }, + { + "affiliation": "Bristol Myers Squibb, Princeton, NJ", + "ror_ids": [ + "https://ror.org/00gtmwv55" + ] + }, + { + "affiliation": "Department of Cardiology Tianjin Institute of Cardiology 2nd Hospital of Tianjin Medical University Tianjin China", + "ror_ids": [ + "https://ror.org/02mh8wx89", + "https://ror.org/03rc99w60" + ] + }, + { + "affiliation": "School of Geography, Earth and Environmental Sciences, University of Plymouth, Plymouth, UK", + "ror_ids": [ + "https://ror.org/008n7pv89" + ] + }, + { + "affiliation": "Doctoral Program in Rehabilitation Sciences, The University of Western Ontario, London, Ontario, Canada", + "ror_ids": [ + "https://ror.org/02grkyz14" + ] + }, + { + "affiliation": "China University of Petroleum-Beijing", + "ror_ids": [ + "https://ror.org/041qf4r12" + ] + }, + { + "affiliation": "Harvard MEEI, Boston, United States", + "ror_ids": [] + }, + { + "affiliation": "Department of Communication EngineeringNanjing University of Science and Technology Nanjing China", + "ror_ids": [ + "https://ror.org/00xp9wg62" + ] + }, + { + "affiliation": "College of Engineering, Peking University,Beijing,CHINA,100871", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "University of Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Department of Microbiology and Parasitology", + "ror_ids": [] + }, + { + "affiliation": "Haskins Laboratories, New York 17, New York", + "ror_ids": [ + "https://ror.org/003j5cv40" + ] + }, + { + "affiliation": "University of Tehran, Tehran, Iran", + "ror_ids": [ + "https://ror.org/05vf56z40" + ] + }, + { + "affiliation": "Department of Civil Engineering, National Institute of Technology, Tripura, India", + "ror_ids": [] + }, + { + "affiliation": "U.S. Army Research Institute of Environmental Medicine, Heat Research Division, Natick, Massachusettes 01760-5007", + "ror_ids": [ + "https://ror.org/00rg6zq05", + "https://ror.org/00afsp483" + ] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biology, Pennsylvania State University College of Medicine, Hershey, Pennsylvania 17033", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Department of Chemistry University of Oxford, Chemistry Research Laboratory Mansfield Road Oxford OX1 3TA UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Universidad de Concepción 1 Departamento de Fisíca, , Casilla 160-C, Concepción, Chile and Center for Optics and Photonics, , Casilla 4012, Concepción, Chile", + "ror_ids": [ + "https://ror.org/0460jpj73" + ] + }, + { + "affiliation": "School of Cardiovascular and Metabolic Health, British Heart Foundation Centre of Research Excellence University of Glasgow Glasgow UK", + "ror_ids": [ + "https://ror.org/00vtgdb53", + "https://ror.org/02wdwnk04" + ] + }, + { + "affiliation": "Department of Computer Science and Media Technology Malmö University Malmö Sweden", + "ror_ids": [ + "https://ror.org/05wp7an13" + ] + }, + { + "affiliation": "Department of Chemistry, Indian Institute of Technology, Kanpur-208016, India and Ambedkar Centre for Biomedical Research, University of Delhi, Delhi-110007, India", + "ror_ids": [ + "https://ror.org/04gzb2213", + "https://ror.org/05pjsgx75" + ] + }, + { + "affiliation": "Leibniz-Institut für Katalyse e. V. an der Universität Rostock Albert-Einstein-Straβe 29a 18059 Rostock Germany", + "ror_ids": [ + "https://ror.org/03zdwsf69", + "https://ror.org/029hg0311" + ] + }, + { + "affiliation": "Baldota Institute of Digestive Sciences, Global Hospitals, Mumbai, Maharashtra, India", + "ror_ids": [ + "https://ror.org/020cs8b78" + ] + }, + { + "affiliation": "Imperial College London", + "ror_ids": [ + "https://ror.org/041kmwe10" + ] + }, + { + "affiliation": "CEMAGREF, Unité de recherche hydrologie-hydraulique3 bis, quai Chauveau,CP 220,69336 Lyon cedex 09", + "ror_ids": [] + }, + { + "affiliation": "Department of Biology and Environmental Studies Program, New York University, 1009 Silver Center, 100 Washington Square East, New York, NY 10002, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "International University Schloss Reichartshausen, Germany", + "ror_ids": [] + }, + { + "affiliation": "Beijing Key Lab of Traffic Data Analysis and Mining, Beijing Jiaotong University, China", + "ror_ids": [ + "https://ror.org/01yj56c84" + ] + }, + { + "affiliation": "Department of Sociology, Umeå University, Sweden", + "ror_ids": [ + "https://ror.org/05kb8h459" + ] + }, + { + "affiliation": "Division of Biology, Beckman Institute 139-74, California Institute of Technology, Pasadena, California 91125, USA", + "ror_ids": [ + "https://ror.org/05dxps055" + ] + }, + { + "affiliation": "School of Biosciences, College of Life and Environmental Sciences, University of Birmingham, Edgbaston, Birmingham B15 2TT, U.K.", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "National Institute of Public Finance and Policy, New Delhi, India", + "ror_ids": [ + "https://ror.org/03r6d1b04" + ] + }, + { + "affiliation": "Laboratory of Molecular Nanostructures and Nanotechnology", + "ror_ids": [] + }, + { + "affiliation": "Tarleton State University, U.S.A.", + "ror_ids": [ + "https://ror.org/0263v9e25" + ] + }, + { + "affiliation": "Associate Director, School of Transportation Engineering, Tongji Univ., Shanghai 201804, China; Associate Director, The Key Laboratory of Road and Traffic Engineering, Ministry of Education, Shanghai 201804, China (corresponding author).", + "ror_ids": [ + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "School of Public Administration, Beihang University, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "INAC-SyMMES", + "ror_ids": [] + }, + { + "affiliation": "Chronic Respiratory Diseases Research Center, National Research Institute of Tuberculosis and Lung Diseases (NRITLD) Shahid Beheshti University of Medical Sciences Tehran Iran", + "ror_ids": [ + "https://ror.org/034m2b326", + "https://ror.org/039mjhc39" + ] + }, + { + "affiliation": "b Zhongguo jiaoyubao", + "ror_ids": [] + }, + { + "affiliation": "Shanghai Pulmonary Diseases Hosptial, Shanghai, China", + "ror_ids": [ + "https://ror.org/033nbnf69" + ] + }, + { + "affiliation": "Diabetes Center, Tokyo Women’s Medical University, Tokyo, Japan;", + "ror_ids": [ + "https://ror.org/03kjjhe36" + ] + }, + { + "affiliation": "Department of Anthropology University of Colorado Denver", + "ror_ids": [ + "https://ror.org/02hh7en24" + ] + }, + { + "affiliation": "Institute of Petroleum & Natural Gas Engineering, Mehran University of Engineering & Technology, Jamshoro 76062, Sindh, Pakistan", + "ror_ids": [ + "https://ror.org/0575ttm03" + ] + }, + { + "affiliation": "Division of Digestive Diseases, Department of Medicine, Center for Ulcer Research and Education: Digestive Diseases Research Center David Geffen School of Medicine and Molecular Biology Institute, University of California, Los Angeles, California; and", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Wessex Institute for Health Research and Development, Level B, South Academic Block, Southampton General Hospital, Southampton SO16 6YD, U.K.", + "ror_ids": [ + "https://ror.org/011cztj49" + ] + }, + { + "affiliation": "Stanford University Medical Center, Stanford, California, USA", + "ror_ids": [ + "https://ror.org/03mtd9a03", + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, Center for Fetal Care and High-Risk Pregnancy, University of Chieti, Chieti, Italy", + "ror_ids": [ + "https://ror.org/00qjgza05" + ] + }, + { + "affiliation": "PGY2 Critical Care Pharmacy Residency Program Methodist Healthcare – University Hospital Memphis, TN", + "ror_ids": [] + }, + { + "affiliation": "Makerere University, Uganda", + "ror_ids": [ + "https://ror.org/03dmz0111" + ] + }, + { + "affiliation": "a Royal Lyceum , Messina", + "ror_ids": [] + }, + { + "affiliation": "National Academy of Sciences of Azerbaijan", + "ror_ids": [ + "https://ror.org/006m4q736" + ] + }, + { + "affiliation": "Laboratorio de Astronomía, Geodesia y Cartografía, Departamento de Matemáticas, Facultad de Ciencias, Campus de Puerto Real, Universidad de Cádiz, 11510 Puerto Real, Spain", + "ror_ids": [ + "https://ror.org/04mxxkb11" + ] + }, + { + "affiliation": "Nutrition and Food SciencesTexas Woman’s UniversityBox‐425888DentonTexas76204", + "ror_ids": [ + "https://ror.org/04dyzkj40" + ] + }, + { + "affiliation": "Southeast University 3 RF Integrated Circuits and Systems Engineering Research Center of Ministry of Education of China, , Nanjing, 210096, China", + "ror_ids": [ + "https://ror.org/04ct4d772" + ] + }, + { + "affiliation": "Purdue University, West Lafayette, IN, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Division of Neonatology, Department of Neonatology, Children’s Hospital, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "College of Pharmacy and Nutrition, University of Saskatchewan, Saskatchewan, Canada", + "ror_ids": [ + "https://ror.org/010x8gc63" + ] + }, + { + "affiliation": "Department of Basic Medicinal Sciences, Graduate School of Pharmaceutical Sciences, Nagoya University, Furo-cho, Chikusa, Nagoya 464-8601, Japan", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Department of Management, Fowler College of Business San Diego State University San Diego California USA", + "ror_ids": [ + "https://ror.org/0264fdx42" + ] + }, + { + "affiliation": "Department of Applied and Computational Mathematics and Statistics, University of Notre Dame, Notre Dame, Indiana 46556 USA", + "ror_ids": [ + "https://ror.org/00mkhxb43" + ] + }, + { + "affiliation": "Academic Medical Center, University of Amsterdam; Department of Clinical Epidemiology, Biostatistics and Bioinformatics; P.O. Box 22700 Amsterdam Netherlands 1100 DE", + "ror_ids": [ + "https://ror.org/04dkp9463", + "https://ror.org/03t4gr691" + ] + }, + { + "affiliation": "Department of Sociology, University of Bucharest, Bucharest, Romania", + "ror_ids": [ + "https://ror.org/02x2v6p15" + ] + }, + { + "affiliation": "Department of Physical and Occupational Therapy, Universidade Federal de Minas Gerais Bela Horizonte, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0176yjw32" + ] + }, + { + "affiliation": "California State University at Los Angeles", + "ror_ids": [ + "https://ror.org/0294hxs80" + ] + }, + { + "affiliation": "Careggi Univ Hosp, Florence, Italy", + "ror_ids": [] + }, + { + "affiliation": "Russian Research Institute of Economics, Politics and Law in Science and Technology", + "ror_ids": [] + }, + { + "affiliation": "Institute of Advanced Energy, Kyoto University, Uji, Kyoto 611-0011, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Dirección General de Salud Pública. Consejería de Sanidad. Comunidad de Madrid", + "ror_ids": [ + "https://ror.org/040scgh75" + ] + }, + { + "affiliation": "From the Department of Radiology, Veterans Administration Hospital, Minneapolis, and the University of Minnesota, Minneapolis, Minnesota.", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "Universidad del Valle de Guatemala, Guatemala City, Guatemala", + "ror_ids": [ + "https://ror.org/03nyjqm54" + ] + }, + { + "affiliation": "Department of Chemistry, Box 351700, University of Washington, Seattle, Washington 98195-1700", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "1West Virginia Univ.", + "ror_ids": [ + "https://ror.org/011vxgd24" + ] + }, + { + "affiliation": "Central Research Division, Pfizer Inc., Groton, Connecticut 06340.", + "ror_ids": [ + "https://ror.org/01xdqrp08" + ] + }, + { + "affiliation": "Sorbonne Universités, UPMC Univ Paris 06, CNRS, UMR 7197, Laboratoire de Réactivité de Surface, 4 Place Jussieu, Case 178, F-75252 Paris, France", + "ror_ids": [ + "https://ror.org/02en5vm52", + "https://ror.org/04vthwx70" + ] + }, + { + "affiliation": "Department of Aeronautics and Astronautics, Massachusetts Institute of Technology, 77 Massachusetts Avenue, Cambridge, Massachusetts 02139, United States", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Department of Agroengineering, Faculty of Environmental Management and Agriculture, West Pomeranian University of Technology in Szczecin, 70-310 Szczecin, Poland", + "ror_ids": [ + "https://ror.org/0596m7f19" + ] + }, + { + "affiliation": "AT&T Bell Laboratories 480 Red Hill Road Middletown NJ 07748", + "ror_ids": [ + "https://ror.org/02bbd5539" + ] + }, + { + "affiliation": "a Department of Physics of Complex Systems , The Weizmann Institute of Science , 76100 Rehovot , Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "Franciscan Health", + "ror_ids": [ + "https://ror.org/01hbes477" + ] + }, + { + "affiliation": "Division of Pediatrics; Department of Clinical Science, Intervention and Technology; Karolinska Institutet; Stockholm; Sweden", + "ror_ids": [ + "https://ror.org/056d84691" + ] + }, + { + "affiliation": "Tokyo University of Science", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Department of Integrated Studies in Education, Faculty of Education, McGill University, Montreal, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "UK Dementia Research Institute, University College London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895", + "https://ror.org/02wedp412" + ] + }, + { + "affiliation": "Health Psychology, Heart and Lung Directorate, Great Ormond Street Hospital for Children, London, UK", + "ror_ids": [ + "https://ror.org/00zn2c847" + ] + }, + { + "affiliation": "Electricité de France, Lyon, France", + "ror_ids": [ + "https://ror.org/03wb8xz10" + ] + }, + { + "affiliation": "Faculty of Pharmacy and Pharmaceutical Sciences, University of Alberta, Edmonton, Canada.", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Okayama University", + "ror_ids": [ + "https://ror.org/02pc6pc55" + ] + }, + { + "affiliation": "Department of Psychiatry, Sackler Faculty of Medicine, Tel Aviv University, Israel", + "ror_ids": [ + "https://ror.org/04mhzgx49" + ] + }, + { + "affiliation": "University of Patras,Computer Engineering and Informatics Department,Patras,Greece", + "ror_ids": [ + "https://ror.org/017wvtq80" + ] + }, + { + "affiliation": "Centre for Biomedical Ethics, Yong Loo Lin School of Medicine, Singapore", + "ror_ids": [] + }, + { + "affiliation": "National Center for Atmospheric Research, Boulder, Colorado", + "ror_ids": [ + "https://ror.org/05cvfcr44" + ] + }, + { + "affiliation": "School of Allied Health Sciences, Faculty of Rehabilitation, Kitazato University", + "ror_ids": [ + "https://ror.org/00f2txz25" + ] + }, + { + "affiliation": "KU Leuven", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology Bezmialem University, Faculty of Medicine Istanbul Turkey", + "ror_ids": [ + "https://ror.org/04z60tq39" + ] + }, + { + "affiliation": "Otto Schott Institute of Materials Research, University of Jena", + "ror_ids": [] + }, + { + "affiliation": "Shandong University Qilu Hospital", + "ror_ids": [ + "https://ror.org/056ef9489", + "https://ror.org/0207yh398" + ] + }, + { + "affiliation": "Deakin University-Psychology; Geelong; Vic.; 5220; Australia", + "ror_ids": [ + "https://ror.org/02czsnj07" + ] + }, + { + "affiliation": "Dept of Computer Science Engineering, B.T.L. Institute of Technology, Bangalore, India", + "ror_ids": [] + }, + { + "affiliation": "Yale Law School", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Department of Physiology, All India Institute of Medical Sciences, New Delhi - India", + "ror_ids": [ + "https://ror.org/02dwcqs71" + ] + }, + { + "affiliation": "School of Mechanics and Safety Engineering, Zhengzhou University , Zhengzhou , 450001, Henan , China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Department of Physiology and Biophysics, University of TennesseeCollege of Medicine, Memphis 38163.", + "ror_ids": [ + "https://ror.org/00xzqjh13" + ] + }, + { + "affiliation": "Department of Psychology, Princeton University, USA", + "ror_ids": [ + "https://ror.org/00hx57361" + ] + }, + { + "affiliation": "M.Sc. Nursing II Year, Medical Surgical Nursing Department, Saveetha College of Nursing, Saveetha Institute of Medical and Technical Sciences, Chennai, India.", + "ror_ids": [] + }, + { + "affiliation": "Institut für Analysis, Dynamik und Modellierung Universität Stuttgart Pfaffenwaldring 57 Stuttgart 70569 Germany", + "ror_ids": [ + "https://ror.org/04vnq7t77" + ] + }, + { + "affiliation": "Fraunhofer Institute for Systems and Innovation Research (ISI), Breslauer Str. 48, D-76139 Karlsruhe", + "ror_ids": [ + "https://ror.org/03vyq6t71" + ] + }, + { + "affiliation": "China Three Gorges University", + "ror_ids": [ + "https://ror.org/0419nfc77" + ] + }, + { + "affiliation": "Department of Fisheries & Aquaculture, Government of Newfoundland & Labrador, St. John’s, Newfoundland & Labrador, Canada, A1B 4J6;", + "ror_ids": [ + "https://ror.org/01jet5b79" + ] + }, + { + "affiliation": "College of Teacher Education-MANUU, Darbhanga, Bihar", + "ror_ids": [] + }, + { + "affiliation": "Department of Surgery, Medical College of Wisconsin and Zablocki VA Medical Center, Milwaukee, Wisconsin", + "ror_ids": [ + "https://ror.org/00qqv6244", + "https://ror.org/0176arq92" + ] + }, + { + "affiliation": "Univ Rennes, ENSCR, CNRS, ISCR (Institut des Sciences Chimiques de Rennes) – UMR 6226, F-35000 Rennes, France", + "ror_ids": [ + "https://ror.org/015m7wh34", + "https://ror.org/00adwkx90", + "https://ror.org/01h0ffh48", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Genesis Housing Association, Genesis Housing Association, London, UK", + "ror_ids": [] + }, + { + "affiliation": "Department of Anatomy (M.P.), University of Turku, 20520 Turku, Finland", + "ror_ids": [ + "https://ror.org/05vghhr25" + ] + }, + { + "affiliation": "Goucher College", + "ror_ids": [ + "https://ror.org/055ag3e81" + ] + }, + { + "affiliation": "Bard College, USA", + "ror_ids": [ + "https://ror.org/04yrgt058" + ] + }, + { + "affiliation": "Mark Straney & Associates Campbelltown, NSW.", + "ror_ids": [] + }, + { + "affiliation": "Rheumatology, Department of Pediatrics, Alberta Children’s Hospital (ACH), ACH Research Institute, University of Calgary, Alberta, Canada", + "ror_ids": [ + "https://ror.org/03yjb2x39", + "https://ror.org/00sx29x36" + ] + }, + { + "affiliation": "Department of Medical Microbiology, School of Biomedical and Laboratory Sciences, College of Medicine and Health Sciences, University of Gondar, P.O. Box 196, Gondar, Ethiopia", + "ror_ids": [ + "https://ror.org/0595gz585" + ] + }, + { + "affiliation": "University of Stirling", + "ror_ids": [ + "https://ror.org/045wgfr59" + ] + }, + { + "affiliation": "Graduate School of Systems Design, Tokyo Metropolitan University, 1-1 Minami-Osawa, Hachioji, Tokyo 192-0397, Japan", + "ror_ids": [ + "https://ror.org/00ws30h19" + ] + }, + { + "affiliation": "bJ.R. Macdonald Laboratory, Department of Physics, Kansas State University, Manhattan, KS 66506, USA", + "ror_ids": [ + "https://ror.org/05p1j8758" + ] + }, + { + "affiliation": "Universidade Federal de São Carlos, Brazil", + "ror_ids": [ + "https://ror.org/00qdc6m37" + ] + }, + { + "affiliation": "Department of Surgical Sciences, Section of Transplantation Surgery, Uppsala University Hospital, Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/01apvbh93" + ] + }, + { + "affiliation": "Occupational therapist & ergonomist, kjacobs@bu.edu, workjournal.org, blogs.bu.edu/kjacobs/", + "ror_ids": [] + }, + { + "affiliation": "McGill University 1 Department of Physics, , Montreal, Quebec H3A 2T8, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "University of Toronto", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Department of Food Science and Technology Federal University of Technology Akure Nigeria", + "ror_ids": [ + "https://ror.org/01pvx8v81" + ] + }, + { + "affiliation": "Shenyang Ligong University", + "ror_ids": [ + "https://ror.org/03m20nr07" + ] + }, + { + "affiliation": "Univ. Grenoble Alpes, IRD, CNRS, Grenoble INP, Insitut des Géosciences de l’Environnement (IGE, UMR 5001), 38000, Grenoble, France", + "ror_ids": [ + "https://ror.org/01wwcfa26", + "https://ror.org/02rx3b187", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "The Weizmann Institute of Science, Rehovoth, Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "University of Missouri-Columbia", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "Asia Pacific University of Technology and Innovation,Kuala Lumpur,Malaysia", + "ror_ids": [ + "https://ror.org/03c52a632" + ] + }, + { + "affiliation": "Department of Mathematics, Universidad de Las Palmas Gran Canaria, Las Palmas de Gran Canaria, Spain", + "ror_ids": [ + "https://ror.org/01teme464" + ] + }, + { + "affiliation": "State Key Laboratory of Functions and Applications of Medicinal Plants, Guizhou Provincial Key Laboratory of Pharmaceutics, Guizhou Medical University, Guiyang, China", + "ror_ids": [ + "https://ror.org/035y7a716" + ] + }, + { + "affiliation": "Department of Applied Chemistry, Faculty of Technology, Kanagawa University", + "ror_ids": [ + "https://ror.org/02j6c0d67" + ] + }, + { + "affiliation": "a Barnard College, Columbia University , New York City , USA", + "ror_ids": [ + "https://ror.org/04rt94r53", + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "Modern Agricultural Engineering Key Laboratory at Universities of Education Department of Xinjiang Uygur Autonomous Region Tarim University Alar Xinjiang China", + "ror_ids": [ + "https://ror.org/05202v862" + ] + }, + { + "affiliation": "Banaras Hindu University", + "ror_ids": [ + "https://ror.org/04cdn2797" + ] + }, + { + "affiliation": "Department of Propaedeutics of Internal Diseases Faculty of Medicine Medical University - Plovdiv, Bulgaria", + "ror_ids": [ + "https://ror.org/02kzxd152" + ] + }, + { + "affiliation": "1 MTA Pszichológiai Kutatóintézete, Pszichofiziológiai Osztály, Fejlődés-pszichofiziológiai Csoport Szondi u. 83–85. 1068 Budapest", + "ror_ids": [] + }, + { + "affiliation": "University College London , London , United Kingdom of Great Britain & Northern Ireland", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Department of Neurology Yale University School of Medicine New Haven CT USA", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "1Baylor College of Medicine, Houston, TX;", + "ror_ids": [ + "https://ror.org/02pttbw34" + ] + }, + { + "affiliation": "The+University+of+Alabama+at+Birmingham", + "ror_ids": [ + "https://ror.org/008s83205" + ] + }, + { + "affiliation": "Marine Bioscience Facility, Naval Missile Center, Point Mugu, California 93041", + "ror_ids": [] + }, + { + "affiliation": "Marshfield Medical Research Foundation, USA", + "ror_ids": [] + }, + { + "affiliation": "STMicroelectronics, Catania, Italy", + "ror_ids": [ + "https://ror.org/053bqv655" + ] + }, + { + "affiliation": "Kyoto Prefectural University Of Medicine , Japan", + "ror_ids": [ + "https://ror.org/028vxwa22" + ] + }, + { + "affiliation": "National Centre for Atmospheric Science Oxford UK", + "ror_ids": [ + "https://ror.org/01wwwe276" + ] + }, + { + "affiliation": "i-STAT Corporation, 436 Hazeldean Road, Kanata, Ontario K2L 1T9, Canada", + "ror_ids": [] + }, + { + "affiliation": "Independent, Moscow, Russia,", + "ror_ids": [] + }, + { + "affiliation": "Institute of Education , London", + "ror_ids": [] + }, + { + "affiliation": "Park Seismic, LLC, Shelton, Connecticut, USA", + "ror_ids": [] + }, + { + "affiliation": "Department of Information Systems, University of Maryland Baltimore County, Baltimore, MD 21250, USA", + "ror_ids": [ + "https://ror.org/02qskvh78" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, University of Pittsburgh, Kaufmann Medical Building, Suite 1010, 3471 Fifth Avenue, Pittsburgh, Pennsylvania 15213, USA.", + "ror_ids": [ + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Department of Fixed Prosthodontics, Nihon University School of Dentistry", + "ror_ids": [ + "https://ror.org/05jk51a88" + ] + }, + { + "affiliation": "Dept. of Psychology and Education, University of Sio Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "UFC, Brazil", + "ror_ids": [ + "https://ror.org/03srtnf24" + ] + }, + { + "affiliation": "Key Lab of Organic Optoelectronics and Molecular Engineering of Ministry of Education", + "ror_ids": [] + }, + { + "affiliation": "Epidemiology Program, College of Public Health and Human Sciences and", + "ror_ids": [] + }, + { + "affiliation": "International Studies Foundation, Madrid, Spain", + "ror_ids": [] + }, + { + "affiliation": "From the Division of Urology, Henry Ford Hospital, Detroit, Michigan", + "ror_ids": [ + "https://ror.org/0193sb042" + ] + }, + { + "affiliation": "University of Southampton", + "ror_ids": [ + "https://ror.org/01ryk1543" + ] + }, + { + "affiliation": "West Anhui University", + "ror_ids": [ + "https://ror.org/046ft6c74" + ] + }, + { + "affiliation": "Department of Chemistry, University of Oxford, Chemistry Research Laboratory, 12 Mansfield Road, Oxford OX1 3TA, United Kingdom", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Head, Bridge Research, Bridge Office, Ontario Ministry of Transportation, 301 St. Paul St., St. Catharines ON, Canada L2R 7R4.", + "ror_ids": [ + "https://ror.org/009nawz64" + ] + }, + { + "affiliation": "Department of Pre-Clinical Science, Faculty of Medicine and Health Sciences, Universiti Tunku Abdul Rahman, Bandar Sungai Long, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/050pq4m56" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Carnegie Mellon University, 5000 Forbes Avenue, Pittsburgh, Pennsylvania, 15213, United States", + "ror_ids": [ + "https://ror.org/05x2bcf33" + ] + }, + { + "affiliation": "State Russian Museum", + "ror_ids": [] + }, + { + "affiliation": "Geodynamics Research Center, Ehime University, 2-5 Bunkyo-cho., Matsuyama 790-8577, Ehime, Japan", + "ror_ids": [ + "https://ror.org/017hkng22" + ] + }, + { + "affiliation": "Laboratoire d'Analyse et d'Architecture des Systèmes, Centre National de la Recherche Scientifique, 7 Avenue du Colonel Roche, 31077 Toulouse, France", + "ror_ids": [ + "https://ror.org/03vcm6439", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Wuhan 430074", + "ror_ids": [] + }, + { + "affiliation": "PPQD\n Kabul\n Afghanistan", + "ror_ids": [] + }, + { + "affiliation": "Sussex University, England", + "ror_ids": [ + "https://ror.org/00ayhx656" + ] + }, + { + "affiliation": "From the Department of Health Policy, George Washington University School of Public Health and Health Services, Washington, DC.", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "Graphic Era University, India", + "ror_ids": [ + "https://ror.org/03wqgqd89" + ] + }, + { + "affiliation": "School of Computing, Ulster University, Newtownabbey, Co. Antrim, BT37 0QB, UK", + "ror_ids": [ + "https://ror.org/01yp9g959" + ] + }, + { + "affiliation": "Department of Radiology, Charité Universitätsmedizin Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/001w7jn25" + ] + }, + { + "affiliation": "Geosciences Department Idaho National Engineering and Environmental Laboratory P.O. Box 1625, MS 2107 Idaho Falls ID 83415", + "ror_ids": [] + }, + { + "affiliation": "Departments of Cardiology, University Hospital of Copenhagen, DK-2650 Hvidovre, Denmark", + "ror_ids": [ + "https://ror.org/05bpbnx46" + ] + }, + { + "affiliation": "Pearlstone Center for Aeronautical Engineering Studies, Department of Mechanical Engineering, Ben-Gurion University of the Negev, P. O. Box 653, Beer-Sheva, 84105, Israel", + "ror_ids": [ + "https://ror.org/05tkyf982" + ] + }, + { + "affiliation": "Zhejiang University of Science and Technology Department of Energy and Environmental System Engineering, , Hangzhou, 310023, China", + "ror_ids": [ + "https://ror.org/05mx0wr29" + ] + }, + { + "affiliation": "Department of Otolaryngology Head and Neck Surgery Chinese PLA General Hospital Beijing China", + "ror_ids": [ + "https://ror.org/04gw3ra78" + ] + }, + { + "affiliation": "Royal Brisbane and Women's Hospital, Brisbane, QLD.", + "ror_ids": [ + "https://ror.org/05p52kj31" + ] + }, + { + "affiliation": "Veterans Administration Medical Center Syracuse New York", + "ror_ids": [ + "https://ror.org/0332k3m42" + ] + }, + { + "affiliation": "Department of Radiation Oncology, Kyung Hee University Hospital at Gangdong, Seoul, Korea.", + "ror_ids": [ + "https://ror.org/05x9xyq11" + ] + }, + { + "affiliation": "Department of Applied Biology, College of Agriculture and Life Sciences, chungnam National University", + "ror_ids": [ + "https://ror.org/0227as991" + ] + }, + { + "affiliation": "Visterra Inc., Waltham, United States of America", + "ror_ids": [ + "https://ror.org/01ph20k51" + ] + }, + { + "affiliation": "Medicine, Universiti Putra Malaysia, Malaysia", + "ror_ids": [ + "https://ror.org/02e91jd64" + ] + }, + { + "affiliation": "Department of Physics, Kyiv National University of Technologies and Design, Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/050vh8780" + ] + }, + { + "affiliation": "The University of Texas at Houston (GWH, NHW, ANM, DJP), Memorial Hermann Hospital-Texas Medical Center, Houston (GWH, NHW, DJP), Baylor College of Medicine, Houston, Texas (XY, AO, CAK)", + "ror_ids": [ + "https://ror.org/02pttbw34", + "https://ror.org/00dqsbj20", + "https://ror.org/01gek1696", + "https://ror.org/049d9a475" + ] + }, + { + "affiliation": "University of Novi Sad, Faculty of Medicine, Novi Sad, Serbia", + "ror_ids": [ + "https://ror.org/00xa57a59" + ] + }, + { + "affiliation": "Catholic University of Brasília, Brazil", + "ror_ids": [ + "https://ror.org/0058wy590" + ] + }, + { + "affiliation": "Community Health Sciences, University of Calgary, Calgary, Alberta, Canada.", + "ror_ids": [ + "https://ror.org/03yjb2x39" + ] + }, + { + "affiliation": "BIOCHEMISTRY & BIOPHYSICS UNIVERSITY OF NORTH CAROLINA CHAPEL HILL NC", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Department of Economics, University of Chicago, Chicago, Illinois", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "University of Manchester Institute of Science and Technology", + "ror_ids": [ + "https://ror.org/027m9bs27" + ] + }, + { + "affiliation": "Laboratory of Neurosciences, National Institute on Aging Intramural Research Program, National Institutes of Health, Baltimore, Maryland, USA", + "ror_ids": [ + "https://ror.org/049v75w11", + "https://ror.org/01cwqze88" + ] + }, + { + "affiliation": "Department of Pharmacology and Chemical Biology, Emory University School of Medicine, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Department of Statistics University of Oxford Oxford UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Laboratoire Central de Recherche, Thomson-LCR, Domaine de Corbeville, 91401 Orsay Cedex, France", + "ror_ids": [] + }, + { + "affiliation": "Department of Embryology Carnegie Institution for Science Baltimore Maryland", + "ror_ids": [ + "https://ror.org/04jr01610" + ] + }, + { + "affiliation": "NXP Semiconductors, Austin, TX", + "ror_ids": [ + "https://ror.org/054fc6480" + ] + }, + { + "affiliation": "Key Laboratory of Protein and Peptide Pharmaceutical, Institute of Biophysics, Chinese Academy of Sciences, Beijing 100101, China;", + "ror_ids": [ + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "Department of Psychology, University of Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463" + ] + }, + { + "affiliation": "Department of Immunology, Weizmann Institute of Science, Rehovot, Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "Faculty of Medicine and Health Sciences, Physiotherapy Division, Department of Health and Rehabilitation Sciences, Stellenbosch University, Cape Town 8000, South Africa", + "ror_ids": [ + "https://ror.org/05bk57929" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Stanford University 1 , Stanford, California 94305, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "GretagMacbeth South Deerfield Massachusetts", + "ror_ids": [] + }, + { + "affiliation": "Materials Science Division, Argonne National Laboratory, Argonne, Illinois 60439-4838", + "ror_ids": [ + "https://ror.org/05gvnxz63" + ] + }, + { + "affiliation": "Department of Neurosurgery, Gangneung Asan Hospital, Gangneung 25440, Republic of Korea", + "ror_ids": [ + "https://ror.org/03pw3x387" + ] + }, + { + "affiliation": "Hearing Therapeutics, Ear Science Institute Australia, Queen Elizabeth II Medical Centre, Nedlands 6009, Perth, Western Australia, Australia", + "ror_ids": [ + "https://ror.org/0071a2k97", + "https://ror.org/05f5rab97" + ] + }, + { + "affiliation": "Center for the Intelligent Semiconductor Nano‐system Technology Research National Chiao Tung University Hsinchu 300 Taiwan", + "ror_ids": [ + "https://ror.org/00se2k293" + ] + }, + { + "affiliation": "Research Institute, Hospital for Sick Children, and Departments of", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "Jet Propulsion Laboratory, 4800 Oak Grove Dr., Pasadena, CA 91109", + "ror_ids": [ + "https://ror.org/027k65916" + ] + }, + { + "affiliation": "The Gene & Linda Voiland School of Chemical Engineering and Bioengineering, Washington State University, Pullman, Washington 99164, United States", + "ror_ids": [ + "https://ror.org/05dk0ce17" + ] + }, + { + "affiliation": "Department of Epidemiology and Biostatistics, University of South Carolina, Columbia, SC, USA", + "ror_ids": [ + "https://ror.org/02b6qw903" + ] + }, + { + "affiliation": "Department of Food Science and Human Nutrition and Center for Crops Utilization Research Iowa State University Ames Iowa 50011", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "Institute of Strategic Researches of Bashkortostan Republic", + "ror_ids": [] + }, + { + "affiliation": "SeraCare Life Sciences, 217 Perry Pkwy, Gaithersburg, MD, 20877", + "ror_ids": [ + "https://ror.org/02dcdb854" + ] + }, + { + "affiliation": "Hamad Medical Corporation, Doha, Qatar", + "ror_ids": [ + "https://ror.org/02zwb6n98" + ] + }, + { + "affiliation": "University of North Carolina at Chapel Hill USA", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Fraunhofer Center for Experimental Software Engineering Maryland (FC-MD), 4321 Hartwick Road, Suite 500, College Park, MD 20740, USA", + "ror_ids": [ + "https://ror.org/05sz9gw20" + ] + }, + { + "affiliation": "School of Electronic Engineering, Tianjin University of Technology and Education, Tianjin, China", + "ror_ids": [ + "https://ror.org/035gwtk09" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Boston University, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/05qwgg493" + ] + }, + { + "affiliation": "a University of Glasgow", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "IBM T. J. Watson Research Center, Hawthorne, NY", + "ror_ids": [ + "https://ror.org/05hh8d621" + ] + }, + { + "affiliation": "University of Novi Sad, Faculty of Medicine, Department of Pathology, Novi Sad, Serbia + University Clinical Center of Vojvodina, Center for Pathology and Histology, Novi Sad, Serbia", + "ror_ids": [ + "https://ror.org/00xa57a59", + "https://ror.org/00fpn0e94" + ] + }, + { + "affiliation": "Swiss Federal Institute of Technology (ETH) Zurich, Institute of Quantum Electronics, Laser Spectroscopy and Sensing Laboratory, Hoenggerberg, HPF D19, CH-8093 Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Hebei University of Science and Technology", + "ror_ids": [ + "https://ror.org/05h3pkk68" + ] + }, + { + "affiliation": "Department of Oceanography and Meteorology, Texas A & M University, College Station, Texas", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "University of Southampton, UK", + "ror_ids": [ + "https://ror.org/01ryk1543" + ] + }, + { + "affiliation": "Nirma University,Civil Engineering Department,Ahmedabad,India,382481", + "ror_ids": [ + "https://ror.org/05qkq7x38" + ] + }, + { + "affiliation": "Norwegian Defence Research Establishment therese.sandrup@ffi.no", + "ror_ids": [ + "https://ror.org/0098gnz32" + ] + }, + { + "affiliation": "Graduate School Psychology Program Queens College of The City University of New York", + "ror_ids": [ + "https://ror.org/00453a208", + "https://ror.org/03v8adn41" + ] + }, + { + "affiliation": "State Key Laboratory of Synthetical Automation for Process Industries and the College of Information Science and Engineering, Northeastern University, Shenyang, China", + "ror_ids": [ + "https://ror.org/03awzbc87", + "https://ror.org/0380ng272" + ] + }, + { + "affiliation": "Mahrad Nassirkhani, Entomology Department, Faculty of Agriculture and Natural Resources, Islamic Azad University, Arak branch, Arak, Iran; E-mail: greenartificialturfgrass@gmail.com", + "ror_ids": [ + "https://ror.org/02558wk32" + ] + }, + { + "affiliation": "Institute of Physics, Technical University of Wrocław, Wybrzeże Wyspiańskiego 27, 50-370 Wrocław, Poland", + "ror_ids": [ + "https://ror.org/008fyn775" + ] + }, + { + "affiliation": "Novo Nordisk BioChem North America Inc., 77 Perry Chapel Church Road, Raleigh, NC 27525", + "ror_ids": [ + "https://ror.org/011y67d23" + ] + }, + { + "affiliation": "Cavendish Laboratory, Madingley Road, Cambridge CB3 OHE, England", + "ror_ids": [] + }, + { + "affiliation": "University of Jaffna, Jaffna, Sri Lanka", + "ror_ids": [ + "https://ror.org/02fwjgw17" + ] + }, + { + "affiliation": "Institut für Graphische Datenverarbeitung und Mustererkennung, Gesellschaft für Mathematik und Datenverarbeitung Bonn, St. Augustin, W. Germany", + "ror_ids": [ + "https://ror.org/02g6d4t03" + ] + }, + { + "affiliation": "Chem. Laborat. d. University College, St. Andrews Universität, Dundee, Schottland", + "ror_ids": [ + "https://ror.org/02wn5qz54" + ] + }, + { + "affiliation": "Department of Applied Chemistry, Gifu University", + "ror_ids": [ + "https://ror.org/024exxj48" + ] + }, + { + "affiliation": "Department of Economics and Management “Marco Fanno” University of Padova Padova Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Washington University Department of Physics and the Center for Materials Innovation, , St. Louis, Missouri 63130, USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Pediatric and Adolescent Oncology Drug Development, Children & Young People’s Unit, The Royal Marsden NHS Foundation Trust, London, UK", + "ror_ids": [ + "https://ror.org/0008wzh48" + ] + }, + { + "affiliation": "D-Fowi, Professur Waldbau, ETH-Zentrum, 8092 Zurich.", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Klinik für Psychiatrie und Psychotherapie, Charité-Universitätsmedizin, Campus Mitte, Berlin", + "ror_ids": [ + "https://ror.org/001w7jn25" + ] + }, + { + "affiliation": "University of Hertfordshire, London, UK", + "ror_ids": [ + "https://ror.org/0267vjk41" + ] + }, + { + "affiliation": "Department of Internal Medicine, Institute of Neurogastroenterology and Motility, Martin Luther Hospital, Germany", + "ror_ids": [] + }, + { + "affiliation": "Institute of Management, Corvinus University of Budapest, Hungary", + "ror_ids": [ + "https://ror.org/01vxfm326" + ] + }, + { + "affiliation": "Fuji Environmental Service Co., Ltd.", + "ror_ids": [] + }, + { + "affiliation": "d Department of Applied Chemistry , Kyushu Institute of Technology , Sensui-cho, Tobata, Kitakyushu 804–0015, Japan", + "ror_ids": [ + "https://ror.org/02278tr80" + ] + }, + { + "affiliation": "Qatar University", + "ror_ids": [ + "https://ror.org/00yhnba62" + ] + }, + { + "affiliation": "Department of Pathology, Stanford University School of Medicine From the , Stanford, California 94305 and the , New Haven, Connecticut 06510", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Department of Neuroscience Faculty of Medicine Norwegian University of Science and Technology (NTNU) Trondheim Norway", + "ror_ids": [ + "https://ror.org/05xg72x27" + ] + }, + { + "affiliation": "Gilead Sciences, Inc., Foster City, CA", + "ror_ids": [ + "https://ror.org/01fk6s398" + ] + }, + { + "affiliation": "Quebec Mental Health Institute Department of Psychiatry and Neuroscience Université Laval Quebec City Quebec Canada", + "ror_ids": [ + "https://ror.org/04sjchr03" + ] + }, + { + "affiliation": "University of Washington", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "Department of Infectious and Endemic Diseases, Faculty of Medicine, Suez Canal University, Ismailia, Egypt", + "ror_ids": [ + "https://ror.org/02m82p074" + ] + }, + { + "affiliation": "Naval Research Laboratory", + "ror_ids": [] + }, + { + "affiliation": "Universiti Tun Hussein Onn Malaysia", + "ror_ids": [ + "https://ror.org/01c5wha71" + ] + }, + { + "affiliation": "Department of Chemistry and Chemical Biology, Faculty of Engineering, Gunma University", + "ror_ids": [ + "https://ror.org/046fm7598" + ] + }, + { + "affiliation": "Department of Microbiology, Immunology and Infectious Diseases, Snyder Institute for Chronic Diseases, University of Calgary, Calgary, AB, Canada", + "ror_ids": [ + "https://ror.org/03yjb2x39" + ] + }, + { + "affiliation": "Département de Neurosciences Cliniques, Geneva University Hospital, Geneva, Switzerland", + "ror_ids": [ + "https://ror.org/01m1pv723" + ] + }, + { + "affiliation": "Division of Pathology, Central Laboratory of Medical Sciences, Juntendo University School of Medicine", + "ror_ids": [ + "https://ror.org/01692sz90" + ] + }, + { + "affiliation": "Universidade Federal do Rio Grande do Sul, Brazil", + "ror_ids": [ + "https://ror.org/041yk2d64" + ] + }, + { + "affiliation": "cDepartment of Pathology, University of Frankfurt, 60596 Frankfurt, Germany", + "ror_ids": [ + "https://ror.org/02msan859" + ] + }, + { + "affiliation": "Abu Dhabi National Oil Company", + "ror_ids": [ + "https://ror.org/010e8pt90" + ] + }, + { + "affiliation": "Department of Surgery, Campbell University School of Osteopathic Medicine, Lillington, NC, USA", + "ror_ids": [ + "https://ror.org/00dv9q566" + ] + }, + { + "affiliation": "National University of Science and Technology «MISiS»", + "ror_ids": [ + "https://ror.org/019vsm959" + ] + }, + { + "affiliation": "University of Missouri-Rolla, Rolla, Missouri 65401.", + "ror_ids": [ + "https://ror.org/00scwqd12" + ] + }, + { + "affiliation": "U.S. EPA Office of Air Quality Planning and Standards, Research Triangle Park, North Carolina 27711, United States", + "ror_ids": [ + "https://ror.org/03tns0030" + ] + }, + { + "affiliation": "Madison, Wisconsin, USA", + "ror_ids": [] + }, + { + "affiliation": "Civil and Environmental Engineering Dept., Faculty of Engineering, Mutah Univ., JO, e-mail: malzoubi@mutah.edu.jo", + "ror_ids": [ + "https://ror.org/008g9ns82" + ] + }, + { + "affiliation": "Chemistry Division, Argonne National Laboratory, Argonne, Illinois 60439", + "ror_ids": [ + "https://ror.org/05gvnxz63" + ] + }, + { + "affiliation": "Division of Endocrinology, Department of Medicine, Universidade Federal de São Paulo, São Paulo, Brazil.", + "ror_ids": [ + "https://ror.org/02k5swt12" + ] + }, + { + "affiliation": "Department of Emergency, The Third Affiliated Hospital of Zhejiang Chinese Medical University, Hangzhou, Zhejiang 310005, P.R. China", + "ror_ids": [ + "https://ror.org/0491qs096" + ] + }, + { + "affiliation": "UŞAK ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/05es91y67" + ] + }, + { + "affiliation": "Department of Zoology, University of Otago, P .O. Box 56, Dunedin, New Zealand", + "ror_ids": [ + "https://ror.org/01jmxt844" + ] + }, + { + "affiliation": "Division of Gastroenterology,Department of Medicine,Duke University Medical Center,Durham,NC", + "ror_ids": [ + "https://ror.org/04bct7p84", + "https://ror.org/03njmea73" + ] + }, + { + "affiliation": "a:1:{s:5:\"en_US\";s:22:\"Dokuz Eylul University\";}", + "ror_ids": [ + "https://ror.org/00dbd8b73" + ] + }, + { + "affiliation": "College of Pharmacy Third Military Medical University Chongqing 400038 P. R. China", + "ror_ids": [ + "https://ror.org/05w21nn13" + ] + }, + { + "affiliation": "Geografiska Annaler: Series B, Human Geography", + "ror_ids": [] + }, + { + "affiliation": "From Editorial Rx Inc; Whippen Consulting, Orange Park, FL; and the Departments of the History of Medicine and Surgery, Johns Hopkins University, School of Medicine, Baltimore, MD", + "ror_ids": [ + "https://ror.org/00za53h95" + ] + }, + { + "affiliation": "Assistant Professor in Commercial Law, College of Law, Sultan Qaboos University\nMuscatOman", + "ror_ids": [ + "https://ror.org/04wq8zb47" + ] + }, + { + "affiliation": "a Department of Chemical Engineering , University of Missouri-Rolla , Rolla , Missouri , 65401", + "ror_ids": [ + "https://ror.org/00scwqd12" + ] + }, + { + "affiliation": "Norton Infectious Diseases Institute, Louisville, KY, United States", + "ror_ids": [] + }, + { + "affiliation": "Yantai University", + "ror_ids": [ + "https://ror.org/01rp41m56" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Faculty of Engineering and Industrial Technology, Silpakorn University", + "ror_ids": [ + "https://ror.org/02d0tyt78" + ] + }, + { + "affiliation": "Technische Universität Darmstadt, Darmstadt, Germany", + "ror_ids": [ + "https://ror.org/05n911h24" + ] + }, + { + "affiliation": "Wroclaw University of Technology", + "ror_ids": [ + "https://ror.org/008fyn775" + ] + }, + { + "affiliation": "Centre for Demographic Studies, Autonomous University of Barcelona, Bellaterra, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94", + "https://ror.org/02dm87055" + ] + }, + { + "affiliation": "University of North Carolina at Chapel Hill, USA", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "a Department of Environmental Sciences and Engineering, School of Public Health , University of North Carolina , Chapel Hill, North Carolina", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Department of Horticulture, Iowa State College", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "Department of Biotechnology, Hankyong National University, 327 Jungang-ro Anseong-si, Gyeonggi-do 17579, Republic of Korea", + "ror_ids": [ + "https://ror.org/0031nsg68" + ] + }, + { + "affiliation": "Department of Electrical Engineering & Computer Science, The University of Toledo, 2801 W. Bancroft, Toledo, OH 43606, USA", + "ror_ids": [ + "https://ror.org/01pbdzh19" + ] + }, + { + "affiliation": "Department of Pharmaceutics and Department of Pharmaceutical Technology (Formulations), National Institute of Pharmaceutical Education and Research (NIPER), S.A.S. Nagar, Punjab 160 062, India", + "ror_ids": [ + "https://ror.org/01dphnv87" + ] + }, + { + "affiliation": "“Petru Poni” Institute of Macromolecular Chemistry, Aleea Grigore Ghica-Voda 41A, Iasi 700487, Romania", + "ror_ids": [ + "https://ror.org/0340mea86" + ] + }, + { + "affiliation": "Graduate School of Frontier Science, The Univ. of Tokyo", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Division of Urological Cancers, Department of Translational Medicine Lund University Malmö Sweden", + "ror_ids": [ + "https://ror.org/012a77v79" + ] + }, + { + "affiliation": "University of Freiburg", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "North West London Vascular Network, Northwick Park Hospital, Harrow, Middlesex, United Kingdom", + "ror_ids": [ + "https://ror.org/030j6qm79" + ] + }, + { + "affiliation": "MRC Human Immunology Unit, Weatherall Institute of Molecular Medicine, John Radcliffe Hospital, Oxford, OX3 9DS, UK", + "ror_ids": [ + "https://ror.org/02kcpr174", + "https://ror.org/0080acb59" + ] + }, + { + "affiliation": "CSIRO Agriculture and Food 203 Tor Street Toowoomba QLD 4350 Australia", + "ror_ids": [ + "https://ror.org/03n17ds51", + "https://ror.org/03qn8fb07" + ] + }, + { + "affiliation": "Guangdong Provincial Key laboratory of Optical Fiber Sensing and Communications", + "ror_ids": [] + }, + { + "affiliation": "Center for Outcomes and Policy Research, Dana-Farber Cancer Institute, Boston, MA", + "ror_ids": [ + "https://ror.org/02jzgtq86" + ] + }, + { + "affiliation": "The 1st Department of Medicine, Faculty of Clinical Medicine Mannheim, University Heidelberg, Klinikum Mannheim, Germany", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Institute of Materials Science, University of Tsukuba, Tsukuba, Ibaraki 305, Japan", + "ror_ids": [ + "https://ror.org/02956yf07" + ] + }, + { + "affiliation": "Food Animal Health Research Program, The Ohio State University, Wooster, Ohio, USA", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Department of Cardiovascular Medicine Beaumont Health System and the William Beaumont Oakland University School of Medicine Royal Oak Michigan", + "ror_ids": [ + "https://ror.org/02hb5yj49", + "https://ror.org/01ythxj32" + ] + }, + { + "affiliation": "University of British Columbia", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Fachbereich Mathematik und Physik, Technische Fachhochschule Berlin, Luxemburger Strasse 10, 13353 Berlin, Germany", + "ror_ids": [ + "https://ror.org/00w7whj55" + ] + }, + { + "affiliation": "From the Mayo Foundation, Rochester, Minn (D.R.H., P.B.B.); the Cleveland (Ohio) Clinic Foundation (E.J.T., P.L.W., S.G.E.); Duke University Medical Center, Durham, NC (R.M.C., L.G.B., K.L.L., G.P.K.); Loyola Medical Center, Chicago, Ill (F.L.); William Beaumont–Royal Oak Hospital, Royal Oak, Mich (R.S.); the University of Louisville, Ky (J.D.T.); Maine Medical Center, Portland (M.A.K.); Maimonides Medical Center, Brooklyn, NY (J.S.); Graduate Hospital, Philadelphia, Pa (R.S.G.); Toronto (Ontario)...", + "ror_ids": [ + "https://ror.org/04bct7p84", + "https://ror.org/03artm726", + "https://ror.org/01ckdn478", + "https://ror.org/034c1gc25", + "https://ror.org/00g651r29", + "https://ror.org/02qp3tb03", + "https://ror.org/03xjacd83", + "https://ror.org/05xcyt367", + "https://ror.org/0116mdr21" + ] + }, + { + "affiliation": "WEIR research unit, Department of Architecture and Civil Engineering, University of Bath, Bath, UK", + "ror_ids": [ + "https://ror.org/002h8g185" + ] + }, + { + "affiliation": "Department of Clinical Medicine and Emerging Diseases (E.C., S.B., P.M., G.D.F., G.R.), University of Palermo, 90139 Palermo, Italy", + "ror_ids": [ + "https://ror.org/044k9ta02" + ] + }, + { + "affiliation": "6Affiliated Cancer Hospital & Institute of Guangzhou Medical University, Guangzhou, China;", + "ror_ids": [ + "https://ror.org/00zat6v61" + ] + }, + { + "affiliation": "Faculty of Science and Engineering, Waseda University", + "ror_ids": [ + "https://ror.org/00ntfnx83" + ] + }, + { + "affiliation": "Elanco Animal Health, A Division of Eli Lilly and Company, 2001 West Main St, Greenfield, IN 46140-0708", + "ror_ids": [ + "https://ror.org/01qat3289" + ] + }, + { + "affiliation": "Université Côte d’Azur, CNRS, I3S, 06902 Valbonne, France", + "ror_ids": [ + "https://ror.org/019tgvf94" + ] + }, + { + "affiliation": "Jay S. Ross is with the Academy for Educational Development, Washington, DC. Miriam H. Labbok was with the Nutrition and Maternal Health Division, Global Bureau, US Agency for International Development (USAID) during preparation of the article. She is currently with the Nutrition Section, UNICEF, New York, NY.", + "ror_ids": [ + "https://ror.org/034s15752", + "https://ror.org/02dg0pv02", + "https://ror.org/01n6e6j62" + ] + }, + { + "affiliation": "Trinity Translational Medicine Institute", + "ror_ids": [] + }, + { + "affiliation": "Donghua University", + "ror_ids": [ + "https://ror.org/035psfh38" + ] + }, + { + "affiliation": "Enrico Fermi Institute and Department of Physics The University of Chicago, Chicago, Illinois", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of Chemistry University of Puerto Rico Rio Piedras Campus 00931‐3346 San Juan PR PO Box 23346 USA", + "ror_ids": [ + "https://ror.org/0453v4r20" + ] + }, + { + "affiliation": "Registered Nurse; and Student Paramedic, Charles Sturt University, Bathurst, Australia", + "ror_ids": [ + "https://ror.org/00wfvh315" + ] + }, + { + "affiliation": "Dudley Road Hospital , Birmingham B18 7QH , UK", + "ror_ids": [ + "https://ror.org/02smq5q54" + ] + }, + { + "affiliation": "Norwegian Petroleum Directorate, PO Box 600, N-4001 Stavanger, Norway", + "ror_ids": [] + }, + { + "affiliation": "Department of Ophthalmology , The First Affiliated Hospital of Yangtze University , Jingzhou , China", + "ror_ids": [ + "https://ror.org/05bhmhz54" + ] + }, + { + "affiliation": "Broad Institute", + "ror_ids": [ + "https://ror.org/05a0ya142" + ] + }, + { + "affiliation": "Cardiology Department, Faculty of Medicine, Ain Shams University", + "ror_ids": [ + "https://ror.org/00cb9w016" + ] + }, + { + "affiliation": "Laboratory of Immunoregulation, National Institute of Allergy and Infectious Diseases, National Institutes of Health, Bethesda, MD 20892, USA.", + "ror_ids": [ + "https://ror.org/043z4tv69", + "https://ror.org/01cwqze88" + ] + }, + { + "affiliation": "Department of Anatomy & Neurobiology, University of Tennessee atMemphis 38163, USA.", + "ror_ids": [ + "https://ror.org/020f3ap87" + ] + }, + { + "affiliation": "University of Central Florida Orlando, Florida 32816-1250", + "ror_ids": [ + "https://ror.org/036nfer12" + ] + }, + { + "affiliation": "University of Nebraska, Lincoln, NE, USA,", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "a School of Mathematics and Statistics , The University of Sydney , N.S.W , 2006 , Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Bengbu Naval Petty Officer Academy", + "ror_ids": [] + }, + { + "affiliation": "Department of Cardiothoracic Surgery Centro Hospitalar Universitário S. João Porto Portugal", + "ror_ids": [] + }, + { + "affiliation": "Dep. of Crop and Agro‐Environmental Sciences Univ. of Puerto Rico, Recinto Universitario de Mayagüez Call Box 9000 Mayagüez Puerto Rico 00681‐9000", + "ror_ids": [ + "https://ror.org/00wek6x04" + ] + }, + { + "affiliation": "Institute of Advanced Material Study, Kyushu University 86, Kasuga 816, Japan", + "ror_ids": [ + "https://ror.org/00p4k0j84" + ] + }, + { + "affiliation": "Department of Materials Engineering and Chemistry, Faculty of Civil Engineering, Czech Technical University in Prague, Thákurova 7, 166 29 Prague 6, Czech Republic", + "ror_ids": [ + "https://ror.org/03kqpb082" + ] + }, + { + "affiliation": "Department of Metal Processing Engineering, Kyushu Institute of Technology", + "ror_ids": [ + "https://ror.org/02278tr80" + ] + }, + { + "affiliation": "Keck School of Medicine, University of Southern California, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "Professor Emeritus, Wright State University School of Medicine, Department of Surgery, Dayton, Ohio", + "ror_ids": [ + "https://ror.org/04qk6pt94" + ] + }, + { + "affiliation": "School of Computing and Intelligent Systems, Faculty of Informatics, University of Ulster,", + "ror_ids": [ + "https://ror.org/01yp9g959" + ] + }, + { + "affiliation": "Freshwater Fisheries Research Center; Chinese Academy of Fishery Science; Wuxi China", + "ror_ids": [ + "https://ror.org/02bwk9n38" + ] + }, + { + "affiliation": "Hohai University, Nanjing City, Jiangsu, China", + "ror_ids": [ + "https://ror.org/01wd4xt90" + ] + }, + { + "affiliation": "Campion Advocacy Fund", + "ror_ids": [] + }, + { + "affiliation": "Meteorological Research Institute", + "ror_ids": [ + "https://ror.org/031gqrq04" + ] + }, + { + "affiliation": "Department of Biology The Pennsylvania State University University Park PA 16802 USA", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "School of Natural and Environmental Sciences, Newcastle University, Newcastle-upon-Tyne, UK", + "ror_ids": [ + "https://ror.org/01kj2bm70" + ] + }, + { + "affiliation": "James Madison University", + "ror_ids": [ + "https://ror.org/028pmsz77" + ] + }, + { + "affiliation": "Yasouj University", + "ror_ids": [ + "https://ror.org/05sy5hm57" + ] + }, + { + "affiliation": "Institut für Festkörperphysik, Technische Universität Berlin, Hardenbergstrasse 36, D-10623 Berlin, Germany", + "ror_ids": [ + "https://ror.org/03v4gjf40" + ] + }, + { + "affiliation": "The University of Hong Kong", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "University of Idaho", + "ror_ids": [ + "https://ror.org/03hbp5t65" + ] + }, + { + "affiliation": "Institut de Cardiologie,Sorbonne Université Hôpital Pitié–Salpêtrière, andParis, France", + "ror_ids": [ + "https://ror.org/02en5vm52" + ] + }, + { + "affiliation": "IES Montpellier", + "ror_ids": [] + }, + { + "affiliation": "University of British Columbia, McDonald Research Laboratory,/iCAPTURE Centre, St. Paul's Hospital, Vancouver, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20", + "https://ror.org/00wzdr059" + ] + }, + { + "affiliation": "Oncology-Hematology, University, Palermo, Italy", + "ror_ids": [ + "https://ror.org/044k9ta02" + ] + }, + { + "affiliation": "Division of Vascular and Interventional Radiology, Department of Diagnostic Radiology and Nuclear Medicine, University of Maryland School of Medicine, Baltimore, Maryland", + "ror_ids": [ + "https://ror.org/04rq5mt64" + ] + }, + { + "affiliation": "Department of Otolaryngology Icahn School of Medicine at Mount Sinai New York New York", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "School of Psychology University of Nottingham UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Toshiba Corporation, Yokohama, Japan", + "ror_ids": [ + "https://ror.org/0326v3z14" + ] + }, + { + "affiliation": "Department of History Tufts University Medford, MA 02155, USA", + "ror_ids": [ + "https://ror.org/05wvpxv85" + ] + }, + { + "affiliation": "Tufts University, USA", + "ror_ids": [ + "https://ror.org/05wvpxv85" + ] + }, + { + "affiliation": "Universidade de Brasília, Brazil", + "ror_ids": [ + "https://ror.org/02xfp8v59" + ] + }, + { + "affiliation": "School of Psychology University of Minho Braga Portugal", + "ror_ids": [ + "https://ror.org/037wpkx04" + ] + }, + { + "affiliation": "Southeast University", + "ror_ids": [] + }, + { + "affiliation": "The Department of Politics & Government, Ben-Gurion University of the Negev, Beer-Sheva, Israel", + "ror_ids": [ + "https://ror.org/05tkyf982" + ] + }, + { + "affiliation": "Ochsner Health System, New Orleans, LA, USA", + "ror_ids": [ + "https://ror.org/003ngne20" + ] + }, + { + "affiliation": "CEFAC - Consultoria em Fonoaudiologia Clínica, Brasil", + "ror_ids": [] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biophysics", + "ror_ids": [] + }, + { + "affiliation": "Ohio University", + "ror_ids": [ + "https://ror.org/01jr3y717" + ] + }, + { + "affiliation": "Neubiberg", + "ror_ids": [] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Seoul National University College of Medicine, Seoul National University Bundang Hospital, Seongnam, Republic of Korea.", + "ror_ids": [ + "https://ror.org/00cb3km46" + ] + }, + { + "affiliation": "Trinity College, Cambridge", + "ror_ids": [] + }, + { + "affiliation": "Hitachi Lighting LTD.", + "ror_ids": [ + "https://ror.org/02exqgm79" + ] + }, + { + "affiliation": "Long Itchington, Warwickshire", + "ror_ids": [] + }, + { + "affiliation": "Department of Bioinformatics School of life Sciences and technology Tongji University Shanghai China", + "ror_ids": [ + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "Music consultant for the Indiana Department of Education.", + "ror_ids": [ + "https://ror.org/03k25vb36" + ] + }, + { + "affiliation": "School of Pharmacy, Swami Ramanand Teerth Marathwada University, Nanded, Maharashtra, India", + "ror_ids": [ + "https://ror.org/03nevd013" + ] + }, + { + "affiliation": "Division of Nephrology, Hypertension and Renal Transplantation University of Florida Gainesville Florida", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Saint Petersburg University", + "ror_ids": [ + "https://ror.org/023znxa73" + ] + }, + { + "affiliation": "Union Carbide Research Institute, P.O. Box 324, Tuxedo, New York", + "ror_ids": [ + "https://ror.org/04hj96d73" + ] + }, + { + "affiliation": "Section of Clinical Biochemistry and School of Medicine , University of Verona , Verona , Italy", + "ror_ids": [ + "https://ror.org/039bp8j42" + ] + }, + { + "affiliation": "Department of Pediatrics, Division of Medical Genetics, Stanford University, Stanford, CA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "University of Cambridge", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Department of Psychiatry and Behavioral Sciences, University of Louisville School of Medicine, Louisville, KY, USA", + "ror_ids": [ + "https://ror.org/01ckdn478" + ] + }, + { + "affiliation": "Semiconductor Manufacturing International Corporation,Shanghai,China", + "ror_ids": [ + "https://ror.org/03tf9y485" + ] + }, + { + "affiliation": "Stem Cell Transplantation Program, Department I of Internal Medicine, University Hospital of Cologne, Kerpener Straße 62, D-50937, Cologne, Germany", + "ror_ids": [ + "https://ror.org/05mxhda18" + ] + }, + { + "affiliation": "Council for the Study of Productive Forces", + "ror_ids": [] + }, + { + "affiliation": "NEC Laboratories", + "ror_ids": [] + }, + { + "affiliation": "Washington State University Tree Fruit Research and Extension Center 1100 N. Western Avenue Wenatchee, WA 98801 509-663-8181", + "ror_ids": [ + "https://ror.org/05dk0ce17" + ] + }, + { + "affiliation": "Department of Molecular Microbiology and Immunology, University of Missouri Medical School, Columbia, Missouri 65212", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "Organic and Biological Mass Spectrometry Group, Chemical Sciences Division, Oak Ridge National Laboratory, Oak Ridge, Tennessee 37831-6131", + "ror_ids": [ + "https://ror.org/01qz5mb56" + ] + }, + { + "affiliation": "Universidade Estadual de Maringá, Brasil", + "ror_ids": [ + "https://ror.org/04bqqa360" + ] + }, + { + "affiliation": "Offshore Oil Engineering (Qingdao) Co. Ltd.", + "ror_ids": [] + }, + { + "affiliation": "Molecular Enzymology Group Groningen Institute of Biomolecular Sciences and Biotechnology University of Groningen Nijenborgh 4 9747 AG Groningen The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "1Channing Laboratory, Department of Medicine and", + "ror_ids": [] + }, + { + "affiliation": "Sandia National Laboratories, Albuquerque, New Mexico 87185", + "ror_ids": [ + "https://ror.org/01apwpt12" + ] + }, + { + "affiliation": "University College London", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Fraunhofer Fokus, Germany", + "ror_ids": [ + "https://ror.org/00px80p03" + ] + }, + { + "affiliation": "Department of Geriatric Medicine University of Oklahoma Health Science Center Oklahoma City OK United States", + "ror_ids": [ + "https://ror.org/0457zbj98", + "https://ror.org/02aqsxs83" + ] + }, + { + "affiliation": "Faculty of Medicine, Belgrade, Serbia", + "ror_ids": [] + }, + { + "affiliation": "Department of Ophthalmology, College of Medicine, Pusan National University, Pusan, Korea.", + "ror_ids": [ + "https://ror.org/01an57a31" + ] + }, + { + "affiliation": "Cornell University, Ithaca, NY, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Pathology and Laboratory Medicine, University of Kansas Medical Center , Kansas City, MO , USA", + "ror_ids": [ + "https://ror.org/036c9yv20" + ] + }, + { + "affiliation": "University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry, University of California at Los Angeles, Los Angeles, California 90025-1569", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "New York, N. Y.", + "ror_ids": [] + }, + { + "affiliation": "School of Sport, Exercise and Rehabilitation Sciences, College of Life and Environmental Sciences University of Birmingham Birmingham UK", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "From the Physiological Laboratory of Washington University, St. Louis", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Dipartimento di Ingegneria Civile Ambientale Aerospaziale dei Materiali Università di Palermo Viale delle Scienze 90128 Palermo Italy", + "ror_ids": [ + "https://ror.org/044k9ta02" + ] + }, + { + "affiliation": "Universidad Simón Bolívar, Caracas, Venezuela", + "ror_ids": [ + "https://ror.org/01ak5cj98" + ] + }, + { + "affiliation": "Simon Fraser University-SIAT, Surrey, BC, Canada", + "ror_ids": [ + "https://ror.org/0213rcc28" + ] + }, + { + "affiliation": "Lancaster, UK", + "ror_ids": [] + }, + { + "affiliation": "Laboratoire de Mathématiques Appliquées (LMA), Department of Mathematics University of Annaba Annaba Algeria", + "ror_ids": [ + "https://ror.org/03sf55932" + ] + }, + { + "affiliation": "Department of Preventive Medicine, Feinberg School of Medicine, Northwestern University, Chicago, Illinois, U.S.A.", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "University of Technology, Sydney, School of Management, Faculty of Business, Australia", + "ror_ids": [ + "https://ror.org/03f0f6041" + ] + }, + { + "affiliation": "Hungkuang University, Taichung, Taiwan;", + "ror_ids": [ + "https://ror.org/02f2vsx71" + ] + }, + { + "affiliation": "Industrial Technology Research Institute, Green Energy and Environment Research Laboratories, Tainan City 71150, Taiwan.(corresponding author); .", + "ror_ids": [ + "https://ror.org/05szzwt63" + ] + }, + { + "affiliation": "Centre sur le handicap et l'intégration, School of Economics and Political Science Université de Saint‐Gall", + "ror_ids": [ + "https://ror.org/0561a3s31" + ] + }, + { + "affiliation": "From the Fred Hutchinson Cancer Research Center, Seattle, WA; and the University of Washington School of Medicine, Seattle.", + "ror_ids": [ + "https://ror.org/00cvxb145", + "https://ror.org/007ps6h72" + ] + }, + { + "affiliation": "Diabetes Association of Greater Cleveland and the departments of Medicine and Biometry, Case Western Reserve University Cleveland, Ohio", + "ror_ids": [ + "https://ror.org/051fd9666" + ] + }, + { + "affiliation": "Universidade Federal do Pará", + "ror_ids": [ + "https://ror.org/03q9sr818" + ] + }, + { + "affiliation": "Nottingham Law School, The Nottingham Trent University", + "ror_ids": [ + "https://ror.org/04xyxjd90" + ] + }, + { + "affiliation": "Department of Chemistry, ‡Institute of Materials\nScience, University of Connecticut, U-3060, 55 North Eagleville Road, Storrs, Connecticut 06269 United States", + "ror_ids": [ + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "Hefei University of Technology,School of Computer and Information,Hefei,China", + "ror_ids": [ + "https://ror.org/02czkny70" + ] + }, + { + "affiliation": "Nantes Université, CNRS, CEISAM UMR 6230, Nantes F-44000, France", + "ror_ids": [ + "https://ror.org/03gnr7b55", + "https://ror.org/02feahw73", + "https://ror.org/04ysg2a58" + ] + }, + { + "affiliation": "K Nixon-Cave, PT, PhD, PCS, is Associate Professor, University of the Sciences in Philadelphia, and Physical Therapy Manager, Children's Hospital of Philadelphia.", + "ror_ids": [ + "https://ror.org/048gmay44", + "https://ror.org/01z7r7q48" + ] + }, + { + "affiliation": "Department of Surgery and Sciences Kyusyu University Fukuoka Japan", + "ror_ids": [ + "https://ror.org/00p4k0j84" + ] + }, + { + "affiliation": "Division of Geriatrics and Gerontology, Kaohsiung Medical University Hospital, Kaohsiung, Taiwan,", + "ror_ids": [ + "https://ror.org/02xmkec90" + ] + }, + { + "affiliation": "Biomedical Engineering Center for Clinical Instrumentation and Department of Aeronautics and Astronautics Massachusetts Institute of Technology Cambridge, Massachusetts", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Division of Engineering in Nutrition Faculty of Human Nutrition and Consumer Sciences Warsaw University of Life Sciences Nowoursynowska 159c Warsaw 02‐776 Poland", + "ror_ids": [ + "https://ror.org/05srvzs48" + ] + }, + { + "affiliation": "From the Departments of Surgery (Urology) and Medicine (Renal Disease), University of Colorado Health Sciences Center, Denver, Colorado", + "ror_ids": [ + "https://ror.org/0107w4315" + ] + }, + { + "affiliation": "Polissia National University", + "ror_ids": [ + "https://ror.org/044tay155" + ] + }, + { + "affiliation": "Sophia University", + "ror_ids": [ + "https://ror.org/01nckkm68" + ] + }, + { + "affiliation": "Department of Parasitology, College of Medicine, Inha University", + "ror_ids": [ + "https://ror.org/01easw929" + ] + }, + { + "affiliation": "Research Center for Advanced Science and Technology, University of Tokyo, 4-6-1 Komaba, Meguro-ku, Tokyo 153, Japan", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Biocrystallography, KU Leuven, Herestraat 49, box 822, 3000 Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Department of Biochemistry, Tohoku University School of Medicine Sendai 980, Miyagi, Japan", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "Technical University Ilmenau Institute for Micro- and Nanotechnologies, , Kirchhoffstr. 7, 98693 Ilmenau, Germany", + "ror_ids": [ + "https://ror.org/01weqhp73" + ] + }, + { + "affiliation": "茨城大学 地球・地域環境共創機構", + "ror_ids": [] + }, + { + "affiliation": "Australia", + "ror_ids": [] + }, + { + "affiliation": "College of Science and Engineering, Ritsumeikan University", + "ror_ids": [ + "https://ror.org/0197nmd03" + ] + }, + { + "affiliation": "Senior Director of Geotechnical Engineering, Newmont Mining Corporation, , Denver, CO USA", + "ror_ids": [ + "https://ror.org/05a10ec77" + ] + }, + { + "affiliation": "School of Chemistry, University of Bristol, Cantock's Close, Bristol BS8 1TS, U.K., and AstraZeneca UK Ltd., Mereside, Alderley Park, Macclesfield SK10 4TG, U.K.", + "ror_ids": [ + "https://ror.org/0524sp257", + "https://ror.org/04r9x1a08" + ] + }, + { + "affiliation": "University of Tennessee", + "ror_ids": [ + "https://ror.org/020f3ap87" + ] + }, + { + "affiliation": "Department of Communication Science & Disorders at the University of Vermont in Burlington", + "ror_ids": [ + "https://ror.org/0155zta11" + ] + }, + { + "affiliation": "Kunming University of Science and Technology", + "ror_ids": [ + "https://ror.org/00xyeez13" + ] + }, + { + "affiliation": "Associate Professor, Pathology, American International Institute of Medical Sciences, Udaipur.", + "ror_ids": [] + }, + { + "affiliation": "Tallinn University of Technology,Department of Computer Systems,Estonia", + "ror_ids": [ + "https://ror.org/0443cwa12" + ] + }, + { + "affiliation": "St Christopher's Hospice, Sydenham, United Kingdom", + "ror_ids": [ + "https://ror.org/01zkhn749" + ] + }, + { + "affiliation": "Universidade Federal de Santa Catarina, Brasil", + "ror_ids": [ + "https://ror.org/041akq887" + ] + }, + { + "affiliation": "Institute of Physics, Polish Academy of Sciences, al. Lotników 32/46, 02-668 Warszawa, Poland", + "ror_ids": [ + "https://ror.org/01dr6c206", + "https://ror.org/000sfad56" + ] + }, + { + "affiliation": "Northwestern Univ, Chicago, IL", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "7VSOLJ, 124 Isatotyo, Teradani, Kumano, Mie 519-4673", + "ror_ids": [] + }, + { + "affiliation": "University of Delaware", + "ror_ids": [ + "https://ror.org/01sbq1a82" + ] + }, + { + "affiliation": "The Catholic University of America", + "ror_ids": [ + "https://ror.org/047yk3s18" + ] + }, + { + "affiliation": "Patient Safety Switzerland | SWITZERLAND", + "ror_ids": [] + }, + { + "affiliation": "Department\nof Chemical and Biological Engineering, Iowa State University, Ames, Iowa 50011, United States", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "Tomson Technologies", + "ror_ids": [] + }, + { + "affiliation": "From the Stanford University School of Medicine, California.", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Murdoch University, Australia", + "ror_ids": [ + "https://ror.org/00r4sry34" + ] + }, + { + "affiliation": "Tennessee Retina, Nashville, Tennessee, USA", + "ror_ids": [ + "https://ror.org/055papc77" + ] + }, + { + "affiliation": "Department of Engineering and Agricultural Sciences Universidad de León León, 24071 Spain", + "ror_ids": [ + "https://ror.org/02tzt0b78" + ] + }, + { + "affiliation": "Department of Chemistry, University College London, London WC1H 0AJ, United Kingdom", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Karlsruhe Institute of Technology (KIT),Intelligent Process Automation and Robotics Lab, Institute of Anthropomatics and Robotics (IAR-IPR),Karlsruhe,Germany,76131", + "ror_ids": [ + "https://ror.org/04t3en479" + ] + }, + { + "affiliation": "Biomedical Engineering, Tohoku University, Sendai, Japan", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "Center for Biological Resource Recovery, University of Georgia, Athens 30602.", + "ror_ids": [ + "https://ror.org/00te3t702" + ] + }, + { + "affiliation": "Professor; Computer Science Department, Katholieke Universiteit Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Division of Metabolism, Endocrinology and Diabetes University of Michigan Medical Center Ann Arbor MI USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "100 Pacific Street, Cambridge, MA 02139, USA", + "ror_ids": [] + }, + { + "affiliation": "Iowa City, Iowa", + "ror_ids": [] + }, + { + "affiliation": "University of Warwick", + "ror_ids": [ + "https://ror.org/01a77tt86" + ] + }, + { + "affiliation": "Department of Cardiology, Renmin Hospital of Wuhan University, Wuhan 430060, China", + "ror_ids": [ + "https://ror.org/03ekhbz91" + ] + }, + { + "affiliation": "Dairy Research Institute/National Dairy Council Rosemont IL", + "ror_ids": [] + }, + { + "affiliation": "Geisinger Clinic Cardiology, Danville, PA", + "ror_ids": [] + }, + { + "affiliation": "Technological Institute of Aeronautics (ITA)", + "ror_ids": [ + "https://ror.org/05vh67662" + ] + }, + { + "affiliation": "Division of Colorectal Surgery Department of Surgery New York University Langone Health New York University Langone Medical Center 530 1st Avenue suite 7V New York NY 10016 USA", + "ror_ids": [ + "https://ror.org/005dvqh91" + ] + }, + { + "affiliation": "University of Liverpool Management School, University of Liverpool, Liverpool, United Kingdom;", + "ror_ids": [ + "https://ror.org/04xs57h96" + ] + }, + { + "affiliation": "Department of Manufacturing Technology, Purdue School of Engineering and Technology, Indiana University-Purdue University at Indianapolis,799 West Michigan Street, Room 301G, Indianapolis, IN 46202", + "ror_ids": [ + "https://ror.org/0482ksk80", + "https://ror.org/01kg8sb98" + ] + }, + { + "affiliation": "Hamilton College", + "ror_ids": [ + "https://ror.org/05709zb94" + ] + }, + { + "affiliation": "Vologda Research Center of the Russian Academy of Sciences, Vologda, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Centre for Integrative Neuroscience and Neurodynamics, School of Psychology and Clinical Language Sciences University of Reading Reading UK", + "ror_ids": [ + "https://ror.org/05v62cm79" + ] + }, + { + "affiliation": "Stanford University", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "San Francisco State College", + "ror_ids": [ + "https://ror.org/05ykr0121" + ] + }, + { + "affiliation": "Network of Immunity in Infection, Malignancy and Autoimmunity (NIIMA), Universal Scientific Education and Research Network (USERN), Tehran, Iran", + "ror_ids": [ + "https://ror.org/01n71v551" + ] + }, + { + "affiliation": "Community Health Care Systems Development School of Nursing Oregon Health Sciences University Portland, Oregon", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Department of Cardiology, National Heart Centre, Singapore.", + "ror_ids": [ + "https://ror.org/04f8k9513" + ] + }, + { + "affiliation": "Faculty of Physical Chemistry, Belgrade", + "ror_ids": [] + }, + { + "affiliation": "Department of Physiology School of Medicine , University of Maryland , Baltimore, Baltimore, MD 21201", + "ror_ids": [ + "https://ror.org/04rq5mt64" + ] + }, + { + "affiliation": "1 Department of Literature, University of Dar es Salaam, Tanzania", + "ror_ids": [ + "https://ror.org/0479aed98" + ] + }, + { + "affiliation": "Institute of Archaeology and Ethnography NAS RA", + "ror_ids": [] + }, + { + "affiliation": "Organization, Copenhagen Business School", + "ror_ids": [ + "https://ror.org/04sppb023" + ] + }, + { + "affiliation": "Julius-Maximilians-Universität Würzburg, HNO Würzburg", + "ror_ids": [ + "https://ror.org/00fbnyb24" + ] + }, + { + "affiliation": "Beijing University of Civil Engineering and Architecture", + "ror_ids": [ + "https://ror.org/02yj0p855" + ] + }, + { + "affiliation": "Faculty of Science, Omar Al-Mukhtar University , Al Bayda , Libya", + "ror_ids": [ + "https://ror.org/01wykm490" + ] + }, + { + "affiliation": "University of Pennsylvania, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Beijing Normal University", + "ror_ids": [ + "https://ror.org/022k4wk35" + ] + }, + { + "affiliation": "The University of Texas at Austin.", + "ror_ids": [ + "https://ror.org/00hj54h04" + ] + }, + { + "affiliation": "University of Alabama, Huntsville", + "ror_ids": [ + "https://ror.org/02zsxwr40" + ] + }, + { + "affiliation": "Idaho National Laboratory, 1955 Freemont Avenue, Idaho Falls, Idaho 83415", + "ror_ids": [ + "https://ror.org/00ty2a548" + ] + }, + { + "affiliation": "Living with Disability Research Centre, La Trobe University, Bundoora, Australia", + "ror_ids": [ + "https://ror.org/01rxfrp27" + ] + }, + { + "affiliation": "Northeast Normal University", + "ror_ids": [ + "https://ror.org/02rkvz144" + ] + }, + { + "affiliation": "Kings College Hospital NHS Foundation Trust , London , United Kingdom", + "ror_ids": [ + "https://ror.org/01n0k5m85" + ] + }, + { + "affiliation": "Department of Management and Marketing and Potash Corp Centre, Edwards School of Business, University of Saskatchewan, 25 Campus Drive, Saskatoon, SK, Canada S7N 5A7", + "ror_ids": [ + "https://ror.org/010x8gc63" + ] + }, + { + "affiliation": "School of Information and Communication Engineering, Hainan University, Haikou 570100, China", + "ror_ids": [ + "https://ror.org/03q648j11" + ] + }, + { + "affiliation": "Department of Computer Science, Stanford University, Stanford, California 94305", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Biophysics Unit, Department de Ciències Fisiològuiques II, IDIBELL-University of Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/021018s57" + ] + }, + { + "affiliation": "PetroChina Research Institute of Petroleum Exploration and Development, Beijing, China", + "ror_ids": [ + "https://ror.org/02awe6g05" + ] + }, + { + "affiliation": "Dep. of Soil and Environmental Sciences Univ. of California Riverside CA 92521", + "ror_ids": [ + "https://ror.org/03nawhv43" + ] + }, + { + "affiliation": "Scientia corp.", + "ror_ids": [] + }, + { + "affiliation": "Electrical Engineering Department, Soongsil University", + "ror_ids": [ + "https://ror.org/017xnm587" + ] + }, + { + "affiliation": "Department of Mathematics, Sahand University of Technology, Tabriz, Iran.", + "ror_ids": [ + "https://ror.org/03wdrmh81" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, University of California, San Francisco, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Teachers College, Columbia University, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "Creighton University, Omaha", + "ror_ids": [ + "https://ror.org/05wf30g94" + ] + }, + { + "affiliation": "Medicinal Chemistry Division, P.E.S. College of Pharmacy", + "ror_ids": [] + }, + { + "affiliation": "Cardiac nurse consultant in Harrow PCT's primary care-based cardiology service", + "ror_ids": [] + }, + { + "affiliation": "Department of Physics, Islamia College University, Peshawar, Pakistan", + "ror_ids": [ + "https://ror.org/02p2c1595" + ] + }, + { + "affiliation": "CSIRO Agriculture and Food Canberra Australia", + "ror_ids": [ + "https://ror.org/03n17ds51", + "https://ror.org/03qn8fb07" + ] + }, + { + "affiliation": "Albert-Ludwigs-Universitat, Bertoldstr. 17, 79098 Freiburg", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "Fairfield University", + "ror_ids": [ + "https://ror.org/04z49n283" + ] + }, + { + "affiliation": "Copenhagen Business School; Norwegian Institute of International Affairs", + "ror_ids": [ + "https://ror.org/01pznaa94", + "https://ror.org/04sppb023" + ] + }, + { + "affiliation": "Biological Sciences California State University Long Beach Long Beach CA United States", + "ror_ids": [ + "https://ror.org/0080fxk18" + ] + }, + { + "affiliation": "a School of Policy Studies, Politics and Social Research , University of North London , Ladbroke House, 62–66 Highbury Grove, London , N5 2AD , UK", + "ror_ids": [] + }, + { + "affiliation": "University of Medicine and Pharmacy Tirgu Mures, Romania", + "ror_ids": [ + "https://ror.org/03gwbzf29" + ] + }, + { + "affiliation": "Northwestern University, Department of Biomedical Engineering, Evanston, Illinois", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Department of Civil Engineering, Faculty of Engineering, University of Zanjan, Zanjan, Iran", + "ror_ids": [ + "https://ror.org/05e34ej29" + ] + }, + { + "affiliation": "Dynamic Photomechanics Laboratory, Department of Mechanical Engineering and Applied Mechanics, University of Rhode Island, Kingston, RI 02881", + "ror_ids": [ + "https://ror.org/013ckk937" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, University of California Santa Cruz, Santa Cruz, CA 95064, USA", + "ror_ids": [ + "https://ror.org/03s65by71" + ] + }, + { + "affiliation": "College of Computer Science, Sichuan University, Chengdu, China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "School of Digital Humanities and Computational Social Sciences, Korea Advanced Institute of Science and Technology, Daejeon, Korea", + "ror_ids": [ + "https://ror.org/05apxxy63" + ] + }, + { + "affiliation": "Heriot-Watt University, UK", + "ror_ids": [ + "https://ror.org/04mghma93" + ] + }, + { + "affiliation": "University College London, London United Kingdom", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Shahid Beheshti University,Tehran,Iran", + "ror_ids": [ + "https://ror.org/0091vmj44" + ] + }, + { + "affiliation": "Vanderbilt University, USA", + "ror_ids": [ + "https://ror.org/02vm5rt34" + ] + }, + { + "affiliation": "Department of Cancer Immunology and AIDS, Dana-Farber Cancer Institute, Boston, MA 02115; and", + "ror_ids": [ + "https://ror.org/02jzgtq86" + ] + }, + { + "affiliation": "TU Wien,Christian Doppler Laboratory for Innovative, Control and Monitoring of Automative Powertrain Systems,Vienna,Austria", + "ror_ids": [ + "https://ror.org/04d836q62" + ] + }, + { + "affiliation": "School of Economy and Management, ShiHezi University, Shihezi Xinjiang, China", + "ror_ids": [ + "https://ror.org/04x0kvm78" + ] + }, + { + "affiliation": "Dept. of Chemical Engineering American University of Sharjah Sharjah United Arab Emirates", + "ror_ids": [ + "https://ror.org/001g2fj96" + ] + }, + { + "affiliation": "Rome, Italy", + "ror_ids": [] + }, + { + "affiliation": "Università degli Studi di Ferrara, Dipartamento di Fisica e Scienze della Terra, Via Saragat 1, 44122 Ferrara, Italy", + "ror_ids": [ + "https://ror.org/041zkgm14" + ] + }, + { + "affiliation": "Department of Materials Science, Feng Chia University, Taichung, Taiwan, Republic of China", + "ror_ids": [ + "https://ror.org/05vhczg54" + ] + }, + { + "affiliation": "Center for Global Health, National Cancer Institute, Rockville, MD", + "ror_ids": [ + "https://ror.org/02e5dc168" + ] + }, + { + "affiliation": "Department of Mathematics, College of Sciences, King Saud University, P. O. Box 2455, Riyadh 11451, Saudi Arabia", + "ror_ids": [ + "https://ror.org/02f81g417" + ] + }, + { + "affiliation": "Department of Geriatric and Environmental Dermatology Nagoya City University Graduate School of Medical Sciences Nagoya Japan", + "ror_ids": [ + "https://ror.org/04wn7wc95" + ] + }, + { + "affiliation": "Department of Chemistry, University of Washington, Seattle, Washington 98195, Department of Physics, University of Notre Dame, Notre Dame, Indiana 46556, and Department of Physics, Korea University, Seoul 136-701, Republic of Korea", + "ror_ids": [ + "https://ror.org/00mkhxb43", + "https://ror.org/00cvxb145", + "https://ror.org/047dqcg40" + ] + }, + { + "affiliation": "Department of General Surgery, Beibei Traditional Chinese Medical Hospital, Chongqing, China", + "ror_ids": [] + }, + { + "affiliation": "Indian Institute of Technology Madras", + "ror_ids": [ + "https://ror.org/03v0r5n49" + ] + }, + { + "affiliation": "Hathaiporn Samorn and Chalatpon Boonmeelapprasert, SPE, Chevron", + "ror_ids": [ + "https://ror.org/02jfa8730" + ] + }, + { + "affiliation": "Nizhnevartovsk State University, Department for Russian History and Documentation Studies", + "ror_ids": [ + "https://ror.org/02jamnw30" + ] + }, + { + "affiliation": "College of Veterinary Medicine, School of Veterinary and Life Sciences Murdoch University Murdoch Western Australia 6150", + "ror_ids": [ + "https://ror.org/00r4sry34" + ] + }, + { + "affiliation": "Department of Orthopaedics, Center for Musculoskeletal Surgery, Charité – University Medicine Berlin, Charitéplatz 1, 10117 Berlin, Germany", + "ror_ids": [ + "https://ror.org/001w7jn25" + ] + }, + { + "affiliation": "Mobay Corporation, Mobay Road, Pittsburgh, PA 15205", + "ror_ids": [] + }, + { + "affiliation": "Public Affairs Officer", + "ror_ids": [] + }, + { + "affiliation": "Key Laboratory for Colloid & Interface Chemistry of Education Ministry", + "ror_ids": [] + }, + { + "affiliation": "School of Economics and Management, Xi'an University of Technology, City College of Xi'an Jiaotong University, Xi'an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/038avdt50", + "https://ror.org/017zhmm22" + ] + }, + { + "affiliation": "Atmospheric and Oceanic Sciences, McGill University, Montreal, Quebec, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Universidade de Brasília, Brasil", + "ror_ids": [ + "https://ror.org/02xfp8v59" + ] + }, + { + "affiliation": "Department of Physics, University of Aveiro, 3810-131 Aveiro, Portugal", + "ror_ids": [ + "https://ror.org/00nt41z93" + ] + }, + { + "affiliation": "Physiological InstituteUniversity of MelbourneMelbourne", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Beijing Institute of Technology,zhuhai, China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "Department of Mining Engineering, Luliang University, Lvliang, Shanxi, China", + "ror_ids": [ + "https://ror.org/05495v729" + ] + }, + { + "affiliation": "Life Sciences Institute and Department of Molecular, Cellular and Developmental Biology, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, University of British Columbia, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "School of Psychology, University of East Anglia, Norwich, UK", + "ror_ids": [ + "https://ror.org/026k5mg93" + ] + }, + { + "affiliation": "Environment Canada, Wastewater Technology Centre, P.O. Box 5050, Burlington, Ontario L7R 4A6, Canada", + "ror_ids": [] + }, + { + "affiliation": "Ghent University, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Menzies School of Health Research", + "ror_ids": [ + "https://ror.org/006mbby82" + ] + }, + { + "affiliation": "University Carlos III of Madrid, Spain", + "ror_ids": [ + "https://ror.org/03ths8210" + ] + }, + { + "affiliation": "School of Automation, Image Processing and Intelligent Control Key Laboratory of Education Ministry of China; Huazhong University of Science and Technology; Luoyu Road 1037 Wuhan 430074 China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Univ. Estadual Paulista, Brasil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Department of Pharmacology Tohoku University Sendai Japan", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "308 South Rodeo Drive Beverly Hills, CA 90212,", + "ror_ids": [] + }, + { + "affiliation": "Nagaoka University of Technology", + "ror_ids": [ + "https://ror.org/00ys1hz88" + ] + }, + { + "affiliation": "Department of Endocrine and Breast Surgery, First Affiliated Hospital of Chongqing Medical University, Chongqing, China", + "ror_ids": [ + "https://ror.org/033vnzz93" + ] + }, + { + "affiliation": "Northeastern University, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/04t5xt781" + ] + }, + { + "affiliation": "From Department of Neurology (A.K., K.G., J.B.S.), University of Tübingen, Germany; Department of Neurology (A.K., K.G.), University of Jena, Germany; Department of Neuroradiology (T.N., U.E.), University of Tübingen, Germany.", + "ror_ids": [ + "https://ror.org/03a1kwz48" + ] + }, + { + "affiliation": "Division of Research, Kaiser Permanente Northern California, Oakland, CA", + "ror_ids": [ + "https://ror.org/00t60zh31" + ] + }, + { + "affiliation": "Department of Electrical Engineering, City University of Hong Kong, Hong Kong", + "ror_ids": [ + "https://ror.org/03q8dnn23" + ] + }, + { + "affiliation": "State University of Land Management", + "ror_ids": [] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Beaumont Health, Royal Oak, MI", + "ror_ids": [] + }, + { + "affiliation": "National Bureau of Standards, Washington, D. C.", + "ror_ids": [ + "https://ror.org/05xpvk416" + ] + }, + { + "affiliation": "LIPN-UMR CNRS 7030, PRES Sorbonne Paris Cité, Villetaneuse", + "ror_ids": [ + "https://ror.org/05g1zjw44", + "https://ror.org/00x9ewr78" + ] + }, + { + "affiliation": "Department of Chemistry, University of Stellenbosch, Stellenbosch, South Africa", + "ror_ids": [ + "https://ror.org/05bk57929" + ] + }, + { + "affiliation": "Department of Transport and Logistics, Faculty of Technology, Institute of Technology and Business in České Budějovice , České Budějovice , Czech Republic", + "ror_ids": [ + "https://ror.org/05a70k539" + ] + }, + { + "affiliation": "Université Côte d’Azur, CNRS, INSERM, IRCAN, 06108 Nice, France", + "ror_ids": [ + "https://ror.org/019tgvf94", + "https://ror.org/02vjkv261", + "https://ror.org/00x9ewr78", + "https://ror.org/01td3kv81" + ] + }, + { + "affiliation": "Department of Ophthalmology, Nanjing Drum Tower Hospital, The Affiliated Hospital of Nanjing University Medical School, Nanjing, Jiangsu Province, China", + "ror_ids": [ + "https://ror.org/01rxvg760", + "https://ror.org/026axqv54" + ] + }, + { + "affiliation": "Department of Chemistry, Brown University, Providence, Rhode Island 02912", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "Department of Physical Chemistry and The Fritz Haber Center for Molecular Dynamics, The Hebrew University of Jerusalem, Jerusalem 91904, Israel", + "ror_ids": [ + "https://ror.org/03qxff017" + ] + }, + { + "affiliation": "a Department of Physics , Istanbul Technical University , Maslak, Istanbul , 80626 , Turkey Phone: Fax: E-mail:", + "ror_ids": [ + "https://ror.org/059636586" + ] + }, + { + "affiliation": "University of St. Gallen, St. Gallen, Switzerland", + "ror_ids": [ + "https://ror.org/0561a3s31" + ] + }, + { + "affiliation": "CRS4 - Visual Computing Group", + "ror_ids": [] + }, + { + "affiliation": "University of Wisconsin Hospital and Clinica, madison, WI", + "ror_ids": [ + "https://ror.org/02mqqhj42" + ] + }, + { + "affiliation": "Lecturer in Law, Birmingham Law School, University of Birmingham", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "CSIRO Plant Industry GPO Box 1600 Canberra ACT 2601 Australia", + "ror_ids": [ + "https://ror.org/05jg9pj51", + "https://ror.org/03qn8fb07" + ] + }, + { + "affiliation": "Department of Industrial and Manufacturing Systems Engineering, University of Missouri Columbia, Columbia, Missouri", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "NOAA/National Centers for Environmental Information, Asheville, North Carolina", + "ror_ids": [ + "https://ror.org/04r0wrp59" + ] + }, + { + "affiliation": "Centre d'Immunologie et de Biologie Parasitaire, Unite Mixte INSERM 167- CNRS 624, Institut Pasteur de Lille, France.", + "ror_ids": [ + "https://ror.org/05k9skc85", + "https://ror.org/02vjkv261", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Mathematical Institute, University of Oxford, Oxford, Oxfordshire, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Division of Nephrology, Department of Medicine, Kidney Research Center, Ottawa Hospital Research Institute, University of Ottawa, Ottawa, Ontario, Canada K1H 8L6; and", + "ror_ids": [ + "https://ror.org/03c4mmv16", + "https://ror.org/05jtef216", + "https://ror.org/03c62dg59" + ] + }, + { + "affiliation": "Department of Industrial & Operations. Engineering, University of Michigan, Ann Arbor, Michigan", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Ph.D. Candidate, Dept. of Building and Real Estate, Hong Kong Polytechnic Univ., Hung Hom, Kowloon, Hong Kong, China (corresponding author).", + "ror_ids": [ + "https://ror.org/0030zas98" + ] + }, + { + "affiliation": "School of Mechanical Engineering, Iran University of Science and Technology, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01jw2p796" + ] + }, + { + "affiliation": "Senior lecturer in Advanced Clinical Practice, University of Derby", + "ror_ids": [ + "https://ror.org/02yhrrk59" + ] + }, + { + "affiliation": "Clinical Immunology and Allergy Division University of Sao Paulo School of Medicine São Paulo Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Surgical Sciences, University of Cagliari, Cagliari, Italy.", + "ror_ids": [ + "https://ror.org/003109y17" + ] + }, + { + "affiliation": "Laboratoire de Chimie des Plantes et de Synthèse Organique et Bioorganique, Faculté des Sciences, Université Mohamed V-Agdal, Avenue Ibn Batouta, BP1014, Rabat, Morocco", + "ror_ids": [] + }, + { + "affiliation": "BGP, CNPC", + "ror_ids": [ + "https://ror.org/05269d038" + ] + }, + { + "affiliation": "University of Illinois College of Medicine at Peoria University of Illinois College of Medicine at Peoria Peoria IL United States", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "University of Science and Technology of China,CAS Key Laboratory of Wireless-Optical Communications,Hefei,China,230027", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Old Dominion University, USA", + "ror_ids": [ + "https://ror.org/04zjtrb98" + ] + }, + { + "affiliation": "State Key Laboratory of Multi-phase Complex Systems, Institute of Process Engineering, Chinese Academy of Sciences, Beijing 100190, P. R. China.", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/03j4x9j18" + ] + }, + { + "affiliation": "b Institute of Photonics and Communications, National Kaohsiung University of Applied Sciences, Kaohsiung, Taiwan", + "ror_ids": [ + "https://ror.org/0370v7d46" + ] + }, + { + "affiliation": "Univ. Bretagne Occidentale, GIS Oceanol. Geodynam., Brest, France", + "ror_ids": [ + "https://ror.org/01b8h3982" + ] + }, + { + "affiliation": "Baruch College, CUNY", + "ror_ids": [ + "https://ror.org/023qavy03" + ] + }, + { + "affiliation": "KIRŞEHİR AHİ EVRAN ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/05rrfpt58" + ] + }, + { + "affiliation": "Kathie M. Cole is a clinical nurse III in the cardiac care unit, Anna Gawlinskiis the director of evidence-based practice and an adjunct professor, and Jenny Kotlermanis a statistician at the Medical Center and School of Nursing, University of California, Los Angeles. Neil Steers is an adjunct assistant professor at the David Geffen School of Medicine, University of California, Los Angeles.", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Laboratory of Retrovirology, Department of Medical Biology and BioMed Research Group, Université du Québec à Trois-Rivières, 3351 Boulevard des Forges, Trois-Rivières, Quebec G9A 5H7, Canada", + "ror_ids": [ + "https://ror.org/02xrw9r68" + ] + }, + { + "affiliation": "Key Laboratory of Drug Targeting and Drug Delivery System, Ministry of Education, West China School of Pharmacy, Sichuan University, No. 17, Block 3, Southern Renmin Road, Chengdu 610041, P.R. China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "University of Georgia, United States of America", + "ror_ids": [ + "https://ror.org/00te3t702" + ] + }, + { + "affiliation": "Department of Horticulture, The Ohio State Univ., Columbus, OH 43210", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Tennessee State University", + "ror_ids": [ + "https://ror.org/01fpczx89" + ] + }, + { + "affiliation": "Department of Molecular Mechanisms of Disease, DMMD, University of Zürich, CH-8057 Zürich, Switzerland;", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "2Pathology, University of New Mexico Health Sciences Center, Albuquerque, NM", + "ror_ids": [ + "https://ror.org/05fs6jp91" + ] + }, + { + "affiliation": "University of Exeter Exeter United Kingdom", + "ror_ids": [ + "https://ror.org/03yghzc09" + ] + }, + { + "affiliation": "Department of Radiology The University of Texas Medical School 6431 Fannin Street Houston, TX 77030", + "ror_ids": [ + "https://ror.org/01gek1696" + ] + }, + { + "affiliation": "Boston Combined Residency Program in Pediatrics, Children’s Hospital Boston and Boston Medical Center, Boston, MA 02115, USA.", + "ror_ids": [ + "https://ror.org/00dvg7y05", + "https://ror.org/010b9wj87" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Girijananda Chowdhury Institute of Management and Technology, Guwahati 781017, Assam, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemistry, University of Wisconsin─Madison, 1101 University Avenue, Madison, Wisconsin 53706, United States", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Los Angeles, CA", + "ror_ids": [] + }, + { + "affiliation": "Quantum Electrical Metrology Division National Institute of Standards and Technology 100 Bureau Drive, Stop 817-01 Gaithersburg, MD 20899 USA", + "ror_ids": [ + "https://ror.org/05xpvk416" + ] + }, + { + "affiliation": "Okinawa Institute of Science and Technology Graduate University, Onna, Okinawa 904-0495, Japan", + "ror_ids": [ + "https://ror.org/02qg15b79" + ] + }, + { + "affiliation": "Sarah Cannon Research Institute and Tennessee Oncology, Nashville, TN", + "ror_ids": [ + "https://ror.org/03754ky26", + "https://ror.org/014t21j89" + ] + }, + { + "affiliation": "The University of Oklahoma, Norman, USA", + "ror_ids": [ + "https://ror.org/02aqsxs83" + ] + }, + { + "affiliation": "Medicinal Chemistry and Drug Action, Monash Institute of Pharmaceutical Sciences, Monash University, Parkville, Victoria 3052, Australia", + "ror_ids": [ + "https://ror.org/02bfwt286" + ] + }, + { + "affiliation": "nutriFOODchem Unit, Department of Food Safety and Food\nQuality, Faculty\nof Bioscience Engineering, Ghent University, B-9000 Ghent, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Penn State Extension, Lancaster, PA 17601", + "ror_ids": [] + }, + { + "affiliation": "Professor PhD., „George Enescu” National University of Arts from Iaşi , Romania", + "ror_ids": [ + "https://ror.org/05nxbvr71" + ] + }, + { + "affiliation": "Southeast Missouri State University", + "ror_ids": [ + "https://ror.org/010n41y16" + ] + }, + { + "affiliation": "Visiting Lecturer, Department of English, Ghazi University, Dera Ghazi Khan, Punjab, Pakistan.", + "ror_ids": [ + "https://ror.org/023a7t361" + ] + }, + { + "affiliation": "University of Florida", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Forestry, Forestry Research Institute of Malawi, P.O. Box 270, Zomba, Malawi", + "ror_ids": [ + "https://ror.org/04n3nh595" + ] + }, + { + "affiliation": "Louisiana State University Health Science Center, Shreveport, LA.", + "ror_ids": [ + "https://ror.org/03151rh82" + ] + }, + { + "affiliation": "b Laboratory of Advanced Polymers and Optimized Materials (LAPOM), Department of Materials Science and Engineering and Center for Advanced Research and Technology (CART), University of North Texas, 1150 Union Circle # 305310, Denton, TX 76203-5017, USA;, Email: wbrostow@yahoo.com", + "ror_ids": [ + "https://ror.org/00v97ad02" + ] + }, + { + "affiliation": "1UT Southwestern Medical Ctr., Dallas, TX", + "ror_ids": [ + "https://ror.org/05byvp690" + ] + }, + { + "affiliation": "Indian Institute of Technology, ISM, Dhanbad", + "ror_ids": [ + "https://ror.org/013v3cc28" + ] + }, + { + "affiliation": "School of Education, University of Galway, Galway, Ireland", + "ror_ids": [ + "https://ror.org/03bea9k73" + ] + }, + { + "affiliation": "School of Life Sciences, University of Warwick, Coventry, UK", + "ror_ids": [ + "https://ror.org/01a77tt86" + ] + }, + { + "affiliation": "Department of Systems and Industrial Engineering, University of Arizona, Tucson, Arizona 85721", + "ror_ids": [ + "https://ror.org/03m2x1q45" + ] + }, + { + "affiliation": "Siebein Assoc., Inc., Gainesville, FL", + "ror_ids": [] + }, + { + "affiliation": "Key Laboratory of Molecular Medicine, Ministry of Education, Department of Biochemistry and Molecular Biology Fudan University Shanghai Medical College Shanghai China", + "ror_ids": [ + "https://ror.org/013q1eq08", + "https://ror.org/01zntxs11" + ] + }, + { + "affiliation": "Pacific Gas and Electric Company, San Francisco, Calif.", + "ror_ids": [ + "https://ror.org/05w630g93" + ] + }, + { + "affiliation": "Department of Surgery, College of Medicine, Chosun University, Gwangju, Korea", + "ror_ids": [ + "https://ror.org/01zt9a375" + ] + }, + { + "affiliation": "Hebei Normal University", + "ror_ids": [ + "https://ror.org/004rbbw49" + ] + }, + { + "affiliation": "Dr. David Elkind, Professor of Child Study, Senior Resident Scholar, Tufts University, Lincoln Filene Center for Citizenship and Public Affairs, Medford, MA 02155", + "ror_ids": [ + "https://ror.org/05wvpxv85" + ] + }, + { + "affiliation": "Czech Academy of Sciences, Institute of Organic Chemistry and Biochemistry", + "ror_ids": [ + "https://ror.org/04nfjn472", + "https://ror.org/053avzc18" + ] + }, + { + "affiliation": "Department of Biophysics, Second Military Medical University, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04tavpn47" + ] + }, + { + "affiliation": "Department of Biotechnology, Indian Institute of Technology Guwahati, Guwahati, Assam 781039, India", + "ror_ids": [ + "https://ror.org/0022nd079" + ] + }, + { + "affiliation": "South China University of Technology", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Norwegian Centre for Violence and Traumatic Stress Studies, Oslo, Norway", + "ror_ids": [ + "https://ror.org/01p618c36" + ] + }, + { + "affiliation": "Health Protection Agency, London, UK", + "ror_ids": [] + }, + { + "affiliation": "Kure National Institute of Technology, Kure Hiroshima Japan", + "ror_ids": [ + "https://ror.org/02cndcd59" + ] + }, + { + "affiliation": "Indian Institute of Technology 1 Department of Physics and Meteorology, , Kharagpur, Kharagpur-721 302, India", + "ror_ids": [ + "https://ror.org/03w5sq511" + ] + }, + { + "affiliation": "Rehabilitation 1 team, Yonsei University Health System, Severance Rehabilitation Hospital, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/04sze3c15" + ] + }, + { + "affiliation": "From the Institute for Genetic Medicine, University of Southern California Keck School of Medicine; the Department of Adult Oncology, Dana Farber Cancer Institute; and the Divisions of Research Immunology/Bone Marrow Transplantation and Hematology/Oncology, Childrens Hospital Los Angeles.", + "ror_ids": [ + "https://ror.org/02jzgtq86", + "https://ror.org/03taz7m60", + "https://ror.org/00412ts95" + ] + }, + { + "affiliation": "Zienkiewicz Centre for Computational Engineering, College of Engineering, Swansea University, Bay Campus, Fabian Way, Swansea, Wales SA1 8EN, U.K.", + "ror_ids": [ + "https://ror.org/053fq8t95" + ] + }, + { + "affiliation": "Division of Pulmonary, Critical Care, Sleep and Allergy,", + "ror_ids": [] + }, + { + "affiliation": "School of Culture and Communication, The University of Melbourne, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "a Department of Physics , University of Lucknow , Lucknow, 226 007, India", + "ror_ids": [ + "https://ror.org/03bdeag60" + ] + }, + { + "affiliation": "Department of Clinical Neuroscience Section for Psychiatry Huddinge Karolinska Institutet Stockholm Sweden", + "ror_ids": [ + "https://ror.org/056d84691" + ] + }, + { + "affiliation": "Department of Sociology Iowa State University Ames USA", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "University of Ioannina", + "ror_ids": [ + "https://ror.org/01qg3j183" + ] + }, + { + "affiliation": "Research Laboratory of Electronics and Department of Electrical Engineering, Massachusetts Institute of Technology, Cambridge, Massachusetts 02139", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Department of Geological Sciences, University of Manitoba, Winnipeg, MB, Canada R3T 2N2", + "ror_ids": [ + "https://ror.org/02gfys938" + ] + }, + { + "affiliation": "Department of Civil and Coastal Engineering, University of Florida, 365 Weil Hall, Gainesville, FL 32611-6580.", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "University of Washington, Seattle, WA, USA", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "Institute of High Current Electronics of the USSR Academy of Sciences Siberian Division, pr. Akademichesky, 4, 634055, Tomsk, USSR", + "ror_ids": [ + "https://ror.org/055fe2s59" + ] + }, + { + "affiliation": "Department of Cardiology Shanghai Jiao Tong University Affiliated Sixth People's Hospital Shanghai China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/049zrh188" + ] + }, + { + "affiliation": "1Univ. of Texas Southwestern Med. Ctr.", + "ror_ids": [ + "https://ror.org/05byvp690" + ] + }, + { + "affiliation": "Fife", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurology, MCTN, Medical Faculty Mannheim, Heidelberg University , Mannheim , Germany", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Bundeswehr Technical Centre for Ships and Naval Weapons, Maritime Technology and Research (WTD 71) Eckernförde Germany", + "ror_ids": [] + }, + { + "affiliation": "Instituto de Neurociencias, CSIC-Universidad Miguel Hernandez, Spain", + "ror_ids": [ + "https://ror.org/000nhpy59", + "https://ror.org/01azzms13" + ] + }, + { + "affiliation": "Department of Anesthesiology, Pediatrics, and Neurological Surgery, and Harborview Injury Prevention and Research Center, University of Washington, Seattle, Washington, USA.", + "ror_ids": [ + "https://ror.org/00cvxb145", + "https://ror.org/0394z0v14" + ] + }, + { + "affiliation": "Department of Pharmacy, Fremantle Hospital, Fremantle, Western Australia", + "ror_ids": [ + "https://ror.org/03yxgmm62" + ] + }, + { + "affiliation": "Université de Lyon 2", + "ror_ids": [ + "https://ror.org/01rk35k63" + ] + }, + { + "affiliation": "Universiti Kebangsaan Malaysia (UKM),Faculty of Engineering and Built Environment,Department of Electrical, Electronic and Systems Engineering,Bangi,Malaysia,43600", + "ror_ids": [ + "https://ror.org/00bw8d226" + ] + }, + { + "affiliation": "Department of Neuroanaesthesiology, Neurosciences Center, All India Institute of Medical Sciences, New Delhi, India", + "ror_ids": [ + "https://ror.org/02dwcqs71" + ] + }, + { + "affiliation": "Salisbury General Infirmary , Fisherton Street, Salisbury, Wiltshire, UK", + "ror_ids": [] + }, + { + "affiliation": "Department of Biomedical Engineering, Univ. of Iowa, IA City, IA 52242, US.", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "Институт истории АН Республики Узбекистан (Узбекистан)", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurology, Neurological Institute, Tokyo Women's Medical College, Shinjyukuku, Tokyo, Japan", + "ror_ids": [] + }, + { + "affiliation": "From the Institute of Animal Genetics, University of Edinburgh, Scotland", + "ror_ids": [ + "https://ror.org/01nrxwf90" + ] + }, + { + "affiliation": "Department of Structural Research, Institute of Nuclear Physics, Polish Academy of Sciences, E. Radzikowskiego 152, 31-342 Kraków, Poland", + "ror_ids": [ + "https://ror.org/01dr6c206", + "https://ror.org/01n78t774" + ] + }, + { + "affiliation": "Health and Welfare Canada, Health Protection Branch, Food Research Division, Ottawa, Ontario K1A 0L2, Canada", + "ror_ids": [] + }, + { + "affiliation": "Kings College London, Bush House, 30 Aldwych, London, UK", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "The Soltan Institute for Nuclear Studies", + "ror_ids": [] + }, + { + "affiliation": "La Jolla", + "ror_ids": [] + }, + { + "affiliation": "Beijing University of Chemical Technology, College of Science, Chaoyang District, Beijing", + "ror_ids": [ + "https://ror.org/00df5yc52" + ] + }, + { + "affiliation": "Athinoula A. Martinos Center for Biomedical Imaging, Department of Radiology, Massachusetts General Hospital, Charlestown, MA 02129;", + "ror_ids": [ + "https://ror.org/032q5ym94", + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Bangladesh Institute of Social Research (BISR) Trust, Dhaka, Bangladesh.", + "ror_ids": [] + }, + { + "affiliation": "University of Mississippi, USA", + "ror_ids": [ + "https://ror.org/02teq1165" + ] + }, + { + "affiliation": "Faculty of Culture and Information Science, Doshisha University", + "ror_ids": [ + "https://ror.org/01fxdkm29" + ] + }, + { + "affiliation": "Department of Systems Engineering, Colorado State University, Fort Collins, CO, USA", + "ror_ids": [ + "https://ror.org/03k1gpj17" + ] + }, + { + "affiliation": "Columbia University", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "Grad. Sch. Sci., Kyushu Univ.", + "ror_ids": [ + "https://ror.org/00p4k0j84" + ] + }, + { + "affiliation": "Contribution from the Department of Chemistry, Baker Laboratory, Cornell University, Ithaca, New York 14853-1301", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Recreation and Leisure Studies, University of Waterloo, Waterloo, Ontario, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "Concrete and Asphalt Laboratory Empa Swiss Federal Laboratories for Materials Science and Technology Dübendorf Switzerland", + "ror_ids": [ + "https://ror.org/02x681a42" + ] + }, + { + "affiliation": "State Key Laboratory of Pharmaceutical Biotechnology, Nanjing University, Nanjing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01rxvg760", + "https://ror.org/043ea4m21" + ] + }, + { + "affiliation": "UNESP, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Distillation Research Laboratory, Rochester Institute of Technology, Rochester, New York 14614", + "ror_ids": [ + "https://ror.org/00v4yb702" + ] + }, + { + "affiliation": "Faculty of Education, Kumamoto University", + "ror_ids": [ + "https://ror.org/02cgss904" + ] + }, + { + "affiliation": "State University of New York at Oswego", + "ror_ids": [ + "https://ror.org/01597g643" + ] + }, + { + "affiliation": "Vestibular and Oculomotor Laboratory Department of Otolaryngology Head and Neck Surgery Washington University School of Medicine St. Louis Missouri", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Dept. of Electronic Systems Engineering, Hanyang University", + "ror_ids": [ + "https://ror.org/046865y68" + ] + }, + { + "affiliation": "Fleming, Buenos Aires, Argentina", + "ror_ids": [] + }, + { + "affiliation": "Memorial Sloan-Kettering Cancer Center, New York, NY", + "ror_ids": [ + "https://ror.org/02yrq0923" + ] + }, + { + "affiliation": "Department of Entomology NYS Agric. Expt. Station Geneva, NY 14456 (315)787-2352", + "ror_ids": [] + }, + { + "affiliation": "School of Interactive Computing, Georgia Institute of Technology, Atlanta, USA", + "ror_ids": [ + "https://ror.org/01zkghx44" + ] + }, + { + "affiliation": "Southeastern Cooperative Wildlife Disease Study, Department of Parasitology, College of Veterinary Medicine, The University of Georgia, Athens, Georgia 30602, USA", + "ror_ids": [ + "https://ror.org/00te3t702" + ] + }, + { + "affiliation": "Research Center of Semi-conductor Technology for Energy, CRTSE-02, Bd. Dr. Frantz FANON, B.P. 140 Algiers-7, Merveilles 16038, Algeria", + "ror_ids": [ + "https://ror.org/04kymnq52" + ] + }, + { + "affiliation": "Department of Environmental Biotechnology, University of Science and Technology, Yuseong-gu, Republic of Korea", + "ror_ids": [ + "https://ror.org/000qzf213" + ] + }, + { + "affiliation": "Mehran UET SZAB Campus,Department of Software Engineering,Khairpur,Pakistan", + "ror_ids": [] + }, + { + "affiliation": "Assistant Public Health Professor, Johns Hopkins Bloomberg School of Public Health", + "ror_ids": [] + }, + { + "affiliation": "Loma Linda University Medical Center, Loma Linda, CA, USA", + "ror_ids": [ + "https://ror.org/03et1qs84" + ] + }, + { + "affiliation": "Graduate Program in Neuroscience University of Western Ontario London Ontario Canada", + "ror_ids": [ + "https://ror.org/02grkyz14" + ] + }, + { + "affiliation": "Universidade Federal do Espírito Santo", + "ror_ids": [ + "https://ror.org/05sxf4h28" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Research Institute of Advanced Materials, Seoul National University, Seoul 08826, Korea", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Brown University Program in Medicine and the Division of Allergy, Rhode Island Hospital, Providence, Rhode Island", + "ror_ids": [ + "https://ror.org/01aw9fv09", + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "News & Media Research Centre, Faculty of Arts & Design, University of Canberra, Australia", + "ror_ids": [ + "https://ror.org/04s1nv328" + ] + }, + { + "affiliation": "School of Pharmaceutical Science, Key Laboratory of Chemical Biology (Ministry of Education) Shandong University, 44 West Wenhua Road, Jinan, Shandong Province 250012, China", + "ror_ids": [ + "https://ror.org/0207yh398" + ] + }, + { + "affiliation": "NERC Isotope Geosciences Facilities British Geological Survey Keyworth UK", + "ror_ids": [ + "https://ror.org/04a7gbp98" + ] + }, + { + "affiliation": "Institut de Cancérologie Lucien Neuwirth, 42270 Saint Priest en Jarez, France", + "ror_ids": [] + }, + { + "affiliation": "a University of Gent , Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Hong Kong Baptist University", + "ror_ids": [ + "https://ror.org/0145fw131" + ] + }, + { + "affiliation": "Stanford Linear Accelerator Center, Stanford University, Stanford, California 94309, USA", + "ror_ids": [ + "https://ror.org/00f54p054", + "https://ror.org/05gzmn429" + ] + }, + { + "affiliation": "School of Engineering University of Glasgow Glasgow UK", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "Division of Cardiology, Department of Internal Medicine, National Taiwan University Hospital, Taipei 10002, Taiwan", + "ror_ids": [ + "https://ror.org/03nteze27" + ] + }, + { + "affiliation": "U.S. Horticultural Research Laboratory; USDA, ARS; Fort Pierce, Florida, 34945", + "ror_ids": [ + "https://ror.org/04a4m2h70" + ] + }, + { + "affiliation": "Center of Anatomy and Functional Morphology, Medical Education, Neurology, Neuroscience Friedman Brain Institute Icahn School of Medicine at Mount Sinai New York NY", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "NORDIG Institute for Health Research and Prevention, Hamburg, Germany. NOsius@t-online.de", + "ror_ids": [] + }, + { + "affiliation": "1 Philadelphia, Pennsylvania", + "ror_ids": [] + }, + { + "affiliation": "The Peel Hospital, Galashiels, Selkirkshire, Scotland", + "ror_ids": [] + }, + { + "affiliation": "SRM Institute of Science and Technology,College of Engineering and Technology,Department of Electronics and Communication Engineering,Kattankulathur, Chennai,India", + "ror_ids": [ + "https://ror.org/050113w36" + ] + }, + { + "affiliation": "Department of Comparative Politics University of Bergen, Norway", + "ror_ids": [ + "https://ror.org/03zga2b32" + ] + }, + { + "affiliation": "AT&T Bell Laboratories, Murray Hill, New Jersey 07974", + "ror_ids": [ + "https://ror.org/02bbd5539" + ] + }, + { + "affiliation": "Universidade Federal de Santa Maria, Brasil", + "ror_ids": [ + "https://ror.org/01b78mz79" + ] + }, + { + "affiliation": "George Washington University, Washington, D. C.", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "From the Section of Plastic Surgery, Department of Surgery, the Institute of Biomedical Engineering and the Department of Public Health, National Cheng-Kung University, Tainan, Taiwan, Republic of China", + "ror_ids": [ + "https://ror.org/01b8kcc49" + ] + }, + { + "affiliation": "Department of Biological and Environmental Science; University of Jyväskylä; Jyväskylä Finland", + "ror_ids": [ + "https://ror.org/05n3dz165" + ] + }, + { + "affiliation": "BioCentrum-DTU, Technical University of Denmark, DK-2800 Kgs. Lyngby, Denmark, and Danisco A/S, DK-8220 Brabrand, Denmark", + "ror_ids": [ + "https://ror.org/04qtj9h94" + ] + }, + { + "affiliation": "Department of Neurosurgery, Keio University", + "ror_ids": [ + "https://ror.org/02kn6nx58" + ] + }, + { + "affiliation": "Changzhi Medical College, No. 161, JieFangDong Street", + "ror_ids": [ + "https://ror.org/0340wst14" + ] + }, + { + "affiliation": "Sierra Nevada Research Institute University of California Merced CA USA", + "ror_ids": [ + "https://ror.org/00d9ah105" + ] + }, + { + "affiliation": "Jiangxi Normal University of Science and Technology", + "ror_ids": [ + "https://ror.org/04r1zkp10" + ] + }, + { + "affiliation": "University Departments of Surgery and Medical Biochemistry, Welsh National School of Medicine, Cardiff", + "ror_ids": [] + }, + { + "affiliation": "St. Luke's/Temple University Lewis Katz School of Medicine, Bethlehem, PA; and", + "ror_ids": [ + "https://ror.org/00kx1jb78" + ] + }, + { + "affiliation": "Eindhoven University of Technology , Postbus 513, 5600 MB Eindhoven , The Netherlands", + "ror_ids": [ + "https://ror.org/02c2kyt77" + ] + }, + { + "affiliation": "Department of Industrial and Manufacturing System Engineering, Iowa State University, Ames, IA", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "28759 Bremen", + "ror_ids": [] + }, + { + "affiliation": "Professor of Biochemistry in the University of Bristol, and member of the Research Committee of the British Diabetic Association.", + "ror_ids": [ + "https://ror.org/0524sp257", + "https://ror.org/023zt9146" + ] + }, + { + "affiliation": "Department of Physics, Govt College for Women, Vazhuthacaud, Research Centre, University of Kerala, Thiruvananthapuram, Kerala, India", + "ror_ids": [ + "https://ror.org/05tqa9940" + ] + }, + { + "affiliation": "University of Washington Bothell", + "ror_ids": [ + "https://ror.org/02ygzhr13" + ] + }, + { + "affiliation": "Dublin Dental School and Hospital, Trinity College Dublin, Lincoln Place, Dublin, Ireland,", + "ror_ids": [ + "https://ror.org/02tyrky19" + ] + }, + { + "affiliation": "TEFL, Shiraz University, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/028qtbk54" + ] + }, + { + "affiliation": "Department of Mathematics and Statistics, University of Ottawa, 585 King Edward Avenue, Ottawa, Ontario K1N 6N5, Canada", + "ror_ids": [ + "https://ror.org/03c4mmv16" + ] + }, + { + "affiliation": "Surgical & Orthopaedic Research Laboratories, Prince of Wales Clinical School, Prince of Wales Hospital, UNSW Sydney, Randwick, NSW, Australia", + "ror_ids": [ + "https://ror.org/022arq532", + "https://ror.org/03r8z3t63" + ] + }, + { + "affiliation": "Graduate School of Human Development and Environment, Kobe University", + "ror_ids": [ + "https://ror.org/03tgsfw79" + ] + }, + { + "affiliation": "a Columbia-Presbyterian Medical Center , New York City , USA", + "ror_ids": [] + }, + { + "affiliation": "Institute of Agro-product Safety and Nutrition, Zhejiang Academy of Agricultural Sciences, Hangzhou 310021, China", + "ror_ids": [ + "https://ror.org/02qbc3192" + ] + }, + { + "affiliation": "Department of Urology Vita‐Salute San Raffaele University Milan Italy", + "ror_ids": [ + "https://ror.org/01gmqr298" + ] + }, + { + "affiliation": "Iowa State University, Ames, Iowa 50011", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "Integrated Research and Treatment Center Adiposity Diseases, University of Leipzig, Leipzig, Germany;", + "ror_ids": [ + "https://ror.org/03s7gtk40" + ] + }, + { + "affiliation": "Innovative Interfaces , Providence, Rhode Island, USA", + "ror_ids": [] + }, + { + "affiliation": "Peking University Third Hospital", + "ror_ids": [ + "https://ror.org/04wwqze12" + ] + }, + { + "affiliation": "Hospital das Clínicas; Universidade de São Paulo", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Embryology, Carnegie Institution of Washington, 115 West University Parkway, Baltimore, MD 21210", + "ror_ids": [ + "https://ror.org/03bvtqh46", + "https://ror.org/04jr01610" + ] + }, + { + "affiliation": "Department of Electrical Engineering, Universidad Politécnica de Cartagena, Cartagena, Spain", + "ror_ids": [ + "https://ror.org/02k5kx966" + ] + }, + { + "affiliation": "Division of Health Research, Lancaster University, Lancaster, UK", + "ror_ids": [ + "https://ror.org/04f2nsd36" + ] + }, + { + "affiliation": "Key Laboratory of Photochemical Conversion and Optoelectronic Materials Technical Institute of Physics and Chemistry Chinese Academy of Sciences Beijing 100190 China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/04akaak77" + ] + }, + { + "affiliation": "東京都リハビリテーション病院", + "ror_ids": [] + }, + { + "affiliation": "GSL College of Physiotherapy, GSL Medical College, Rajamahendravaram, Dr. YSR University of Health Sciences, Andhra Pradesh, India", + "ror_ids": [] + }, + { + "affiliation": "Kyung Hee University", + "ror_ids": [ + "https://ror.org/01zqcg218" + ] + }, + { + "affiliation": "Center for Biomedical Research, The University of Texas Health Science Center at Tyler, Tyler, TX, USA", + "ror_ids": [ + "https://ror.org/01sps7q28" + ] + }, + { + "affiliation": "Master of Information Technology University of Raharja,Indonesia", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Economics and Business, University of Groningen, Groningen, Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Internal Medicine, School of Veterinary Medicine and Animal Science, University of São Paulo, São Paulo 05508 270, Brazil.", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "National Institute of Advanced Industrial Science and Technology (AIST) , AIST Tsukuba-East, Namiki 1-2-1, Tsukuba, Ibaraki 305-8564, Japan", + "ror_ids": [ + "https://ror.org/01703db54" + ] + }, + { + "affiliation": "University of Denver, CO, USA", + "ror_ids": [ + "https://ror.org/04w7skc03" + ] + }, + { + "affiliation": "China", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemistry, University of California, Irvine, California 92697-2025", + "ror_ids": [ + "https://ror.org/04gyf1771" + ] + }, + { + "affiliation": "NTT Corporation,Kanagawa,Japan", + "ror_ids": [] + }, + { + "affiliation": "School of Engineering, CUSAT,Division of Electronics and Communication Engineering,Cochin,Kerala", + "ror_ids": [] + }, + { + "affiliation": "1Columbia University, College of Physicians and Surgeons, New York, New York.", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "The University of Iowa, USA", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "Lomonosov Moscow State University", + "ror_ids": [ + "https://ror.org/010pmpe69" + ] + }, + { + "affiliation": "a Department of Physical Education for Men , University of Southern California , Los Angeles , Cal. , USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "Aerosol and Particle Technology Laboratory, School of Mechanical, Aerospace and Systems Engineering, Korea Advanced Institute of Science and Technology, Guseong-dong, Yuseong-gu, Republic of Korea", + "ror_ids": [ + "https://ror.org/05apxxy63" + ] + }, + { + "affiliation": "Atmosphere and Ocean Research Institute, The University of Tokyo", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "University of California, San Francisco", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Purdue University Center for Cancer Research, Purdue University, West Lafayette, Indiana, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "University of Essex", + "ror_ids": [ + "https://ror.org/02nkf1q06" + ] + }, + { + "affiliation": "University of Illinois at Chicago College of Nursing Springfield Illinois USA", + "ror_ids": [ + "https://ror.org/02mpq6x41" + ] + }, + { + "affiliation": "University of Vienna", + "ror_ids": [ + "https://ror.org/03prydq77" + ] + }, + { + "affiliation": "Division of Pulmonary and Critical Care Medicine, University of North Carolina School of Medicine, Chapel Hill, North Carolina", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Department of Aerospace Engineering, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "National Institution of Fusion Science 2 , Toki, Gifu 509-5292, Japan", + "ror_ids": [ + "https://ror.org/01t3wyv61" + ] + }, + { + "affiliation": "Southern Medical University", + "ror_ids": [ + "https://ror.org/01vjw4z39" + ] + }, + { + "affiliation": "Politechnika Wrocławska Wydział Zarządzania", + "ror_ids": [ + "https://ror.org/008fyn775" + ] + }, + { + "affiliation": "Shanghai Jiaotong University First People's Hospital", + "ror_ids": [ + "https://ror.org/04a46mh28", + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "a Department of Geological and Environmental Sciences , Stanford University , Stanford, California, 94305-2115", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Department of Pediatric Dentistry Universidade Federal dos Vales do Jequitinhonha e Mucuri (UFVJM) Diamantina Brazil", + "ror_ids": [ + "https://ror.org/02gen2282" + ] + }, + { + "affiliation": "Technological Design Institute of Scientific Instrument Engineering Siberian Branch of the Russian Academy of Sciences", + "ror_ids": [ + "https://ror.org/02frkq021", + "https://ror.org/053bhme26", + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "W.J. Kolff Institute for Biomedical Engineering and Materials Science, University of Groningen, Antonius Deusinglaan 1, 9713 AV Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Science, The University of Tokyo", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Department of History, Heidelberg University, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Department of Anatomy, Histology and Embryology Semmelweis University Budapest Hungary", + "ror_ids": [ + "https://ror.org/01g9ty582" + ] + }, + { + "affiliation": "JEDDAH UNIVERSITY", + "ror_ids": [ + "https://ror.org/015ya8798" + ] + }, + { + "affiliation": "Department of Nursing Chang Gung University of Science and Technology Taoyuan City Taiwan", + "ror_ids": [ + "https://ror.org/009knm296" + ] + }, + { + "affiliation": "Ann Arbor, MI, Indianapolis, IN, Fairfield, CA, Morgantown, WV, Athens, OH", + "ror_ids": [] + }, + { + "affiliation": "Scientific Center for Expert Evaluation of Medical Products", + "ror_ids": [] + }, + { + "affiliation": "Department of Mathematics , Gaston Berger University , Saint Louis , Senegal", + "ror_ids": [ + "https://ror.org/01jp0tk64" + ] + }, + { + "affiliation": "UEMA", + "ror_ids": [] + }, + { + "affiliation": "Department of Respiratory Medicine, Imperial College, London, United Kingdom.", + "ror_ids": [ + "https://ror.org/041kmwe10" + ] + }, + { + "affiliation": "Department of Ophthalmology, The First Affiliated Hospital of Zhengzhou University, Henan Province Eye Hospital, Henan International Joint Research Laboratory for Ocular Immunology and Retinal Injury Repair, Zhengzhou, People's Republic of China; The Academy of Medical Sciences Zhengzhou University Zhengzhou China", + "ror_ids": [ + "https://ror.org/04ypx8c21", + "https://ror.org/056swr059" + ] + }, + { + "affiliation": "Uppsala Universitet", + "ror_ids": [ + "https://ror.org/048a87296" + ] + }, + { + "affiliation": "Research and Innovation Division, South Asian Institute for Social Transformation (SAIST), Dhaka, Bangladesh", + "ror_ids": [] + }, + { + "affiliation": "Department of ECE, University College of Engineering, JNTUK, Kakinada, India", + "ror_ids": [ + "https://ror.org/05s9t8c95" + ] + }, + { + "affiliation": "Univ. of Washington, Seattle, WA 98195", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "University of Barcelona (Spain)", + "ror_ids": [ + "https://ror.org/021018s57" + ] + }, + { + "affiliation": "Shenyang Aerospace University", + "ror_ids": [ + "https://ror.org/02423gm04" + ] + }, + { + "affiliation": "Discipline of Medicine University of Adelaide Adelaide South Australia Australia", + "ror_ids": [ + "https://ror.org/00892tw58" + ] + }, + { + "affiliation": "Regina General Hospital", + "ror_ids": [ + "https://ror.org/029tn5b56" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Chung-Ang University Hospital, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/04gr4mh63" + ] + }, + { + "affiliation": "Biostatistical Sciences and Pharmacometrics Novartis Institutes for Biomedical Research Cambridge Massachusetts USA", + "ror_ids": [] + }, + { + "affiliation": "Harvard Medical School Massachusetts General Hospital Avon Foundation Comprehensive Breast Evaluation Center Wang Ambulatory Care Center Boston, MA 02114", + "ror_ids": [ + "https://ror.org/002pd6e78", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "University of Toronto Department of Mechanical and Industrial Engineering, Computer Integrated Manufacturing Laboratory (CIMLab) Ontario, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Hematopoiesis Unit, Nikolaus-Fiebiger-Center, 91054 Erlangen, Germany.", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Chemistry, Warsaw University of Technology, ul. Noakowskiego 3, 00-664Warsaw, Poland", + "ror_ids": [ + "https://ror.org/00y0xnp53" + ] + }, + { + "affiliation": "Sveučilište J. J. Strossmayera u Osijeku, Filozofski fakultet, Lorenza Jägera 9, HR–31000 Osijek", + "ror_ids": [ + "https://ror.org/05sw4wc49" + ] + }, + { + "affiliation": "Graduate Center of The City University of New York, New York 10036", + "ror_ids": [ + "https://ror.org/00453a208" + ] + }, + { + "affiliation": "Department of Psychiatry, Gulhane Medical Faculty, Health Sciences University, Ankara, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Royal Prince Alfred Hospital, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/05gpvde20" + ] + }, + { + "affiliation": "Schlumberger Cambridge Research, Madingley Road, Cambridge CB3 OEL, England", + "ror_ids": [] + }, + { + "affiliation": "Muroran Inst. of Technol", + "ror_ids": [ + "https://ror.org/04rymkk69" + ] + }, + { + "affiliation": "Royal Perth Hospital, Perth, WA.", + "ror_ids": [ + "https://ror.org/00zc2xc51" + ] + }, + { + "affiliation": "School of Mathematics and Physics Queen's University Belfast University Rd. Belfast BT7 1NN UK", + "ror_ids": [ + "https://ror.org/00hswnk62" + ] + }, + { + "affiliation": "Department of Computer Technology, VJTI, Matunga, Mumbai, India", + "ror_ids": [] + }, + { + "affiliation": "Institut für Neuroimmunologie und Multiple Sklerose, Zentrum für Molekulare Neurobiologie Hamburg, Universitätsklinikum Hamburg-Eppendorf, 20251 Hamburg, Germany", + "ror_ids": [ + "https://ror.org/01zgy1s35" + ] + }, + { + "affiliation": "International Agency for Research on Cancer; Lyon France", + "ror_ids": [ + "https://ror.org/00v452281" + ] + }, + { + "affiliation": "Institute for oncology and radiology of Serbia, Belgrade", + "ror_ids": [] + }, + { + "affiliation": "State University of Campinas, Brazil", + "ror_ids": [ + "https://ror.org/04wffgt70" + ] + }, + { + "affiliation": "National Semiconductor Corporation, 2900 Semiconductor Drive , M/S E-170, Santa Clara, California 95052", + "ror_ids": [] + }, + { + "affiliation": "University of Colorado | Anschutz Medical Campus, Aurora, CO.", + "ror_ids": [ + "https://ror.org/03wmf1y16" + ] + }, + { + "affiliation": "Department of Nephrology, Copenhagen University Hospital, Rigshospitalet , Copenhagen 2100 , Denmark", + "ror_ids": [ + "https://ror.org/05bpbnx46" + ] + }, + { + "affiliation": "Department of Burns and Wound Repair Surgery Guangdong Provincial People's Hospital, Guangdong Academy of Medical Sciences Guangzhou China", + "ror_ids": [ + "https://ror.org/0432p8t34", + "https://ror.org/045kpgw45" + ] + }, + { + "affiliation": "Harvard Medical School, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Arbor Research Collaborative for Health, Ann Arbor, United States of America", + "ror_ids": [ + "https://ror.org/043qmbk61" + ] + }, + { + "affiliation": "Fudan University 1 State Key Laboratory of Surface Physics and Department of Physics, , Shanghai 200433, China", + "ror_ids": [ + "https://ror.org/000nbq540", + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "University of Sussex School of Business Department of Management, University of Sussex Business School, Brighton, UK", + "ror_ids": [ + "https://ror.org/00ayhx656" + ] + }, + { + "affiliation": "Shandong Provincial Land Space and Ecological Restoration Center Jinan PR China", + "ror_ids": [] + }, + { + "affiliation": "Social Services Department, London Borough of Merton, 116 Kingston Road, London. U.K.", + "ror_ids": [] + }, + { + "affiliation": "Department of Biology and Chemistry, City University of Hong Kong, Kowloon, Hong Kong", + "ror_ids": [ + "https://ror.org/03q8dnn23" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, University of Padua, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Madras University, India", + "ror_ids": [ + "https://ror.org/04jmt9361" + ] + }, + { + "affiliation": "Pilotage Department, Aeronautics and Aerospace Faculty Gaziantep University Gaziantep Turkey", + "ror_ids": [ + "https://ror.org/020vvc407" + ] + }, + { + "affiliation": "Department of Sociology, Eötvös Loránd University, Budapest, Lövölde tér 2/a, 1071, Hungary", + "ror_ids": [ + "https://ror.org/01jsq2704" + ] + }, + { + "affiliation": "CSIR-Indian Institute of Petroleum, Mohkampur, Dehradun-248005, India.", + "ror_ids": [ + "https://ror.org/04gavx394" + ] + }, + { + "affiliation": "Departments of Psychiatry and Pediatrics, University of California, San Francisco", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Departments of Research and Development, 3M Pharmaceuticals, St Paul, MN, USA", + "ror_ids": [] + }, + { + "affiliation": "Department of Physics, National Institute of Technology, Raipur, India;", + "ror_ids": [ + "https://ror.org/02y553197" + ] + }, + { + "affiliation": "Ann Arbor Pharmacometrics Group LLC Ann Arbor MI USA", + "ror_ids": [] + }, + { + "affiliation": "National Agriculture and Forestry Research Institute, Vientiane, Lao PDR", + "ror_ids": [] + }, + { + "affiliation": "Centro Italiano Ricerche Aerospaziali", + "ror_ids": [ + "https://ror.org/01cqx0m58" + ] + }, + { + "affiliation": "1 Is a mathematics education doctoral student at the University of Central Florida.", + "ror_ids": [ + "https://ror.org/036nfer12" + ] + }, + { + "affiliation": "Department of Applied Chemistry Graduate School of Science and Engineering Saitama University 255 Shimo‐Okubo, Sakura‐ku 338‐8570 Saitama Japan", + "ror_ids": [ + "https://ror.org/02evnh647" + ] + }, + { + "affiliation": "Sungkyunkwan University Gangnam‐gu South Korea", + "ror_ids": [ + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Humboldt-Universität zu Berlin", + "ror_ids": [ + "https://ror.org/01hcx6992" + ] + }, + { + "affiliation": "School of Electrical Engineering and Computer Science, ASRI, Seoul National University", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Universidad Católica de Cuenca - Ecuador", + "ror_ids": [ + "https://ror.org/0036b6n81" + ] + }, + { + "affiliation": "University of California, Lawrence Livermore National Laboratory P.O. Box 808, Livermore, California 94551", + "ror_ids": [ + "https://ror.org/041nk4h53" + ] + }, + { + "affiliation": "Inrae", + "ror_ids": [ + "https://ror.org/003vg9w96" + ] + }, + { + "affiliation": "School of New Energy, Harbin Institute of Technology(Weihai), Weihai, People's Republic of China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Faculty of Arts and Social Sciences, Simon Fraser University, Burnaby, British Columbia, V5A 1S6, Canada", + "ror_ids": [ + "https://ror.org/0213rcc28" + ] + }, + { + "affiliation": "Christchurch Cardioendocrine Research Group Department of Medicine University of Otago Christchurch, New Zealand", + "ror_ids": [ + "https://ror.org/01jmxt844" + ] + }, + { + "affiliation": "Staatswissenschaftliches Seminar der Universität zu Köln, Albertus-Magnus-Platz, D-50923 Köln.", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "Institute of Semiconductors, Chinese Academy of Sciences, Beijing 100083, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/048dd0611" + ] + }, + { + "affiliation": "Curtin Health Innovation Research Institute, Faculty of Health Sciences, Curtin University, Perth, Australia", + "ror_ids": [ + "https://ror.org/02n415q13" + ] + }, + { + "affiliation": "Department of Pathology, School of Medicine, University of Utah, Salt Lake City, Utah 84132", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "Curriculum of Agricultural Engineering, Department of Mechanical Engineering, Faculty of Engineering, King Mongkut's Institute of Technology Ladkrabang, 1 Chalongkrung Road, Ladkrabang, Bangkok 10520, Thailand", + "ror_ids": [ + "https://ror.org/055mf0v62" + ] + }, + { + "affiliation": "University of Michigan 1 Department of Naval Architecture and Marine Engineering, , 2600 Draper Dr., Ann Arbor, Michigan 48109, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Loyola University Chicago", + "ror_ids": [ + "https://ror.org/04b6x2g63" + ] + }, + { + "affiliation": "University of Oxford, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "CIDCA (CIC-CONICET – Facultad de Ciencias Exactas – Universidad Nacional de La Plata) , 47 y 116 , 1900 La Plata , Argentina", + "ror_ids": [ + "https://ror.org/01tjs6929" + ] + }, + { + "affiliation": "Tohoku University", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "Pontifical Catholic University of Rio Grande do Sul, Porto Alegre, Brazil", + "ror_ids": [ + "https://ror.org/025vmq686" + ] + }, + { + "affiliation": "Dongbei U. of Finance and Economics", + "ror_ids": [ + "https://ror.org/05db1pj03" + ] + }, + { + "affiliation": "AP HP-Hopital Pitié Salpétrière, Unité de Thérapie Cellulaire, Paris, France", + "ror_ids": [] + }, + { + "affiliation": "Optical Sciences Center, University of Arizona, Tucson, Arizona 85721", + "ror_ids": [ + "https://ror.org/03m2x1q45" + ] + }, + { + "affiliation": "Department of Endocrine Surgery Sanjay Gandhi Post Graduate Institute of Medical Sciences Raebareli Road 226014 Lucknow India", + "ror_ids": [ + "https://ror.org/01rsgrz10" + ] + }, + { + "affiliation": "State Key Laboratory of Surface Physics Multiscale Research Institute of Complex Systems Department of Physics Fudan University Shanghai 200433 China", + "ror_ids": [ + "https://ror.org/000nbq540", + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "1Section for Inherited Cancer, Department of Medical Genetics, Rikshospitalet University Hospital; 2Department of Pathology, Ullevål University Hospital; 3The Cancer Registry of Norway, Oslo, Norway and 4Translational Cancer Genetics Team, Institute of Cancer Research and Cancer Genetics Unit, The Royal Marsden NHS Foundation Trust, Sutton, Surrey, United Kingdom", + "ror_ids": [ + "https://ror.org/03sm1ej59", + "https://ror.org/043jzw605", + "https://ror.org/0008wzh48" + ] + }, + { + "affiliation": "Department of Microbiology and Ecology Institut Cavanilles de Biodiversitat i Biologia Evolutiva, University of Valencia Burjassot Spain", + "ror_ids": [ + "https://ror.org/043nxc105" + ] + }, + { + "affiliation": "Higher School of Economics", + "ror_ids": [ + "https://ror.org/055f7t516" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, McGill University, Montreal H3A 0E9, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Graz", + "ror_ids": [] + }, + { + "affiliation": "Liverpool Hope University", + "ror_ids": [ + "https://ror.org/03ctjbj91" + ] + }, + { + "affiliation": "Nasjonal kompetansetjeneste for sykdomsrelatert underernæring (NKSU)", + "ror_ids": [] + }, + { + "affiliation": "University of Agder", + "ror_ids": [ + "https://ror.org/03x297z98" + ] + }, + { + "affiliation": "Department of Digestive Minimally Invasive Surgery The Second Affiliated Hospital of Baotou Medical College Baotou China", + "ror_ids": [ + "https://ror.org/04t44qh67" + ] + }, + { + "affiliation": "Community Stoma Nurse Advisor, Salts Healthcare, Cork, Republic of Ireland", + "ror_ids": [] + }, + { + "affiliation": "State Key Laboratory of Chemical Resource Engineering, Beijing Key Laboratory of Electrochemical Process and Technology for Materials, Beijing University of Chemical Technology, Beijing 100029, P. R. China", + "ror_ids": [ + "https://ror.org/00df5yc52" + ] + }, + { + "affiliation": "Department of Biomedical Engineering, The Ohio State University, Columbus, OH 43210", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Department of Clinical Immunology, University of Texas M.D. Anderson Cancer Center, Houston 77030.", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "University of Minnesota, Division of Epidemiology & Community Health, Minneapolis, Minnesota.", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "F-CRIN INI-CRCT, Nancy, France", + "ror_ids": [ + "https://ror.org/05xw0wj25" + ] + }, + { + "affiliation": "Indukaka Ipcowala Center for Interdisciplinary Studies in Science and Technology, Sardar Patel University, Anand, Gujarat, India", + "ror_ids": [ + "https://ror.org/05kfstc28" + ] + }, + { + "affiliation": "Centre for Research on Addiction, Control and Governance (CEACG), Faculty of Social Sciences, University of Helsinki,\nHelsinki, Finland", + "ror_ids": [ + "https://ror.org/040af2s02" + ] + }, + { + "affiliation": "Mineralogy\nDepartment, Institute for Geosciences, Friedrich-Schiller University Jena, Carl-Zeiss-Promenade 10, Jena, Germany", + "ror_ids": [ + "https://ror.org/05qpz1x62" + ] + }, + { + "affiliation": "Department of Dermatology University Hospitals KU Leuven Leuven 3000 Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "College of Electrical Engineering and Automation, Fuzhou University,Fuzhou,China", + "ror_ids": [ + "https://ror.org/011xvna82" + ] + }, + { + "affiliation": "Department of Chemistry, University of Western Ontario, London, Ontario, Canada N6A 5B7", + "ror_ids": [ + "https://ror.org/02grkyz14" + ] + }, + { + "affiliation": "School of Computer Engineering, Jinling Institute of Technology, Nanjing 211169, China", + "ror_ids": [ + "https://ror.org/05em1gq62" + ] + }, + { + "affiliation": "University of Iowa", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "Key Laboratory of Polar Materials and Devices Department of Electronic Science School of Physics and Electronic Science East China Normal University Shanghai 200241 P. R. China", + "ror_ids": [ + "https://ror.org/02n96ep67" + ] + }, + { + "affiliation": "American Institute of Chemists, New York", + "ror_ids": [ + "https://ror.org/018x6py98" + ] + }, + { + "affiliation": "Instituto Capixaba de Pesquisa", + "ror_ids": [ + "https://ror.org/05hs77045" + ] + }, + { + "affiliation": "University of Electro-Communications,", + "ror_ids": [ + "https://ror.org/02x73b849" + ] + }, + { + "affiliation": "1Department of Pathology, Yale School of Medicine, New Haven, CT", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "MR Centre-High Field MR, Department of Radiology, Medical University of Vienna/Vienna General Hospital, Vienna, Austria", + "ror_ids": [ + "https://ror.org/05n3x4p02", + "https://ror.org/05f0zr486" + ] + }, + { + "affiliation": "Department of Biochemistry & Molecular Biology, Mayo Clinic College of Medicine, Rochester, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Texas A&M University", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "Department of Electrical & Electronic Engineering, Faculty of Engineering, Universiti Putra, 43400 Serdang, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/02e91jd64" + ] + }, + { + "affiliation": "Chemistry Department and Center for Materials Research and Analysis, University of Nebraska-Lincoln, Lincoln, Nebraska 68588", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "Department of Neonatology, Hedi Chaker University Hospital, Sfax, Tunisia", + "ror_ids": [ + "https://ror.org/01vqqz948" + ] + }, + { + "affiliation": "Faculty of Engineering, Niigata University", + "ror_ids": [ + "https://ror.org/04ww21r56" + ] + }, + { + "affiliation": "Universidade de Minnesota, EUA", + "ror_ids": [ + "https://ror.org/03grvy078" + ] + }, + { + "affiliation": "Soft Transducers Laboratory (LMTS) École Polytechnique Fédérale de Lausanne (EPFL) Rue de la Maladière 71B Neuchâtel 2000 Switzerland", + "ror_ids": [ + "https://ror.org/02s376052" + ] + }, + { + "affiliation": "Department of Entomology, University of California, Davis, California 95616", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "SUNY–Buffalo", + "ror_ids": [ + "https://ror.org/01y64my43" + ] + }, + { + "affiliation": "London School of Economics", + "ror_ids": [ + "https://ror.org/0090zs177" + ] + }, + { + "affiliation": "A I Dupont Hospital for Children, Wilmington, Delaware. geneds@hotmail.com", + "ror_ids": [ + "https://ror.org/00jyx0v10" + ] + }, + { + "affiliation": "Department of Internal Medicine, Allegheny General Hospital, Houston, Texas, USA;", + "ror_ids": [ + "https://ror.org/02gy6qp39" + ] + }, + { + "affiliation": "Department of Biochemistry, Faculty of Education and Science, Al-Baydha University, Al-Baydha, 00967, Yemen", + "ror_ids": [ + "https://ror.org/0505vtn61" + ] + }, + { + "affiliation": "AOU Policlinico Dulio Casula Cagliari, Cagliari", + "ror_ids": [] + }, + { + "affiliation": "University of Szeged", + "ror_ids": [ + "https://ror.org/01pnej532" + ] + }, + { + "affiliation": "Devang Patel Institute of Advance Technology and Research Faculty of Technology and Engineering (FTE) Charotar University of Science and Technology,Department of Computer Science & Engineering,Changa,Gujarat,India,388421", + "ror_ids": [ + "https://ror.org/0442pkv24" + ] + }, + { + "affiliation": "Department of Surgery, Gachon University Gil Medical Center, Gachon University College of Medicine, Incheon, Korea.", + "ror_ids": [ + "https://ror.org/03ryywt80", + "https://ror.org/005nteb15" + ] + }, + { + "affiliation": "Department of Industrial and Manufacturing EngineeringKettering University 48504 Flint MI USA", + "ror_ids": [ + "https://ror.org/03rcspa57" + ] + }, + { + "affiliation": "Commonwealth Scientific and Industrial Research Organization, Plant Industry, GPO Box 1600, Canberra, ACT 2601, Australia; Department of Plant Sciences, University of Cambridge, Downing Street, Cambridge, United Kingdom CB2 3EA; Michigan State University–Department of Energy Plant Research Laboratory, Michigan State University, East Lansing, MI 48824-1312", + "ror_ids": [ + "https://ror.org/013meh722", + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "Molecular Targets Program, National Cancer Institute—Frederick, Frederick Maryland 21702", + "ror_ids": [ + "https://ror.org/040gcmg81" + ] + }, + { + "affiliation": "Key Laboratory of Enhanced Oil Recovery, Northeast Petroleum University, Ministry of Education, Daqing 163318, China", + "ror_ids": [ + "https://ror.org/03net5943" + ] + }, + { + "affiliation": "INIFTA, DQT, Sucursal, 4, C.C 16, 1900 La Plata, Argentina", + "ror_ids": [ + "https://ror.org/02t6gq889" + ] + }, + { + "affiliation": "University of Johannesburg,The Faculty of Health Sciences,Department of Human Anatomy and Physiology,South Africa", + "ror_ids": [ + "https://ror.org/04z6c2n17" + ] + }, + { + "affiliation": "Analytical Chemistry Department", + "ror_ids": [] + }, + { + "affiliation": "Universidade Estadual Vale do Acaraú (UVA) in Sobral-CE, Brazil.", + "ror_ids": [ + "https://ror.org/038ddjp72" + ] + }, + { + "affiliation": "West Virginia University, Morgantown, WV", + "ror_ids": [ + "https://ror.org/011vxgd24" + ] + }, + { + "affiliation": "Microbiology and Immunology, Elmwood Pediatric Group, University of Rochester, Rochester, New York", + "ror_ids": [ + "https://ror.org/022kthw22" + ] + }, + { + "affiliation": "Department of Chemistry, College of Science, China University of Petroleum (East China), Qingdao, 266580, P. R. China", + "ror_ids": [ + "https://ror.org/05gbn2817" + ] + }, + { + "affiliation": "Department of Oncology, Shandong Provincial Hospital Affiliated to Shandong University, Jinan, Shandong Province, China", + "ror_ids": [ + "https://ror.org/0207yh398", + "https://ror.org/02ar2nf05" + ] + }, + { + "affiliation": "School of Medicine, Faculty of Medical and Health Sciences, University of Auckland , Auckland , New Zealand", + "ror_ids": [ + "https://ror.org/03b94tp07" + ] + }, + { + "affiliation": "Agricultural and Resource Economics Department, University of Tennessee at Knoxville, Knoxville, Tennessee, USA", + "ror_ids": [ + "https://ror.org/020f3ap87" + ] + }, + { + "affiliation": "Institute of Molecular Virology (IMV) Center of Molecular Biology of Inflammation (ZMBE) Westfaelische-Wilhelms-University Münster Von-Esmarch-Str. 56 D-48149 Münster Germany", + "ror_ids": [ + "https://ror.org/00pd74e08" + ] + }, + { + "affiliation": "Dept of Medicine, University of Washington, The Severe Chronic Neutropenia International Registry, Seattle, WA, USA,", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "The Pennsylvania State University, Nuclear Engineering Department 231 Sackett Building, University Park, Pennsylvania 16802", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Miami University, Oxford, OH, USA", + "ror_ids": [ + "https://ror.org/05nbqxr67" + ] + }, + { + "affiliation": "Dept. of Physics, California Polytechnic State Univ., San Luis Obispo, CA 93407", + "ror_ids": [ + "https://ror.org/001gpfp45" + ] + }, + { + "affiliation": "Department of Otorhinolaryngology – Head and Neck Surgery, University of Pennsylvania Perelman School of Medicine, Philadelphia, Pennsylvania, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Department of Critical Care Medicine The First Affiliated Hospital of Anhui Medical University Hefei PR China", + "ror_ids": [ + "https://ror.org/03t1yn780" + ] + }, + { + "affiliation": "From the Bulawayo Group of Hospitals, Bulawayo, Rhodesia", + "ror_ids": [] + }, + { + "affiliation": "Department of Nuclear Technology, Far Eastern Federal University, Vladivostok, Russia", + "ror_ids": [ + "https://ror.org/0412y9z21" + ] + }, + { + "affiliation": "University of São Paulo, Brazil; National Institute on Advanced Eco-efficient Cement-based Technologies, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "UCD Dublin, Dublin, UNK, Ireland", + "ror_ids": [ + "https://ror.org/05m7pjf47" + ] + }, + { + "affiliation": "Jet Propulsion Laboratory, California Institute of Technology, Pasadena, Calif.", + "ror_ids": [ + "https://ror.org/027k65916", + "https://ror.org/05dxps055" + ] + }, + { + "affiliation": "Universidade Regional de Blumenau", + "ror_ids": [ + "https://ror.org/01nsn0t21" + ] + }, + { + "affiliation": "Green Catalysis Center College of Chemistry Zhengzhou University Zhengzhou 450001 China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "(Göttingen) Germany", + "ror_ids": [] + }, + { + "affiliation": "1Brigham and Womens Hospital, Cambridge, MA.", + "ror_ids": [ + "https://ror.org/04b6nzv94" + ] + }, + { + "affiliation": "Hyogo Pref. Pl. Prot. Office", + "ror_ids": [ + "https://ror.org/009cg4615" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry, University of California, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Guru Gobind Singh Indraprashtha University", + "ror_ids": [ + "https://ror.org/034q1za58" + ] + }, + { + "affiliation": "University of Utah in Salt Lake City,", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "Department of Electronic Engineering, PLA Rocket Force University of Engineering, Xi'an, China", + "ror_ids": [ + "https://ror.org/00gg5zj35" + ] + }, + { + "affiliation": "Soochow University", + "ror_ids": [] + }, + { + "affiliation": "Universiti Teknologi Malaysia", + "ror_ids": [ + "https://ror.org/026w31v75" + ] + }, + { + "affiliation": "School of Mathematics and Statistics; University of New South Wales; Sydney New South Wales Australia", + "ror_ids": [ + "https://ror.org/03r8z3t63" + ] + }, + { + "affiliation": "Research Platform for Collaboration for Health Faculty of Health Science Kristianstad University Kristianstad Sweden", + "ror_ids": [ + "https://ror.org/00tkrft03" + ] + }, + { + "affiliation": "University of Louisville, Louisville, KY, USA", + "ror_ids": [ + "https://ror.org/01ckdn478" + ] + }, + { + "affiliation": "Program for Ecology, Evolution and Conservation Biology University of Illinois‐Urbana Urbana IL USA", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Northwestern Polytechnical University, Xi’an, China", + "ror_ids": [ + "https://ror.org/01y0j0j86" + ] + }, + { + "affiliation": "Zhejiang Provincial Key Laboratory of Advanced Chemical Engineering Manufacture Technology, College of Chemical and Biological Engineering, Zhejiang University, Hangzhou 310027, P. R. China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "a Waters Corporation , Milford, Massachusetts, USA", + "ror_ids": [ + "https://ror.org/01h8xv021" + ] + }, + { + "affiliation": "Centro de Salud Ambiental, Instituto Nacional de Salud Pública, Cuernavaca, México. ecifuent@correo.insp.mx", + "ror_ids": [ + "https://ror.org/032y0n460" + ] + }, + { + "affiliation": "Department of Telecommunications at the University of Georgia", + "ror_ids": [ + "https://ror.org/00te3t702" + ] + }, + { + "affiliation": "Center for Advanced Imaging Innovation and Research, and Bernard and Irene Schwartz Center for Biomedical Imaging, Department of Radiology; New York University School of Medicine; New York New York USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "National Key Laboratory of Wheat Breeding, Agricultural College, Shandong Agricultural University, Tai’an 271018, China", + "ror_ids": [ + "https://ror.org/02ke8fw32" + ] + }, + { + "affiliation": "University of Manitoba", + "ror_ids": [ + "https://ror.org/02gfys938" + ] + }, + { + "affiliation": "Beijing National Day School, Beijing, China, --- Select a Country ---", + "ror_ids": [] + }, + { + "affiliation": "SAĞLIK BİLİMLERİ ÜNİVERSİTESİ, ANKARA DR. SAMİ ULUS KADIN DOĞUM ÇOCUK SAĞLIĞI VE HASTALIKLARI SAĞLIK UYGULAMA VE ARAŞTIRMA MERKEZİ", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "West Virginia University, P.O. Box 6106, Morgantown, WV 26506-6106.", + "ror_ids": [ + "https://ror.org/011vxgd24" + ] + }, + { + "affiliation": "Department of Physiology, Johns Hopkins University, School of Medicine, Baltimore, MD 21205, USA.", + "ror_ids": [ + "https://ror.org/00za53h95" + ] + }, + { + "affiliation": "College of Nursing, Advancing Chronic Care through Research and Innovation Center (ACORN Center), University of South Carolina, Columbia, SC, USA", + "ror_ids": [ + "https://ror.org/02b6qw903" + ] + }, + { + "affiliation": "Head‐Electron Microscopy Group Defence Metallurgical Research Lab (DMRL) Kanchanbagh Telangana 500058 India", + "ror_ids": [ + "https://ror.org/00jp1zb22" + ] + }, + { + "affiliation": "Osaka University", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "Newcastle University Newcastle upon Tyne United Kingdom", + "ror_ids": [ + "https://ror.org/01kj2bm70" + ] + }, + { + "affiliation": "Technical University of Cluj-Napoca,Department of Automation,Cluj-Napoca,Romania", + "ror_ids": [ + "https://ror.org/03r8nwp71" + ] + }, + { + "affiliation": "Department of Civil Engineering, Indian Institute of Science, Bangalore, 560 012, India", + "ror_ids": [ + "https://ror.org/04dese585" + ] + }, + { + "affiliation": "Massachusetts Department of Public Health, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/050c9qp51" + ] + }, + { + "affiliation": "University Hospital Galway , Galway , Ireland", + "ror_ids": [ + "https://ror.org/04scgfz75" + ] + }, + { + "affiliation": "Institute of Vascular Surgery, “A. Gemelli” Hospital, Catholic University, Rome, Italy", + "ror_ids": [] + }, + { + "affiliation": "Schneider Electric's, Renewable Energies Business, Burnaby, BC, Canada", + "ror_ids": [ + "https://ror.org/02hj7hh93" + ] + }, + { + "affiliation": "City Librarian, Birmingham", + "ror_ids": [] + }, + { + "affiliation": "Baltimore, MD", + "ror_ids": [] + }, + { + "affiliation": "Marburg", + "ror_ids": [] + }, + { + "affiliation": "The Cardiothoracic Institute, Midhurst, West Sussex, U.K.", + "ror_ids": [] + }, + { + "affiliation": "UK Dementia Research Institute at UCL London United Kingdom", + "ror_ids": [ + "https://ror.org/02wedp412" + ] + }, + { + "affiliation": "Department of Orthopedic Surgery, Uijeongbu St. Mary's Hospital, The Catholic University of Korea College of Medicine, Uijeongbu, Korea.", + "ror_ids": [ + "https://ror.org/01fpnj063", + "https://ror.org/02ezaf703" + ] + }, + { + "affiliation": "From the Department of Cell and Molecular Physiology and the McAllister Heart Institute, University of North Carolina at Chapel Hill.", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "All authors: The University of Texas MD Anderson Cancer Center, Houston, TX.", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Department of Pediatrics, University of Arkansas for Medical Sciences, Little Rock", + "ror_ids": [ + "https://ror.org/00xcryt71" + ] + }, + { + "affiliation": "GAZİ ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/054xkpr46" + ] + }, + { + "affiliation": "1Johann Wolfgang Goethe Universität, Frankfurt am Main", + "ror_ids": [ + "https://ror.org/04cvxnb49" + ] + }, + { + "affiliation": "Tribhuvan University", + "ror_ids": [ + "https://ror.org/02rg1r889" + ] + }, + { + "affiliation": "“Carol Davila\" Univesity of Medicine and Pharmacy, Internal Medicine and Nephrology, \"Dr C Davila” Hospital of Nephrology, Bucharest, Romania", + "ror_ids": [ + "https://ror.org/04fm87419" + ] + }, + { + "affiliation": "State Key Laboratory of Lake Science and Environment, Nanjing Institute of Geography and Limnology, Chinese Academy of Sciences, Nanjing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/03k6r8t20" + ] + }, + { + "affiliation": "Department of Advertising and Public Relations, College of Communication Arts and Sciences, Michigan State University, East Lansing, MI, USA", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "Program Studi Manajemen Sumberdaya Perairan, Departemen Sumberdaya Akuatik\nFakultas Perikanan dan Ilmu Kelautan, Universitas Diponegoro", + "ror_ids": [ + "https://ror.org/056bjta22" + ] + }, + { + "affiliation": "School of Biosciences, University of Exeter, Exeter, United Kingdom", + "ror_ids": [ + "https://ror.org/03yghzc09" + ] + }, + { + "affiliation": "Roy & Diana Vagelos Laboratories, Department of Chemistry, University of Pennsylvania, Philadelphia, Pennsylvania 19104-6323", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Institute of Occupational Medicine, Social Medicine, and Environmental Medicine, Goethe University Frankfurt , Theodor-Stern-Kai 7, D-60590 Frankfurt am Main , Germany", + "ror_ids": [ + "https://ror.org/04cvxnb49" + ] + }, + { + "affiliation": "University Hospitals of Derby and Burton NHS Trust , Derby , United Kingdom", + "ror_ids": [ + "https://ror.org/04w8sxm43" + ] + }, + { + "affiliation": "Center of Innovation to Accelerate Discovery and Practice Transformation (ADAPT), Durham Veterans Affairs Medical Center, Durham, North Carolina, USA.", + "ror_ids": [ + "https://ror.org/034adnw64" + ] + }, + { + "affiliation": "Advanced Telecommunications Research Institute International Adaptive Communications Research Laboratories", + "ror_ids": [ + "https://ror.org/01pe1d703" + ] + }, + { + "affiliation": "Department of Materials Science, Uppsala University, S-751 21 Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/048a87296" + ] + }, + { + "affiliation": "Institute for Chemical Plant Physiology, University of Tübingen, 7400 Tübingen, F.R.G.", + "ror_ids": [ + "https://ror.org/03a1kwz48" + ] + }, + { + "affiliation": "Birds Australia415 Riversdale RoadHawthorn EastVictoria 3123Australia", + "ror_ids": [] + }, + { + "affiliation": "Xi’an AMS Center, State Key Laboratory of Loess and Quaternary Geology, Shaanxi Key Laboratory of AMS Technology and Application, Institute of Earth Environment, CAS, Xi’an 710061, China", + "ror_ids": [ + "https://ror.org/04nps9965", + "https://ror.org/03t0yb134" + ] + }, + { + "affiliation": "CENTER FOR INTELLIGENT MATERIAL SYSTEMS AND STRUCTURES, VIRGINIA POLYTECHNIC INSTITUTE AND STATE UNIVERSITY, BLACKSBURG, VA", + "ror_ids": [ + "https://ror.org/02smfhw86" + ] + }, + { + "affiliation": "Department of Chemistry, Wayne State University, Detroit, Michigan 48202, and Department of Chemistry, University of Windsor, Windsor, Ontario N9B 1P4, Canada", + "ror_ids": [ + "https://ror.org/01gw3d370", + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "Oberlin", + "ror_ids": [] + }, + { + "affiliation": "1Earth and Environmental Science Department
 New Mexico Institute of Mining and Technology
 Socorro, New Mexico 87801
 sbilek@nmt.edu", + "ror_ids": [ + "https://ror.org/005p9kw61" + ] + }, + { + "affiliation": "Academician G. Chapidze Emergency Cardiology Centre , Tbilisi , Georgia", + "ror_ids": [] + }, + { + "affiliation": "National Medical Research Center for Therapy and Preventive Medicine", + "ror_ids": [] + }, + { + "affiliation": "Department of Epidemiology, Geisel School of Medicine, Dartmouth College, NH, Lebanon, USA", + "ror_ids": [ + "https://ror.org/049s0rh22" + ] + }, + { + "affiliation": "Department of Medical Biochemistry and Cell Biology, Göteborg University, Box 440, SE-405 30 Göteborg, Sweden", + "ror_ids": [ + "https://ror.org/01tm6cn81" + ] + }, + { + "affiliation": "Texas Univ., Arlington", + "ror_ids": [ + "https://ror.org/019kgqr73" + ] + }, + { + "affiliation": "Hematology and Oncology, Charite University Hospital, Berlin, Germany,", + "ror_ids": [ + "https://ror.org/001w7jn25" + ] + }, + { + "affiliation": "Dalhousie University 1355 Oxford St., P.O. Box 15000 Halifax Nova Scotia Canada B3H 4R2", + "ror_ids": [ + "https://ror.org/01e6qks80" + ] + }, + { + "affiliation": "Principal Lecturer, Faculty of Health and Human Sciences, University of Hertfordshire", + "ror_ids": [ + "https://ror.org/0267vjk41" + ] + }, + { + "affiliation": "Xidian University", + "ror_ids": [ + "https://ror.org/05s92vm98" + ] + }, + { + "affiliation": "b Department of Physics Division of Engineering , Palo Alto , California , USA", + "ror_ids": [] + }, + { + "affiliation": "East China University of Science and Technology, 200237 Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01vyrm377" + ] + }, + { + "affiliation": "Manuro Tech Research Private Limited, Bangalore 560097, Karnataka, India", + "ror_ids": [] + }, + { + "affiliation": "School of Health Sciences, The University of Notre Dame Australia, Fremantle Campus, Fremantle, Australia", + "ror_ids": [ + "https://ror.org/02stey378" + ] + }, + { + "affiliation": "2Monash University, Melbourne", + "ror_ids": [ + "https://ror.org/02bfwt286" + ] + }, + { + "affiliation": "Education Studies (PhD), Biola University.", + "ror_ids": [ + "https://ror.org/02han2n82" + ] + }, + { + "affiliation": "Bundesverband der Arzneimittel-Hersteller e.V. (BAH), Bonn, Deutschland", + "ror_ids": [] + }, + { + "affiliation": "Department of Gynecology, Harbin Medical University Cancer Hospital, Harbin, Heilongjiang 150081, P.R. China", + "ror_ids": [ + "https://ror.org/01f77gp95", + "https://ror.org/05jscf583" + ] + }, + { + "affiliation": "Faculty of Science and Technology, Membrane Surface Science, Membrane Science and Technology, MESA+ Institute of Nanotechnology, University of Twente, 7500 AE Enschede, The Netherlands", + "ror_ids": [ + "https://ror.org/006hf6230" + ] + }, + { + "affiliation": "LabMAg–University of Lisbon Lisbon Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86" + ] + }, + { + "affiliation": "Remote Sensing Center The University of Alabama Tuscaloosa Alabama", + "ror_ids": [ + "https://ror.org/03xrrjk67" + ] + }, + { + "affiliation": "McLean Hospital and Harvard Medical School, Belmont, Massachusetts.", + "ror_ids": [ + "https://ror.org/01kta7d96", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "BURSA TEKNİK ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/03rdpn141" + ] + }, + { + "affiliation": "University of Utah", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "Università Ca' Foscari di Venezia", + "ror_ids": [ + "https://ror.org/04yzxz566" + ] + }, + { + "affiliation": "Fujian Provincial Hospital", + "ror_ids": [ + "https://ror.org/045wzwx52" + ] + }, + { + "affiliation": "Department of Rehabilitation Medicine, Daegu Catholic University School of Medicine, Daegu, Republic of Korea.", + "ror_ids": [ + "https://ror.org/04fxknd68" + ] + }, + { + "affiliation": "School of Economics, Peking University, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Graduate School of Engineering, Kyoto University, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Institute of Catalysis for Energy and Environment, College of Chemistry & Chemical Engineering, Shenyang Normal University, Shenyang, Liaoning 110034, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05cdfgm80" + ] + }, + { + "affiliation": "St. Martin's Lane, W. C.", + "ror_ids": [] + }, + { + "affiliation": "Division of Maternal Fetal Medicine, Mount Sinai South Nassau, Oceanside, New York", + "ror_ids": [] + }, + { + "affiliation": "Hofstra University", + "ror_ids": [ + "https://ror.org/03pm18j10" + ] + }, + { + "affiliation": "Fermi National Accelerator Laboratory, Batavia, IL 60510, USA", + "ror_ids": [ + "https://ror.org/020hgte69" + ] + }, + { + "affiliation": "Division of Pulmonary, Critical Care, and Sleep Medicine, New York University School of Medicine, New York, New York", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "a ARC-Grain Crops Institute , Private Bag X1251, Potchefstroom , 2520 , Republic of South Africa", + "ror_ids": [] + }, + { + "affiliation": "Middle East Technical University, Cankaya, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/014weej12" + ] + }, + { + "affiliation": "University of Tabuk,Department of Information Technology,Tabuk", + "ror_ids": [ + "https://ror.org/04yej8x59" + ] + }, + { + "affiliation": "Biosystematics Research Institute, Agriculture Canada Ottawa K1A 0C6 Canada", + "ror_ids": [ + "https://ror.org/051dzs374" + ] + }, + { + "affiliation": "Harbin Institute of Technology, China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Hirosaki University", + "ror_ids": [ + "https://ror.org/02syg0q74" + ] + }, + { + "affiliation": "Marigold Dairies, Inc., Rochester, Minn.", + "ror_ids": [] + }, + { + "affiliation": "Oxford Transplant Centre", + "ror_ids": [] + }, + { + "affiliation": "Liquid Sunlight Alliance, National Renewable Energy Laboratory, Golden, Colorado 80401, USA", + "ror_ids": [ + "https://ror.org/036266993" + ] + }, + { + "affiliation": "Faculty of Food Engineering, Stefan cel Mare University of Suceava, Suceava, Romania", + "ror_ids": [ + "https://ror.org/035pkj773" + ] + }, + { + "affiliation": "Kaye Implementation & Evaluation LLC, Tacoma, WA, USA", + "ror_ids": [] + }, + { + "affiliation": "Los Alamos National Lab. (LANL), Los Alamos, NM (United States)", + "ror_ids": [ + "https://ror.org/01e41cf67" + ] + }, + { + "affiliation": "UNESP", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Department of Economics and Center for Public Policy and Administration, Thompson Hall, University of Massachusetts, Amherst, MA 01003", + "ror_ids": [ + "https://ror.org/0072zz521" + ] + }, + { + "affiliation": "Area Adviser in Occupational Therapy, Grampian Health Board, Mental Health Services Unit, Royal Cornhill Hospital, Aberdeen", + "ror_ids": [ + "https://ror.org/02gaqn537" + ] + }, + { + "affiliation": "FRE CNRS 2012 Roberval, Département d’Ingénierie Mécanique, Sorbonne Universités, Université de Technologie de Compiègne, France", + "ror_ids": [ + "https://ror.org/04y5kwa70", + "https://ror.org/02en5vm52" + ] + }, + { + "affiliation": "Rolls-Royce Corporation", + "ror_ids": [ + "https://ror.org/03gwgww50" + ] + }, + { + "affiliation": "Department of Material and Life Science, Graduate School of Engineering, Osaka University, 2-1 Yamada-oka, Suita 565-0871, Osaka, Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "1Malaysian Rubber Producers' Research Association, Brickendonbury, SG13 8 NL Hertford, England", + "ror_ids": [] + }, + { + "affiliation": "University of Illinois College of Nursing, Quad-Cities Program, 639-38th Street, Rock Island, IL 61201 USA.", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "NIHON University", + "ror_ids": [ + "https://ror.org/05jk51a88" + ] + }, + { + "affiliation": "School of Economics, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "From the Division of Cardiothoracic Surgery (M.E.M., G.K.K, N.T.K.) and Department of Neurology (Y.W., R.H., J.A.D., M.F.J., C.Y.H.), Washington University School of Medicine, St Louis, Mo.", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Queen Mary Hospital, Department of Medicine , Hong Kong , Hong Kong", + "ror_ids": [ + "https://ror.org/02xkx3e48" + ] + }, + { + "affiliation": "a Thrombosis Research Institute , Emmanuel Kaye Building, Manresa Road, Chelsea, London, SW3 6LR, U.K.", + "ror_ids": [ + "https://ror.org/050r8mq79" + ] + }, + { + "affiliation": "Faculty of Engineering, Tohoku Univ.", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "San Francisco", + "ror_ids": [] + }, + { + "affiliation": "IFP 1 , 1-4 Av. de Bois Préau, 92852 Rueil Malmaison Cedex, France", + "ror_ids": [] + }, + { + "affiliation": "University of Padua", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "University of Massachusetts Amherst, Amherst, MA, USA", + "ror_ids": [ + "https://ror.org/0072zz521" + ] + }, + { + "affiliation": "Department of Anesthesiology and Pain Medicine, School of Medicine, The Catholic University of Korea, Seoul, Korea.", + "ror_ids": [ + "https://ror.org/01fpnj063" + ] + }, + { + "affiliation": "Laboratory Animal Research Center, Qatar University, Doha, Qatar", + "ror_ids": [ + "https://ror.org/00yhnba62" + ] + }, + { + "affiliation": "a Institute of Strength Physics and Materials Science, SB RAS, 2/1 Akademicheskii prospekt, 634021, Tomsk, Russia;, Email: sharkeev@ispms.tsc.ru", + "ror_ids": [ + "https://ror.org/00f4mz521" + ] + }, + { + "affiliation": "Cell Biology and Anatomy Louisiana State University Health Sciences Center New Orleans LA", + "ror_ids": [ + "https://ror.org/01qv8fp92" + ] + }, + { + "affiliation": "Institute Of Human Virology, Nigeria, Lugbe Area, Nigeria", + "ror_ids": [ + "https://ror.org/02e66xy22" + ] + }, + { + "affiliation": "2Wound Healing Research and Glaucoma Units, Institute of Ophthalmology and Moorfields Eye Hospital, London EC1V 9EL, England", + "ror_ids": [ + "https://ror.org/03tb37539" + ] + }, + { + "affiliation": "University of Incheon, Korea", + "ror_ids": [ + "https://ror.org/02xf7p935" + ] + }, + { + "affiliation": "Nizhny Novgorod Academy of the Ministry of Internal Affairs of Russia", + "ror_ids": [ + "https://ror.org/021a3gb32" + ] + }, + { + "affiliation": "Key Lab of Horticultural Plant Biology, Ministry of Education and College of Plant Science and Technology, Huazhong Agricultural University, Wuhan 430070, China", + "ror_ids": [ + "https://ror.org/023b72294" + ] + }, + { + "affiliation": "Wuhan University", + "ror_ids": [ + "https://ror.org/033vjfk17" + ] + }, + { + "affiliation": "Contribution from the Department of Plant Sciences, The Weizmann Institute of Science, 76100 Rehovot, Israel, and the Department of Chemistry, University of California, San Diego, California 92093", + "ror_ids": [ + "https://ror.org/0168r3w48", + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "Aus dem Institut für theoretische Physik der Universität Mainz und den Optischen Werken E. Leitz , Wetzlar", + "ror_ids": [] + }, + { + "affiliation": "University Hospital Waterford Waterford Integrated Care for Older People, , Waterford, Ireland", + "ror_ids": [ + "https://ror.org/007pvy114" + ] + }, + { + "affiliation": "Derby City General Hospital, Derby, UK", + "ror_ids": [ + "https://ror.org/005r9p256" + ] + }, + { + "affiliation": "Laboratory Affiliated with the Institute Pasteur Italy – Cenci Bolognetti Foundation, Department of Drug Chemistry and Technologies Sapienza University of Rome Rome Italy", + "ror_ids": [ + "https://ror.org/02be6w209", + "https://ror.org/051v7w268" + ] + }, + { + "affiliation": "School of Women's and Infants' Health, University of Western Australia, Crawley, Western Australia, Australia.", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "Department of Respiratory Medicine, Faculty of Medicine, University of Thessaly, Larissa, Greece", + "ror_ids": [ + "https://ror.org/04v4g9h31" + ] + }, + { + "affiliation": "55 East 87th Street New York, NY 10128 fax:212–427–3972 E-mail: 75562.510@compuserve.com", + "ror_ids": [] + }, + { + "affiliation": "Food and Drug Administration From the , Washington, D. C.", + "ror_ids": [ + "https://ror.org/034xvzb47" + ] + }, + { + "affiliation": "Department of Psychology Sacred Heart University P.O. Box 6460 Bridgeport, CN 06606", + "ror_ids": [ + "https://ror.org/0085j8z36" + ] + }, + { + "affiliation": "Department of Radiotherapy and Oncology Norfolk and Norwich Hospital", + "ror_ids": [ + "https://ror.org/021zm6p18" + ] + }, + { + "affiliation": "a Leningrad University", + "ror_ids": [] + }, + { + "affiliation": "Instituto Federal do Paraná", + "ror_ids": [ + "https://ror.org/02znfhp50" + ] + }, + { + "affiliation": "Lincoln University\n Department of Tourism\n Sport and Society\n Faculty of Environment\n Society and Design\n P.O. Box 85084\n Lincoln 7647\n New Zealand", + "ror_ids": [ + "https://ror.org/04ps1r162" + ] + }, + { + "affiliation": "Department of Sociology, Duke University, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "East China University of Science and Technology", + "ror_ids": [ + "https://ror.org/01vyrm377" + ] + }, + { + "affiliation": "State University of New York at Old Westbury", + "ror_ids": [ + "https://ror.org/02rrhsz92" + ] + }, + { + "affiliation": "School of Comouting and Communications, The Open University, Milton Keynes MK7 6AA, UK", + "ror_ids": [ + "https://ror.org/05mzfcs16" + ] + }, + { + "affiliation": "School of Electronics Engineering Vellore Institute of Technology Vellore India", + "ror_ids": [ + "https://ror.org/00qzypv28" + ] + }, + { + "affiliation": "ФГОУ ВПО «Омский государственный аграрный университет»", + "ror_ids": [] + }, + { + "affiliation": "The Pennsylvania State University", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "HealthPartners Simulation Center", + "ror_ids": [] + }, + { + "affiliation": "Universität Koblenz-Landau, Germany", + "ror_ids": [ + "https://ror.org/01j9f6752" + ] + }, + { + "affiliation": "Department of Physical Medicine and Rehabilitation; College of Medicine; University of Saskatchewan; Saskatoon Saskatchewan Canada", + "ror_ids": [ + "https://ror.org/010x8gc63" + ] + }, + { + "affiliation": "14476 Potsdam", + "ror_ids": [] + }, + { + "affiliation": "Indira Gandhi Centre for Atomic Research Radiochemistry Program Kalpakkam, Tamil Nadu-603 102, India", + "ror_ids": [ + "https://ror.org/05tkzma19" + ] + }, + { + "affiliation": "Dilip Subramanian is affiliated with the Ecole des Hautes Etudes en Sciences Sociales, Paris.", + "ror_ids": [ + "https://ror.org/02d9dg697" + ] + }, + { + "affiliation": "Monash University, Clayton, Victoria, Australia", + "ror_ids": [ + "https://ror.org/02bfwt286" + ] + }, + { + "affiliation": "Federal State Budgetary Institution of Science \"Kotelnikov Institute of Radioengineering and Electronics of Russian Academy of Sciences\"", + "ror_ids": [ + "https://ror.org/05gbyky62", + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Department of Cardiology, Faculty of Medicine, Recep Tayyip Erdoğan University, Rize, Turkey", + "ror_ids": [ + "https://ror.org/0468j1635" + ] + }, + { + "affiliation": "Centre of Research, Education, Innovation and Intervention in Sport, Faculty of Sport, University of Porto, Portugal.", + "ror_ids": [ + "https://ror.org/043pwc612" + ] + }, + { + "affiliation": "Heller Institute of Medical Research, Sheba Medical Center, Tel-Hashomer, Ramat Gan, Israel", + "ror_ids": [ + "https://ror.org/020rzx487" + ] + }, + { + "affiliation": "Department of Plastic and Reconstructive Surgery, Chang Gung Memorial Hospital, Guei Shan, Taiwan, and Cleft and Craniofacial Centre, Department of Plastic, Reconstructive and Aesthetic Surgery, Kandang Kerbau Women's and Children's Hospital, Singapore.", + "ror_ids": [ + "https://ror.org/02verss31", + "https://ror.org/0228w5t68" + ] + }, + { + "affiliation": "King Abdullah University of Science and Technology , Thuwal, Saudi Arabia", + "ror_ids": [ + "https://ror.org/01q3tbs38" + ] + }, + { + "affiliation": "Department of Medicine, King George’s Medical University, Lucknow, Uttar Pradesh, India", + "ror_ids": [ + "https://ror.org/00gvw6327" + ] + }, + { + "affiliation": "Yarmouk University, Irbid, Jordan", + "ror_ids": [ + "https://ror.org/004mbaj56" + ] + }, + { + "affiliation": "CREST , Japan Science and Technology Agency, 4-3-16, Jonan, Yonezawa-shi, Yamagata-Pref.,992-8510, Japan", + "ror_ids": [ + "https://ror.org/00097mb19" + ] + }, + { + "affiliation": "Inorganic Functional Materials Research Institute, AIST", + "ror_ids": [] + }, + { + "affiliation": "Department of Southern Area Crop Science, National Institute of Crop Science, RDA, Miryang 50424, Korea", + "ror_ids": [] + }, + { + "affiliation": "School of Mechanical Engineering Sungkyunkwan University Suwon 16419 South Korea", + "ror_ids": [ + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Department of Audiology and Speech Pathology University of Arkansas for Medical Sciences Arkansas Children's Hospital Little Rock Arkansas USA", + "ror_ids": [ + "https://ror.org/01t33qq42", + "https://ror.org/00xcryt71" + ] + }, + { + "affiliation": "Univ of Massachusetts Lowell, Lowell, MA", + "ror_ids": [ + "https://ror.org/03hamhx47" + ] + }, + { + "affiliation": "National University of Life and Environmental Sciences of Ukraine, Ukraine", + "ror_ids": [ + "https://ror.org/0441cbj57" + ] + }, + { + "affiliation": "Department of Chemistry, Northwestern University, 2145 Sheridan Road, Evanston, Illinois 60208, United States", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Best-selling author, psychologist and childcare expert", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Science, University of Kyoto", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Department of Psychology Center for Neuroscience Brigham Young University Provo UT USA", + "ror_ids": [ + "https://ror.org/047rhhm47" + ] + }, + { + "affiliation": "Universidade Federal do Paraná, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "Akita University", + "ror_ids": [ + "https://ror.org/03hv1ad10" + ] + }, + { + "affiliation": "Department of Cardiology, Selçuk University, Konya, Turkey", + "ror_ids": [ + "https://ror.org/045hgzm75" + ] + }, + { + "affiliation": "Mech. Eng., Shoan Inst. of Technol., 1-1-25, Tsujido-nishikaigan, Fujisawa, Kanagawa 2518511, Japan, ohtani@mech.shonan-it.ac.jp", + "ror_ids": [ + "https://ror.org/01bawqf59" + ] + }, + { + "affiliation": "Department of Hematology and Hematopoietic Cell Transplantation City of Hope National Medical Center Duarte California USA", + "ror_ids": [ + "https://ror.org/00w6g5w60" + ] + }, + { + "affiliation": "Omsk State Medical University", + "ror_ids": [ + "https://ror.org/04qgykh45" + ] + }, + { + "affiliation": "Department of Radiology, St. Marianna University School of Medicine", + "ror_ids": [ + "https://ror.org/043axf581" + ] + }, + { + "affiliation": "Osaka School of International Public Policy, Osaka University, Toyonaka, Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "Department of Applied Physics, Science University of Tokyo", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Advanced Institute for Medical Sciences Dalian Medical University Dalian China", + "ror_ids": [ + "https://ror.org/04c8eg608" + ] + }, + { + "affiliation": "Department of Biology, Molecular Biology Section, Faculty of Science, Hacettepe University, Ankara, Turkey.", + "ror_ids": [ + "https://ror.org/04kwvgz42" + ] + }, + { + "affiliation": "Beihang University", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Pasteur St. Petersburg Research Institute of Epidemiology and Microbiology", + "ror_ids": [] + }, + { + "affiliation": "1\n aniramonamor@gmail.com", + "ror_ids": [] + }, + { + "affiliation": "Richard Glover (musician, composer, researcher), Department of Music, University of Huddersfield, HD1 3DH, U.K..", + "ror_ids": [ + "https://ror.org/05t1h8f27" + ] + }, + { + "affiliation": "国際医療福祉大学三田病院頭頸部腫瘍センター", + "ror_ids": [] + }, + { + "affiliation": "Pediatric Department, Faculty of Medicine Tanta University Tanta AlGharbia Egypt", + "ror_ids": [ + "https://ror.org/016jp5b92" + ] + }, + { + "affiliation": "Shared Systems Corporation Dallas, Texas", + "ror_ids": [] + }, + { + "affiliation": "University of California, Davis, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Leiden University Centre for Linguistics (LUCL), Leiden University, Reuvensplaats 3, 2311 BE Leiden, The Netherlands", + "ror_ids": [ + "https://ror.org/027bh9e22" + ] + }, + { + "affiliation": "The Pernicious Anaemia Society Bridgend UK", + "ror_ids": [] + }, + { + "affiliation": "National Cancer Institute, Bethesda, MD.", + "ror_ids": [ + "https://ror.org/040gcmg81" + ] + }, + { + "affiliation": "Dept. of Electr. Eng., Tsinghua Univ., Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "SVERI’s College of Engineering, Pandharpur, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurology UCSF/SFVAMC San Francisco CA United States", + "ror_ids": [ + "https://ror.org/049peqw80" + ] + }, + { + "affiliation": "University of California, Santa Cruz, CA, USA", + "ror_ids": [ + "https://ror.org/03s65by71" + ] + }, + { + "affiliation": "Department of Microbiology, University of Pennsylvania School of Medicine, Philadelphia, Pennsylvania 19104", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Hematology Research Group, IIS La Fe, Valencia", + "ror_ids": [ + "https://ror.org/05n7v5997" + ] + }, + { + "affiliation": "Department of Materials Science, Graduate School of Engineering, Tohoku University", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "Aberdeen Centre for Women's Health Research, School of Medicine University of Aberdeen Aberdeen UK", + "ror_ids": [ + "https://ror.org/016476m91" + ] + }, + { + "affiliation": "Department of Radiology, University of Missouri-Columbia, Columbia, MO.", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "The City College of New York (United States)", + "ror_ids": [ + "https://ror.org/00wmhkr98" + ] + }, + { + "affiliation": "University of California, Santa Barbara", + "ror_ids": [ + "https://ror.org/02t274463" + ] + }, + { + "affiliation": "Pharmacology & Pharmacy University of Hong Kong Hong Kong Hong Kong", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "Texas A&M University, United States", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "Department of Geology, Syracuse University", + "ror_ids": [ + "https://ror.org/025r5qe02" + ] + }, + { + "affiliation": "1 Is the K-6 curriculum coordinator at Milton Academy, 170 Centre Street, Milton, MA 02186.", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemistry, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Shell Development Company, Emeryville, Calif.", + "ror_ids": [] + }, + { + "affiliation": "City of Hope, Duarte, CA", + "ror_ids": [ + "https://ror.org/00w6g5w60" + ] + }, + { + "affiliation": "Station de Recherches Avicoles\n INRA Centre de Tours\n 37380 Nouzilly\n France", + "ror_ids": [] + }, + { + "affiliation": "IBM, 20054 Segrate, Italy", + "ror_ids": [ + "https://ror.org/02nc81e13" + ] + }, + { + "affiliation": "Institute for Interdisciplinary Information Sciences, Tsinghua University, Beijing 100084, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Eni SpA", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemical Engineering, ML 171, University of Cincinnati, Cincinnati, Ohio 45221, and Green Chemistry and Engineering Program, U.S. EPA National Risk Management Research Laboratory, 26 West Martin Luther King Drive, Cincinnati, Ohio 45268", + "ror_ids": [ + "https://ror.org/01e3m7079" + ] + }, + { + "affiliation": "Department of Urology; Vita Salute San Raffaele University; Milan Italy", + "ror_ids": [ + "https://ror.org/01gmqr298" + ] + }, + { + "affiliation": "Department of Sanitary Engineering, Faculty of Civil Engineering, Slovak University of Technology, Bratislava, Slovak Republic", + "ror_ids": [ + "https://ror.org/0561ghm58" + ] + }, + { + "affiliation": "Beijing Key Laboratory on MCAACI, School of Mathematics and Statistics, Beijing Institute of Technology, Beijing, People's Republic of China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "(Istituto Nazionale per lo Studio e la Cura dei Tumori, Milano)", + "ror_ids": [] + }, + { + "affiliation": "TRW SYSTEMS GROUP, REDONDO BEACH, CALIF.", + "ror_ids": [] + }, + { + "affiliation": "University of Ballarat", + "ror_ids": [] + }, + { + "affiliation": "ROYAL COLLEGE OF MUSIC, LONDON", + "ror_ids": [ + "https://ror.org/04kwn3124" + ] + }, + { + "affiliation": "Institute for Advanced Study, Technische Universität München 2 , Lichtenbergstr. 2a, D-85748 Garching, Germany", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Department of Civil and Environmental Engineering Birzeit University Birzeit Palestine", + "ror_ids": [ + "https://ror.org/0256kw398" + ] + }, + { + "affiliation": "14319 Auburndale, Livonia, MI 48154, USA,", + "ror_ids": [] + }, + { + "affiliation": "京都光華女子大学こども教育学部", + "ror_ids": [] + }, + { + "affiliation": "Department of Biotechnology Tajen University Yanpu Township Taiwan", + "ror_ids": [ + "https://ror.org/01fvf0d84" + ] + }, + { + "affiliation": "University of Minnesota Crookston,Dept. of Math, Science and Technology,Crookston,MN,USA", + "ror_ids": [ + "https://ror.org/04w6xt508" + ] + }, + { + "affiliation": "PG & Research Department of Commerce, Guru Nanak College, Chennai, Tamil Nadu, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Atomic Physics, Roland Eötvös University, Pázmány Péter sétány 1/A, H–1117 Budapest, Hungary", + "ror_ids": [ + "https://ror.org/01jsq2704" + ] + }, + { + "affiliation": "College of Medicine, King Khaled University, Abha 61421, Saudi Arabia", + "ror_ids": [ + "https://ror.org/052kwzs30" + ] + }, + { + "affiliation": "Department of Oral Biology, State University of New York at Buffalo, 14214, USA.", + "ror_ids": [ + "https://ror.org/01y64my43" + ] + }, + { + "affiliation": "Division of Hematology-oncologyChildren's Hospital of Zhejiang University School of Medicine, Key Laboratory of Reproductive Genetics (Zhejiang University), Ministry of Education, Hangzhou, PR China", + "ror_ids": [ + "https://ror.org/025fyfd20", + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Pacific Northwest National Lab. (PNNL), Richland, WA (United States)", + "ror_ids": [ + "https://ror.org/05h992307" + ] + }, + { + "affiliation": "Kirov Military Medical Academy", + "ror_ids": [ + "https://ror.org/035k4m812" + ] + }, + { + "affiliation": "Department of Electronics and Instrumentation, University of Arkansas, Graduate Institute of Technology, Little Rock, Arkansas", + "ror_ids": [ + "https://ror.org/04fttyv97" + ] + }, + { + "affiliation": "Zhejiang Provincial Key Laboratory of Advanced Chemical Engineering Manufacture Technology, College of Chemical and Biological Engineering, Zhejiang University, Hangzhou 310027, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "University of Nevada", + "ror_ids": [ + "https://ror.org/01keh0577" + ] + }, + { + "affiliation": "San Jose State University", + "ror_ids": [ + "https://ror.org/04qyvz380" + ] + }, + { + "affiliation": "School of Mechanical Engineering, North China University of Science and Technology, Tangshan, Hebei, China", + "ror_ids": [ + "https://ror.org/04z4wmb81" + ] + }, + { + "affiliation": "Hamamatsu University School of Medicine", + "ror_ids": [ + "https://ror.org/00ndx3g44" + ] + }, + { + "affiliation": "Department of Biomedical Engineering and the Julius Silver Institute of Biomedical Engineering, Technion, Israel Institute of Technology, Haifa 32000, Israel", + "ror_ids": [ + "https://ror.org/03qryx823" + ] + }, + { + "affiliation": "Family Service Association of America New York, New York", + "ror_ids": [] + }, + { + "affiliation": "University of Ibadan, Nigeria", + "ror_ids": [ + "https://ror.org/03wx2rr30" + ] + }, + { + "affiliation": "Faculty of Health Sciences Hokkaido University Sapporo Japan", + "ror_ids": [ + "https://ror.org/02e16g702" + ] + }, + { + "affiliation": "Department of Chemical and Biomolecular Engineering, University of California, Berkeley, California 94720, United States", + "ror_ids": [ + "https://ror.org/01an7q238" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Pohang University of Science and Technology, San 31 Hyojadong Pohang, Kyungbook 790–784, Korea", + "ror_ids": [ + "https://ror.org/04xysgw12" + ] + }, + { + "affiliation": "Department of Chemistry & Biochemistry, University of California at San Diego, La Jolla, California 92093-0601", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Immunology Research Institute and Clinic, Nagoya, Japan", + "ror_ids": [] + }, + { + "affiliation": "Università degli Studi di Ferrara", + "ror_ids": [ + "https://ror.org/041zkgm14" + ] + }, + { + "affiliation": "Plessey Research Roke Manor Ltd (United Kingdom)", + "ror_ids": [] + }, + { + "affiliation": "Technical Research Institute, Hibiya Engineering, Ltd.", + "ror_ids": [] + }, + { + "affiliation": "Institute for Quantum Electronics, Eidgenössische Technische Hochschule (ETH) Zürich, 8093 Zürich, Switzerland.", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Departments of Medical Oncology and Bone Marrow Transplantation, Jaslok Hospital and Research Center, Mumbai, Maharashtra, India", + "ror_ids": [ + "https://ror.org/052w06y65" + ] + }, + { + "affiliation": "Nagoya University", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Special Center for Molecular Medicine, Jawaharlal Nehru University , New Delhi , India", + "ror_ids": [ + "https://ror.org/0567v8t28" + ] + }, + { + "affiliation": "McGill University", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Department of Neurology, Cerebrovascular Diseases Unit, Hospital Universitari Mútua de Terrassa, Catalonia, 08227 Terrassa, Spain", + "ror_ids": [ + "https://ror.org/02h74qa12" + ] + }, + { + "affiliation": "Department of Cell Biology, Duke University Medical Center, Durham, NC 27710;", + "ror_ids": [ + "https://ror.org/03njmea73" + ] + }, + { + "affiliation": "Halliburton", + "ror_ids": [ + "https://ror.org/01jn7ba52" + ] + }, + { + "affiliation": "Seattle, Washington", + "ror_ids": [] + }, + { + "affiliation": "1West China Hospital, Sichuan University, Chengdu, China;", + "ror_ids": [ + "https://ror.org/011ashp19", + "https://ror.org/007mrxy13" + ] + }, + { + "affiliation": "Produce for Better Health Foundation5341 Limestone RoadWilmingtonDE19808", + "ror_ids": [] + }, + { + "affiliation": "Bone Res Lab, School of Dentistry of Ribeirao Preto University of São Paulo Ribeirao Preto Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Clinical and Movement Neurosciences, UCL Queen Square Institute of Neurology, Queen Square, London, UK", + "ror_ids": [ + "https://ror.org/048b34d51" + ] + }, + { + "affiliation": "Department of Urology & Dermatology, Sapporo Medical College", + "ror_ids": [] + }, + { + "affiliation": "Division of Bariatric and Minimally Invasive Surgery, Howard University Hospital, Washington, DC 20060, USA", + "ror_ids": [ + "https://ror.org/01w4jxn67" + ] + }, + { + "affiliation": "Professor of English at Simon Fraser University. He has recently published compilations on playwrights Alan Ayckbourn and David Hare in Methuen’s \"Writers on File\" series, and is completing a study of E.M. Forster’s novel, Howards End.", + "ror_ids": [ + "https://ror.org/0213rcc28" + ] + }, + { + "affiliation": "Dipartimento di Chimica “G. Ciamician”, Università di Bologna, Via Selmi, 2, I-40126 Bologna, Italy", + "ror_ids": [ + "https://ror.org/01111rn36" + ] + }, + { + "affiliation": "Department of Biological and Environmental Science, School of Resource Wisdom, P.O. Box 35, FI-40014 University of Jyväskylä, Finland", + "ror_ids": [ + "https://ror.org/05n3dz165" + ] + }, + { + "affiliation": "EGADE Business School, Tecnologico de Monterrey, Mexico", + "ror_ids": [ + "https://ror.org/03ayjn504" + ] + }, + { + "affiliation": "Faculdade de Química, Universidade Federal do Pará, 66075-900 Belém, Pa, Brazil", + "ror_ids": [ + "https://ror.org/03q9sr818" + ] + }, + { + "affiliation": "Harbin Institute of Technology", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "UMR 7179 CNRS/MNHN, Bâtiment d’Anatomie Comparée, Muséum National d’Histoire Naturelle, Paris, France", + "ror_ids": [ + "https://ror.org/03wkt5x30" + ] + }, + { + "affiliation": "Department of Dental and Biomedical Materials Science, Nagasaki University Graduate School of Biomedical Science, Nagasaki 852-8523, Japan e-mail:", + "ror_ids": [ + "https://ror.org/058h74p94" + ] + }, + { + "affiliation": "Department of Epidemiology & Biostatistics,, VU University Medical Center, The Netherlands", + "ror_ids": [ + "https://ror.org/00q6h8f30" + ] + }, + { + "affiliation": "Department of Economics and School of International Affairs, Carleton University, Ottawa.", + "ror_ids": [ + "https://ror.org/02qtvee93" + ] + }, + { + "affiliation": "Lesley Wills Midwife, Médecins Sans Frontières (MSF) / Doctors without Borders", + "ror_ids": [ + "https://ror.org/032mwd808" + ] + }, + { + "affiliation": "Department of Mechanical Systems Engineering, Nagasaki University", + "ror_ids": [ + "https://ror.org/058h74p94" + ] + }, + { + "affiliation": "Department of Mathematics, Indian Institute of Technology, Madras 36, India", + "ror_ids": [ + "https://ror.org/03v0r5n49" + ] + }, + { + "affiliation": "Institute of Biomedical Engineering University of Toronto Toronto ON M5S 3G9 Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "School of Materials Science and Engineering, Central South University, Changsha 410083, Hunan, China", + "ror_ids": [ + "https://ror.org/00f1zfq44" + ] + }, + { + "affiliation": "Autodesk Research, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/01b3dk794" + ] + }, + { + "affiliation": "Anhui Agricultural University", + "ror_ids": [ + "https://ror.org/0327f3359" + ] + }, + { + "affiliation": "Department of Geology & Geological Engineering, Colorado School of Mines, Golden, Colorado 80401, USA", + "ror_ids": [ + "https://ror.org/04raf6v53" + ] + }, + { + "affiliation": "Institute of Biomedicine, University of Southern Switzerland, Lugano, Switzerland", + "ror_ids": [ + "https://ror.org/03c4atk17" + ] + }, + { + "affiliation": "College of Water Sciences", + "ror_ids": [] + }, + { + "affiliation": "University of Sciences and Technology Houari Boumediene, Algiers, Algeria", + "ror_ids": [ + "https://ror.org/02kb89c09" + ] + }, + { + "affiliation": "New York University, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "Department of Sciences and Water Engineering University of Birjand Birjand Iran", + "ror_ids": [ + "https://ror.org/03g4hym73" + ] + }, + { + "affiliation": "University of Namibia, Windhoek, Namibia", + "ror_ids": [ + "https://ror.org/016xje988" + ] + }, + { + "affiliation": "Department of Animal Biology, School of Biology, College of Science, University of Tehran, Tehran, Iran", + "ror_ids": [ + "https://ror.org/05vf56z40" + ] + }, + { + "affiliation": "University of British Columbia, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Biomedical Engineering, Optical Imaging Laboratory, Florida International University, Miami, Florida.", + "ror_ids": [ + "https://ror.org/02gz6gg07" + ] + }, + { + "affiliation": "Wythenshawe Hospital Manchester UK", + "ror_ids": [ + "https://ror.org/05vpsdj37" + ] + }, + { + "affiliation": "Shibaura Institute of Technology", + "ror_ids": [ + "https://ror.org/020wjcq07" + ] + }, + { + "affiliation": "Technical University of Crete", + "ror_ids": [ + "https://ror.org/03f8bz564" + ] + }, + { + "affiliation": "Bell Telephone Laboratories", + "ror_ids": [] + }, + { + "affiliation": "National Research Nuclear University \"Moscow Engineering Physics Institute\" and Centre for Cosmoparticle Physics \"Cosmion\" 115409 Moscow, Russia", + "ror_ids": [ + "https://ror.org/04w8z7f34" + ] + }, + { + "affiliation": "Department of Molecular Physics, Lodz University of Technology, Zeromskiego 116, 90-924 Lodz, Poland", + "ror_ids": [ + "https://ror.org/00s8fpf52" + ] + }, + { + "affiliation": "Pancosma, Geneva, Switzerl", + "ror_ids": [] + }, + { + "affiliation": "Institut für Reaktortechnik, ETH Zürich, CH-5303 Würenlingen, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Department of Theology & Religious Studies Virginia Woolf Building, King's College London, 22 Kingsway London WC2B 6LE UK", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "Centre National de la Recherche Scientifique, Centre de Biologie Moléculaire, Marseille 9e, France", + "ror_ids": [ + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Department of Power Electronics and Energy Control Systems, Faculty of Electrical Engineering, Automatics, Computer Science and Biomedical Engineering, AGH University of Krakow, al. Mickiewicza 30, 30-059 Krakow, Poland", + "ror_ids": [ + "https://ror.org/00bas1c41" + ] + }, + { + "affiliation": "Graduate Student, Dept. of Civil Engineering, Islamic Azad Univ., Najafabad Branch, Esfahan, Iran.", + "ror_ids": [ + "https://ror.org/01kzn7k21" + ] + }, + { + "affiliation": "Univ. of Michigan, Ann Arbor, MI (United States)", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Massachusetts General Hospital, Boston, MA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Universidade Estadual Paulista, Brasil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "The Laboratory of Thrombosis Pharmacology, Istituto di Ricerche Farmacologiche Mario Negri, Consorzio Mario Negri Sud, Santa Maria Imbaro, Italy", + "ror_ids": [ + "https://ror.org/05aspc753" + ] + }, + { + "affiliation": "Departamento de Química Física y Analítica, Universidad de Oviedo, Oviedo, Spain", + "ror_ids": [ + "https://ror.org/006gksa02" + ] + }, + { + "affiliation": "Molecular Genetics, Quest Diagnostics Nichols Institute, San Juan Capistrano, CA, USA", + "ror_ids": [ + "https://ror.org/010g9bb70" + ] + }, + { + "affiliation": "Beijing Institute of Technology", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "University of Central England, Birmingham, UK,", + "ror_ids": [ + "https://ror.org/00t67pt25" + ] + }, + { + "affiliation": "Liver and Immunology Research Center, Daejeon Oriental Hospital, Oriental Medical College, Daejeon University, 176-9 Daeheung-ro, Jung-gu, Daejeon 34929, Republic of Korea", + "ror_ids": [ + "https://ror.org/05vc01a67", + "https://ror.org/02eqchk86" + ] + }, + { + "affiliation": "West Virginia University Morgantown West Virginia USA", + "ror_ids": [ + "https://ror.org/011vxgd24" + ] + }, + { + "affiliation": "TÜV SÜD Product Service GmbH, Munich, Germany", + "ror_ids": [ + "https://ror.org/01k9hhd91" + ] + }, + { + "affiliation": "University of Newcastle, Australia", + "ror_ids": [ + "https://ror.org/00eae9z71" + ] + }, + { + "affiliation": "Alanya Alaaddin Keykubat Üniversitesi", + "ror_ids": [ + "https://ror.org/01zxaph45" + ] + }, + { + "affiliation": "Department of Gynecology and Obstetrics, Peking Union Medical College Hospital, Chinese Academy of Medical Science and Peking Union Medical College, Dongcheng, Beijing 100730, P.R. China", + "ror_ids": [ + "https://ror.org/04jztag35", + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "The Second Artillery Equipment Research Academy, Beijing, China", + "ror_ids": [] + }, + { + "affiliation": "School of Social Sciences, University of Newcastle", + "ror_ids": [] + }, + { + "affiliation": "Adama science and Technology University", + "ror_ids": [ + "https://ror.org/02ccba128" + ] + }, + { + "affiliation": "Department of Chemistry, Purdue University, West Lafayette, Indiana, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Texas A&M University, Texas, USA", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "University of California, Davis, Davis, CA, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "College of Liquor and Food Engineering Guizhou University Guiyang P.R. China", + "ror_ids": [ + "https://ror.org/02wmsc916" + ] + }, + { + "affiliation": "School of Pharmacy, University of Otago (Marra), Dunedin, New Zealand", + "ror_ids": [ + "https://ror.org/01jmxt844" + ] + }, + { + "affiliation": "Department of Pharmacognosy and Organic Medicament, University of Los Andes, Mérida, Venezuela 5101", + "ror_ids": [ + "https://ror.org/02h1b1x27" + ] + }, + { + "affiliation": "National Institute of Advanced Industrial Science and Technology (AIST) Institute for Human Science and Biomedical Engineering, , 1-8-31 Midorigaoka, Ikeda, Osaka 563-8577, Japan", + "ror_ids": [ + "https://ror.org/01703db54" + ] + }, + { + "affiliation": "University of Florida, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Key Lab of Craniocerebral Diseases of Ningxia Hui Autonomous Region Yinchuan China", + "ror_ids": [] + }, + { + "affiliation": "Faculdade de Medicina de São José do Rio Preto, Brasil", + "ror_ids": [ + "https://ror.org/052e6h087" + ] + }, + { + "affiliation": "University of Texas at Austin, TX, USA", + "ror_ids": [ + "https://ror.org/00hj54h04" + ] + }, + { + "affiliation": "StataCorp", + "ror_ids": [ + "https://ror.org/009n4a626" + ] + }, + { + "affiliation": "Department of Surgery, University of Turin, Turin, Italy", + "ror_ids": [ + "https://ror.org/048tbm396" + ] + }, + { + "affiliation": "Yunnan University of Nationalities", + "ror_ids": [ + "https://ror.org/030jhb479" + ] + }, + { + "affiliation": "Faculty of Electronic Engineering, University of Nis", + "ror_ids": [ + "https://ror.org/00965bg92" + ] + }, + { + "affiliation": "Department of Psychology, Queen's University, Kingston,\nOntario, Canada K7L 3N6", + "ror_ids": [ + "https://ror.org/02y72wh86" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, University of Health Sciences, Trabzon Kanuni Health Practice and Research Center, Trabzon, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Proteinic and Man-made Fibres Department, Textile Research and Technology Institute, National Research Centre, Giza, Egypt", + "ror_ids": [ + "https://ror.org/02n85j827" + ] + }, + { + "affiliation": "Department of Biochemistry and Microbiology, Rutgers University, USA", + "ror_ids": [ + "https://ror.org/05vt9qd57" + ] + }, + { + "affiliation": "Stanford University, 579 Serra Mall, Stanford, CA 94305, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Graduate School of Engineering, Fukuoka Institute of Technology", + "ror_ids": [ + "https://ror.org/00bmxak18" + ] + }, + { + "affiliation": "Junior Research Fellow, School of Water Resources Engineering, Jadavpur Univ., Kolkata, West Bengal 700032, India.", + "ror_ids": [ + "https://ror.org/02af4h012" + ] + }, + { + "affiliation": "ETH Zurich Institute of Structural Engineering Zurich Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "ATME College of Engineering,Department of Electronics & Communication Engineering,Mysuru,India", + "ror_ids": [] + }, + { + "affiliation": "Division of Immune Diversity (D150), German Cancer Research Center (DKFZ), 69120 Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/04cdgtt98" + ] + }, + { + "affiliation": "University of Bonn Institute of Physics, , Wegelerstr. 8, 53115 Bonn, Germany", + "ror_ids": [ + "https://ror.org/041nas322" + ] + }, + { + "affiliation": "Division of Cardiovascular Diseases and Internal Medicine, Mayo Clinic, Rochester, Minn.", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Editor, Pipes and Pipelines International, Scientific Surveys Ltd, Beaconsfield, Bucks", + "ror_ids": [] + }, + { + "affiliation": "Department of Oral and Maxillofacial Surgery, College of Dentistry, Wonkwang University, Iksan, Korea.", + "ror_ids": [ + "https://ror.org/006776986" + ] + }, + { + "affiliation": "Fair-port (N. Y.) Central School District", + "ror_ids": [] + }, + { + "affiliation": "Salisbury State University.", + "ror_ids": [] + }, + { + "affiliation": "University of Houston", + "ror_ids": [ + "https://ror.org/048sx0r50" + ] + }, + { + "affiliation": "1 Department of Geotechnology, Delft University of Technology", + "ror_ids": [ + "https://ror.org/02e2c7k09" + ] + }, + { + "affiliation": "Henan Univ", + "ror_ids": [ + "https://ror.org/003xyzq10" + ] + }, + { + "affiliation": "Department of Clinical Veterinary Medicine, Vetsuisse Faculty, University of Bern, Bern, Switzerland (J.D., K.T., P.R., J.H., T.F.); Institute of Animal Pathology, Vetsuisse Faculty, University of Bern, Bern, Switzerland (M.W.); and Clinic for Small Animal Surgery and Reproduction, Veterinary Faculty of the Ludwig-Maximilians-University of Munich, Munich, Germany (A.B.).", + "ror_ids": [ + "https://ror.org/05591te55", + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "Bulgarian National Patients' Organization Sofia Bulgaria", + "ror_ids": [] + }, + { + "affiliation": "Tel Aviv University, Israel", + "ror_ids": [ + "https://ror.org/04mhzgx49" + ] + }, + { + "affiliation": "Clinical Instructor, P D Hinduja Hospital & MRC , College of Nursing.", + "ror_ids": [ + "https://ror.org/00a6fbp85" + ] + }, + { + "affiliation": "Embrapa Recursos Genéticos e Biotecnologia, Brasil", + "ror_ids": [] + }, + { + "affiliation": "Chester and Helen Siess Professor, Director, Ven Te Chow Hydrosystems Laboratory, Dept. of Civil and Environmental Engineering, Univ. of Illinois at Urbana-Champaign, 205 N Mathews Ave., Urbana, IL 61801.", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Population Research Centre, Gokhale Institute of Politics and Economics, Pune, India", + "ror_ids": [ + "https://ror.org/01mksg519" + ] + }, + { + "affiliation": "Department of Preventive Medicine, University of Southern California, Los Angeles, California, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "Present affiliation: Department of Radiology, Division of Interventional Radiology, Boston Medical Center, Boston, MA", + "ror_ids": [ + "https://ror.org/010b9wj87" + ] + }, + { + "affiliation": "Department of Chemical Sciences, Indian Institute of Science Education and Research, Kolkata, Mohanpur, 741 246, West Bengal, India", + "ror_ids": [ + "https://ror.org/00djv2c17" + ] + }, + { + "affiliation": "National University of Singapore (Suzhou) Research Institute, Suzhou 215123, China", + "ror_ids": [ + "https://ror.org/03ebk0c60", + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Interdisciplinary Research Institute for Biosciences, Mukogawa Women's University", + "ror_ids": [ + "https://ror.org/009x65438" + ] + }, + { + "affiliation": "Commune of Scientific Engineers, Institute of Physics, Chinese Academy of Sciences, Beijing 100190, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/05cvf7v30" + ] + }, + { + "affiliation": "PADT, Inc., Tempe, AZ", + "ror_ids": [ + "https://ror.org/02xrvxv47" + ] + }, + { + "affiliation": "Graduate School of Agriculture, Kyoto University", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Mitsubishi electric corporation, Amagasaki-City, Japan", + "ror_ids": [ + "https://ror.org/033y26782" + ] + }, + { + "affiliation": "Fiocruz, Brasil", + "ror_ids": [] + }, + { + "affiliation": "NOAA Atlantic Oceanographic and Meterological Laboratory, Miami, Florida", + "ror_ids": [ + "https://ror.org/042r9xb17" + ] + }, + { + "affiliation": "1 University of Michigan—Dearborn Dearborn, Michigan", + "ror_ids": [ + "https://ror.org/035wtm547" + ] + }, + { + "affiliation": "Department of Population Health London School of Hygiene & Tropical Medicine London UK", + "ror_ids": [ + "https://ror.org/00a0jsq62" + ] + }, + { + "affiliation": "Australian Institute for Bioengineering and Nanotechnology (AIBN) The University of Queensland Brisbane Queensland 4072 Australia", + "ror_ids": [ + "https://ror.org/00rqy9422" + ] + }, + { + "affiliation": "Chemistry Section, Faculty of Education, Toyama University", + "ror_ids": [ + "https://ror.org/0445phv87" + ] + }, + { + "affiliation": "Department of Chemistry, Université de Montréal, C.P. 6128, succursale Centre-ville, Montréal, Québec, Canada H3C 3J7", + "ror_ids": [ + "https://ror.org/0161xgx34" + ] + }, + { + "affiliation": "Schlumberger", + "ror_ids": [ + "https://ror.org/009m79n22" + ] + }, + { + "affiliation": "Department of Rehabilitation, Nagoya University Graduate School of Medicine, Nagoya, Japan", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Laboratoire de Physique Théorique et Hautes Energies, Université Pierre et Marie Curie, Tour 16-1er étage,4 place Jussieu, 75230 Paris Cedex 05, France", + "ror_ids": [ + "https://ror.org/02mph9k76" + ] + }, + { + "affiliation": "1 University of Oxford , Department of Politics and International Relations , Manor Rd, Oxford OX1 3UQ , United Kingdom .", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Bogie Technical Center CRRC Tangshan Co., Ltd Tangshan China", + "ror_ids": [] + }, + { + "affiliation": "Empire State College, State University of New York", + "ror_ids": [ + "https://ror.org/01q1z8k08" + ] + }, + { + "affiliation": "Chiron Corporation, Emeryville, California 94608", + "ror_ids": [] + }, + { + "affiliation": "Shanghai Institute of Organic Chemistry", + "ror_ids": [ + "https://ror.org/01y3hvq34" + ] + }, + { + "affiliation": "Department of Geography, Florida State University, Tallahassee, FL 32306-2050, USA", + "ror_ids": [ + "https://ror.org/05g3dte14" + ] + }, + { + "affiliation": "School of Computing Science and Engineering, School of VIT Bhopal University, Sehore, Madhya Pradesh, India", + "ror_ids": [ + "https://ror.org/02ax13658" + ] + }, + { + "affiliation": "Department of Rehabilitation, Sonodakai Rehabilitation Hospital", + "ror_ids": [] + }, + { + "affiliation": "Department of Heart and Vessels, Cardiac Surgery Unit and Heart Transplantation Center; “S. Camillo-Forlanini” Hospital; Rome Italy", + "ror_ids": [ + "https://ror.org/04z5vy146" + ] + }, + { + "affiliation": "DEPARTMENT OF ANTHROPOLOGY, HARVARD UNIVERSITY, USA", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Tilburg U.", + "ror_ids": [ + "https://ror.org/04b8v1s79" + ] + }, + { + "affiliation": "Department of Neurosurgery, K.J. Somaiya Medical College and Hospital, Mumbai, India", + "ror_ids": [ + "https://ror.org/05f71q776" + ] + }, + { + "affiliation": "Department of Environment and Planning University of Aveiro Portugal", + "ror_ids": [ + "https://ror.org/00nt41z93" + ] + }, + { + "affiliation": "Franklin & Marshall College Lancaster, PA 17604, USA", + "ror_ids": [ + "https://ror.org/04fp4ps48" + ] + }, + { + "affiliation": "Veterans Administration Hospital, San Diego, CA 92161", + "ror_ids": [] + }, + { + "affiliation": "UiT ‐ The Arctic University of Norway Tromsø Norway", + "ror_ids": [ + "https://ror.org/00wge5k78" + ] + }, + { + "affiliation": "National Agri-Food Biotechnology Institute (NABI)", + "ror_ids": [ + "https://ror.org/05nnsek89" + ] + }, + { + "affiliation": "Louisiana State University and Agricultural & Mechanical College", + "ror_ids": [ + "https://ror.org/05ect4e57" + ] + }, + { + "affiliation": "Laboratory of Molecular Epidemiology of Birth Defects, West China Second University Hospital, Sichuan University, Chengdu, Sichuan, 610041, China", + "ror_ids": [ + "https://ror.org/011ashp19", + "https://ror.org/00726et14" + ] + }, + { + "affiliation": "Department of Surgery, Dartmouth Medical School, USA", + "ror_ids": [ + "https://ror.org/049s0rh22" + ] + }, + { + "affiliation": "Concordia University, Canada", + "ror_ids": [ + "https://ror.org/0420zvk78" + ] + }, + { + "affiliation": "Instituto Nacional de Salud, Bogotá, Colombia", + "ror_ids": [ + "https://ror.org/03yxg7206" + ] + }, + { + "affiliation": "Department of Entomology Virginia Polytechnic Institute & State University Blacksburg, VA 24061-0319", + "ror_ids": [ + "https://ror.org/02smfhw86" + ] + }, + { + "affiliation": "University of Oregon, Eugene, Oregon", + "ror_ids": [ + "https://ror.org/0293rh119" + ] + }, + { + "affiliation": "Department of Chemistry", + "ror_ids": [] + }, + { + "affiliation": "The University of Toledo Department of Mechanical, Industrial and Manufacturing Engineering Ohio, USA", + "ror_ids": [ + "https://ror.org/01pbdzh19" + ] + }, + { + "affiliation": "Baruch College of the City University of New York", + "ror_ids": [ + "https://ror.org/023qavy03", + "https://ror.org/00453a208" + ] + }, + { + "affiliation": "Emmett Interdisciplinary Program in Environment and Resources, Stanford University, Stanford, CA 94305, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "School of Nano Technology and Nano Bionics, University of Science and Technology of China, Hefei 230026, China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Universities Space Research Association", + "ror_ids": [ + "https://ror.org/043pgqy52" + ] + }, + { + "affiliation": "Charleston Alcohol Research Center, Center for Drug and Alcohol Programs, Department of Psychiatry and Behavioral Sciences, Medical University of South Carolina, Charleston, South Carolina, USA", + "ror_ids": [ + "https://ror.org/012jban78" + ] + }, + { + "affiliation": "1DiscoveRx Corp., Fremont, CA", + "ror_ids": [ + "https://ror.org/01jtghg16" + ] + }, + { + "affiliation": "Department of Prosthodontics and Implantologist, Government Dental College and Hospital, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/039r0r789" + ] + }, + { + "affiliation": "Laboratoire d’Electronique et Systèmes de Télécommunications (UMR 6165 CNRS), Université de Bretagne Occidentale, 6 Avenue Le Gorgeu, 29285 Brest Cedex, France", + "ror_ids": [ + "https://ror.org/01b8h3982" + ] + }, + { + "affiliation": "Departments of Molecular Biophysics and Biochemistry and Molecular, Cellular and Developmental Biology, Yale University, New Haven, CT 06520-8114; and Laboratory of Microbial Structure and Function, Rocky Mountain Laboratories, National Institute of Allergy and Infectious Diseases, National Institutes of Health, Hamilton, MT 59840", + "ror_ids": [ + "https://ror.org/03v76x132", + "https://ror.org/043z4tv69", + "https://ror.org/01cwqze88" + ] + }, + { + "affiliation": "Department of Engineering and Applied Science, Yale University, New Haven, Connecticut", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Воронежский государственный технический университет, Лаборатория физических исследований, Воронеж, Россия", + "ror_ids": [ + "https://ror.org/01m20f643" + ] + }, + { + "affiliation": "Department of Translational Medicine Science, Graduate School of Biomedical Science and Engineering, Hanyang University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/046865y68" + ] + }, + { + "affiliation": "Emeritus Professor of Gastrointestinal Surgery, University of Glasgow , Glasgow, UK", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "Department of Chemical and\nBiological Engineering, University of Colorado Boulder, Boulder, Colorado 80309, United States", + "ror_ids": [ + "https://ror.org/02ttsq026" + ] + }, + { + "affiliation": "Aerosp. and Mech. Eng. Dept., Boston Univ., 110 Cummington St., Boston, MA 02215", + "ror_ids": [ + "https://ror.org/05qwgg493" + ] + }, + { + "affiliation": "Chalmers University of Technology", + "ror_ids": [ + "https://ror.org/040wg7k59" + ] + }, + { + "affiliation": "Dept. of Biochemistry, Institute of Biology, University of Setif 19000 Algeria", + "ror_ids": [ + "https://ror.org/02rzqza52" + ] + }, + { + "affiliation": "YILDIZ TEKNİK ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/0547yzj13" + ] + }, + { + "affiliation": "NYU Langone Health/NYU Grossman School of Medicine, New York, NY", + "ror_ids": [ + "https://ror.org/005dvqh91" + ] + }, + { + "affiliation": "Institute of World History, RAS", + "ror_ids": [ + "https://ror.org/02e1eph40" + ] + }, + { + "affiliation": "Shiga University", + "ror_ids": [ + "https://ror.org/01vvhy971" + ] + }, + { + "affiliation": "Department of Biology and Ecology Center, Utah State University, Logan, Utah 84322-5305; Email: (MK) ; (SBH) spencerbrucehudson@gmail.com; (EEV) emilyevirgin@gmail.com; (HBP) plylar@aggiemail.usu.edu; (SSF) Susannah.french@usu.edu; and (AHS) savitzky", + "ror_ids": [ + "https://ror.org/00h6set76" + ] + }, + { + "affiliation": "Naval Research Laboratory, Code 6825, 4555 Overlook Avenue SW, Washington, DC 20375", + "ror_ids": [ + "https://ror.org/04d23a975" + ] + }, + { + "affiliation": "1Université de Paris, Institut de physique du globe de Paris, CNRS, Paris, France", + "ror_ids": [ + "https://ror.org/004gzqz66", + "https://ror.org/05f82e368", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Centre for Space Research, North-West University , Potchefstroom 2520, South Africa", + "ror_ids": [ + "https://ror.org/010f1sq29" + ] + }, + { + "affiliation": "Clínica Escola da Universidade Guarulhos (UnG)", + "ror_ids": [ + "https://ror.org/01rx63s97" + ] + }, + { + "affiliation": "Department of Pathology, University of Tennessee, Memphis.", + "ror_ids": [ + "https://ror.org/020f3ap87" + ] + }, + { + "affiliation": "Department of Zoology, University of Hong Kong", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "Faculty of Electrical Engineering and Computer Science, Ningbo University, Ningbo, China", + "ror_ids": [ + "https://ror.org/03et85d35" + ] + }, + { + "affiliation": "Department of Chemistry, University of Aberdeen, Aberdeen AB24 3UE, United Kingdom", + "ror_ids": [ + "https://ror.org/016476m91" + ] + }, + { + "affiliation": "Department of Mathematics, Indian Institute of Technology, Kharagpur 721 302, India", + "ror_ids": [ + "https://ror.org/03w5sq511" + ] + }, + { + "affiliation": "Division\nof Chemical Biology and Medicinal Chemistry, UNC Eshelman School of\nPharmacy, 125 Mason Farm\nRoad, CB 7363, University of North Carolina, Chapel Hill, North Carolina 27599-7363, United States", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Lederle Laboratories, Inc. From the , Pearl River, N. Y.", + "ror_ids": [] + }, + { + "affiliation": "Department of Public Health, Faculty of Health Sciences, Ben-Gurion University of the Negev, Beersheba, Israel.", + "ror_ids": [ + "https://ror.org/05tkyf982" + ] + }, + { + "affiliation": "KAHRAMANMARAŞ SÜTÇÜ İMAM ÜNİVERSİTESİ, TIP FAKÜLTESİ", + "ror_ids": [ + "https://ror.org/03gn5cg19" + ] + }, + { + "affiliation": "Department of Pharmacy The Hospital for Sick Children Toronto Canada", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "Department of Physiology, New York Medical College, Valhalla, New York 10595", + "ror_ids": [ + "https://ror.org/03dkvy735" + ] + }, + { + "affiliation": "Department of Physical Therapy, International University of Health and Welfare Graduate School", + "ror_ids": [ + "https://ror.org/053d3tv41" + ] + }, + { + "affiliation": "Human Nutrition University of Otago Dunedin New Zealand", + "ror_ids": [ + "https://ror.org/01jmxt844" + ] + }, + { + "affiliation": "National Laboratory for Infrared Physics, Shanghai Institute of Technical Physics, Chinese Academy of Sciences, 500 Yu Tian Road, Shanghai 200083, People’s Republic of China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/02txedb84" + ] + }, + { + "affiliation": "MacEwan University", + "ror_ids": [ + "https://ror.org/003s89n44" + ] + }, + { + "affiliation": "Authors' Affiliations: Departments of 1Nuclear Medicine, 2Neuroradiology, 3Neurosurgery, and 4Neurology, 5Division of Neuropathology, University Hospital Leipzig; and 6Translational Centre for Regenerative Medicine, University of Leipzig, Leipzig, Germany", + "ror_ids": [ + "https://ror.org/028hv5492", + "https://ror.org/03s7gtk40" + ] + }, + { + "affiliation": "Department of Journalism and Corporative Communication, University Rey Juan Carlos, Madrid, Spain", + "ror_ids": [ + "https://ror.org/01v5cv687" + ] + }, + { + "affiliation": "School of Computer Science and Engineering, Beijing University of Posts and Telecommunications, Beijing 100876, China", + "ror_ids": [ + "https://ror.org/04w9fbh59" + ] + }, + { + "affiliation": "Department of Clinical PharmacologyRoyal Adelaide HospitalAdelaide S.A. 5000", + "ror_ids": [ + "https://ror.org/00carf720" + ] + }, + { + "affiliation": "Institute of Technical Sciences of the Serbian Academy of Sciences and Arts", + "ror_ids": [ + "https://ror.org/02f2wk572", + "https://ror.org/05m1y4204" + ] + }, + { + "affiliation": "The State Key Laboratory of Refractories and Metallurgy, International Research Institute for Steel Technology, Wuhan University of Science and Technology, Wuhan 430081, China", + "ror_ids": [ + "https://ror.org/00e4hrk88" + ] + }, + { + "affiliation": "Auburn University", + "ror_ids": [ + "https://ror.org/02v80fc35" + ] + }, + { + "affiliation": "Department of Finance, Maastricht University, Maastricht, The Netherlands ()", + "ror_ids": [ + "https://ror.org/02jz4aj89" + ] + }, + { + "affiliation": "Virology and Cellular Immunology Section, Laboratory of Immunogenetics, National Institute of Allergy and Infectious Diseases, National Institutes of Health, Rockville, MD; and", + "ror_ids": [ + "https://ror.org/043z4tv69" + ] + }, + { + "affiliation": "Centre for Biodiversity and Biosecurity, School of Biological Sciences, University of Auckland, Private Bag 92019, Auckland 1142, New Zealand", + "ror_ids": [ + "https://ror.org/03b94tp07" + ] + }, + { + "affiliation": "University and University Hospital Zürich, Raemistrasse 100, 8091 , Zürich, SWITZERLAND; markus.manz@usz.ch", + "ror_ids": [ + "https://ror.org/01462r250" + ] + }, + { + "affiliation": "Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Otolaryngology, University of Mainz School of Medicine, Mainz, Germany", + "ror_ids": [] + }, + { + "affiliation": "School of Electrical Engineering, Xi'an University of Technology, Xi'an, China", + "ror_ids": [ + "https://ror.org/038avdt50" + ] + }, + { + "affiliation": "Department of Biological Sciences and Institute of Microbiology, Seoul National University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Departments of Microbiology and Immunology and of Pediatrics, Vanderbilt University Medical Center, Nashville, Tennessee 37232, USA", + "ror_ids": [ + "https://ror.org/05dq2gs74" + ] + }, + { + "affiliation": "School of Management, University of South Australia, Adelaide, Australia", + "ror_ids": [ + "https://ror.org/01p93h210" + ] + }, + { + "affiliation": "Professor and Chief, Section of Anatomy, Department of Surgery; Chairman, Human Growth and Development Study Unit, Yale University School of Medicine.", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Key Laboratory of Machine Perception Shenzhen Graduate School Peking University Shenzhen China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, University of Washington, Seattle, WA 98195", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "Department of Biochemistry, University of Texas Health Science Center, San Antonio, TX 78229, USA", + "ror_ids": [ + "https://ror.org/02f6dcw23" + ] + }, + { + "affiliation": "Central South University, Chang Sha, China", + "ror_ids": [ + "https://ror.org/00f1zfq44" + ] + }, + { + "affiliation": "Human Development and Family Studies Purdue University West Lafayette Indiana", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Department of Animal and Range Sciences, Montana State University, Bozeman, MT", + "ror_ids": [ + "https://ror.org/02w0trx84" + ] + }, + { + "affiliation": "Department of Internal Medicine , Ghent University , Ghent , Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "The University of Texas MD Anderson Cancer Center, Houston, TX;", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "NamesforLife, LLC", + "ror_ids": [] + }, + { + "affiliation": "Oita University, Faculty of Engineering, Oita University", + "ror_ids": [ + "https://ror.org/01nyv7k26" + ] + }, + { + "affiliation": "Michael Untch, Helios-Klinikum, Berlin-Buch; Jens-Uwe Blohmer, St Gertrauden Krankenhaus, Berlin; Gunter von Minckwitz, Valentina Nekljudova, and Sibylle Loibl, German Breast Group, Neu-Isenburg; Bernd Gerber, Universitäts-Frauenklinik, Rostock; Christian Schem, Mammazentrum am Krankenhaus Jerusalem, Hamburg; Mahdi Rezai, Luisenkrankenhaus; Tanja Fehm, Universitäts-Frauenklinik, Düsseldorf; Peter A. Fasching, Universitätsklinikum Erlangen, Erlangen; Hans Tesch, Hämatologisch-Onkologische...", + "ror_ids": [ + "https://ror.org/0030f2a11" + ] + }, + { + "affiliation": "Institute of Precision Medicine, The Xiangya Hospital, State Key Laboratory of Medical Genetics, Xiangya Medical School, Central South University, Changsha 410078, China", + "ror_ids": [ + "https://ror.org/00f1zfq44", + "https://ror.org/05c1yfj14" + ] + }, + { + "affiliation": "Vels Institute of Science, Technology & Advanced Studies,Department of Computer Applications,Chennai,India", + "ror_ids": [] + }, + { + "affiliation": "Department of Urology, Medical University Innsbruck, Innsbruck, Austria", + "ror_ids": [ + "https://ror.org/03pt86f80" + ] + }, + { + "affiliation": "Institut für Pathologie, Katharinenhospital, Stuttgart", + "ror_ids": [ + "https://ror.org/002n0by50" + ] + }, + { + "affiliation": "Neurosurgery Department, Careggi Hospital, Florence; Italy", + "ror_ids": [] + }, + { + "affiliation": "Assistant Professor, Department of Surgery Government Medical College And Hospital Aurangabad-431001 Maharashtra, India", + "ror_ids": [] + }, + { + "affiliation": "Departments of Pharmacology and Chemistry, University of Virginia School of Medicine, USA", + "ror_ids": [ + "https://ror.org/0153tk833" + ] + }, + { + "affiliation": "Assistant Professor of Anesthesiology.", + "ror_ids": [] + }, + { + "affiliation": "Exxon Research and Engineering Company, Annandale, New Jersey 08801", + "ror_ids": [ + "https://ror.org/01xcepn55" + ] + }, + { + "affiliation": "Department of Primary and Community Care, Radboud University Medical Center, Nijmegen, the Netherlands", + "ror_ids": [ + "https://ror.org/05wg1m734" + ] + }, + { + "affiliation": "University Medical Center Groningen\nand University of Groningen, A. Deusinglaan\n1, 9713 AV Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287", + "https://ror.org/03cv38k47" + ] + }, + { + "affiliation": "Institut für Journalistik und Kommunikationsforschung, Hochschule für Musik und Theater Hannover", + "ror_ids": [ + "https://ror.org/00x67m532" + ] + }, + { + "affiliation": "San Diego State University,Computational Science,San Diego,USA", + "ror_ids": [ + "https://ror.org/0264fdx42" + ] + }, + { + "affiliation": "Centers for Disease Control and Prevention", + "ror_ids": [] + }, + { + "affiliation": "Department of Computer Science and Engineering, University, Visvesvaraya College of Engineering, Bangalore University Bangalore, K R Circle, 560001, India. Tel.: ; Fax: ; E-mails: kgsrinivas@msrit.edu, shenoypd@yahoo.com, vkrajuk@vsnl.com", + "ror_ids": [ + "https://ror.org/050j2vm64" + ] + }, + { + "affiliation": "Department of Mathematics, West Bengal State University , Barasat , Kolkata, 700126 , India", + "ror_ids": [ + "https://ror.org/04qs5en05" + ] + }, + { + "affiliation": "Department of Surgery, University of Washington, Seattle, Washington", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "The University of Western Australia, Centre for Exploration Targeting, Crawley, Geological Survey of Western Australia, Mineral House, 100 Plain Street, East Perth, and Macquarie University, Australian Research Council Centre of Excellence for Core to Crust Fluid Systems (CCFS), Department of Earth and Planetary Sciences, Sydney, Australia..", + "ror_ids": [ + "https://ror.org/05h2dda38", + "https://ror.org/03nk9pp38", + "https://ror.org/01sf06y89", + "https://ror.org/05mmh0f86" + ] + }, + { + "affiliation": "Department of Chemical Engineering, University of California, Davis, California 95616, United States", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Association for Business Development and Non-Profit Initiatives «Holding-Spektr»", + "ror_ids": [] + }, + { + "affiliation": "Centre Roland Mousnier, France", + "ror_ids": [ + "https://ror.org/01gapzp55" + ] + }, + { + "affiliation": "From the Institute of Immunology, Department of Medicine I, and Department of Surgery, Medical Faculty, Technical University of Dresden, Germany.", + "ror_ids": [ + "https://ror.org/042aqky30" + ] + }, + { + "affiliation": "Molecular Oncology", + "ror_ids": [ + "https://ror.org/04rtkc841" + ] + }, + { + "affiliation": "Faculty of Engineering, Kyushu University", + "ror_ids": [ + "https://ror.org/00p4k0j84" + ] + }, + { + "affiliation": "National Institute for Interdisciplinary Science and Technology;, India", + "ror_ids": [ + "https://ror.org/05bkc5375" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Indian Institute of Technology Guwahati, Guwahati, Assam 781039, India", + "ror_ids": [ + "https://ror.org/0022nd079" + ] + }, + { + "affiliation": "University of Oslo, Oslo, Norway", + "ror_ids": [ + "https://ror.org/01xtthb56" + ] + }, + { + "affiliation": "The Open University of Japan", + "ror_ids": [ + "https://ror.org/03jyr9x65" + ] + }, + { + "affiliation": "Department of Mathematics, University of Minnesota, Minneapolis, MN 55455", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "U434 Institut National de la Santé et de la Recherche Médicale-Centre d'Étude du Polymorphisme Humain-Fondation Jean Dausset, 27 rue Juliette Dodu, 75010, Paris, France; and Unité Mixte de Recherche 146 Centre National de la Recherche Scientifique, Institut Curie, Bat 110, Centre Universitaire, 91405 Orsay Cedex, France", + "ror_ids": [ + "https://ror.org/02feahw73", + "https://ror.org/01rje3r53", + "https://ror.org/02vjkv261", + "https://ror.org/04t0gwh46" + ] + }, + { + "affiliation": "Department of Biotechnology, Sri Guru Granth Sahib World University, Fatehgarh Sahib, Punjab 140406, India", + "ror_ids": [ + "https://ror.org/02c2her03" + ] + }, + { + "affiliation": "Universidad Pública de Navarra, Spain", + "ror_ids": [ + "https://ror.org/02z0cah89" + ] + }, + { + "affiliation": "University of Mons, Rue de Houdain 9, 7000 Mons,Belgium", + "ror_ids": [ + "https://ror.org/02qnnz951" + ] + }, + { + "affiliation": "ETH Zurich", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Universidade Federal da Bahia, Brasil", + "ror_ids": [ + "https://ror.org/03k3p7647" + ] + }, + { + "affiliation": "Faculty of Earth Sciences , Nicolaus Copernicus University in Toruń , Lwowska 1, 87-100 Toruń , Poland", + "ror_ids": [ + "https://ror.org/0102mm775" + ] + }, + { + "affiliation": "German Center for Lung ResearchHeidelberg, Germany", + "ror_ids": [ + "https://ror.org/03dx11k66" + ] + }, + { + "affiliation": "Museo de Zoología, Escuela de Biología, Pontificia Universidad Católica del Ecuador (PUCE), Quito, Ecuador", + "ror_ids": [ + "https://ror.org/02qztda51" + ] + }, + { + "affiliation": "State Key Laboratory of Electroanalytical\nChemistry, Changchun Institute of Applied Chemistry, Chinese Academy of Sciences, Changchun, Jilin, 130022,\nChina", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/00h52n341" + ] + }, + { + "affiliation": "Institute of Physical Chemistry of the Polish Academy of Sciences, Department of Complex Systems and Chemical Processing of Information, ul. Niezapominajek 8, 30-239 Cracow, Poland, and Institute of Teleinformatics, Faculty of Electrical and Computer Engineering, Cracow University of Technology, ul. Warszawska 24, 31-155 Cracow, Poland", + "ror_ids": [ + "https://ror.org/01dr6c206", + "https://ror.org/00pdej676", + "https://ror.org/05e830h62" + ] + }, + { + "affiliation": "a Department of Production Engineering and Management , Technical University of Crete, University Campus , GR-73100 Chania, Greece", + "ror_ids": [ + "https://ror.org/03f8bz564" + ] + }, + { + "affiliation": "Marine Science Inst. Univ. of California Santa Barbara Santa Barbara CA USA", + "ror_ids": [ + "https://ror.org/02t274463" + ] + }, + { + "affiliation": "Department of Physics, Tripura University, Suryamaninagar – 799130, India", + "ror_ids": [ + "https://ror.org/05xqycm14" + ] + }, + { + "affiliation": "Institute for Cancer and Genomic Sciences, College of Medical and Dental Sciences, University of Birmingham, Birmingham, UK", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "Department of Plant Breeding, Cornell University, Ithaca NY 14853, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Ocean Engineering, University of Rhode Island , Narragansett, Rhode Island 02882, USA", + "ror_ids": [ + "https://ror.org/013ckk937" + ] + }, + { + "affiliation": "Elizabeth Eakin, PhD; Wendy Brown, PhD; and Marina Reeves, PhD, are with the University of Queensland, Brisbane, Queensland, Australia. Kerry Mummery, PhD, is with Central Queensland University, Rockhampton, Queensland, Australia. Grant Schofield, PhD, is with Auckland University of Technology, Auckland, New Zealand", + "ror_ids": [ + "https://ror.org/00rqy9422", + "https://ror.org/023q4bk22", + "https://ror.org/01zvqw119" + ] + }, + { + "affiliation": "Lijiang Teachers College", + "ror_ids": [] + }, + { + "affiliation": "5Integrated Department of Immunology, National Jewish Hlth., Denver, CO", + "ror_ids": [ + "https://ror.org/016z2bp30" + ] + }, + { + "affiliation": "School of Electronic and Information Engineering, South China University of Technology, Guangzhou, China", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Electrical and Control Engineering DepartmentArab Academy for Science Technology and Maritime Transport Alexandria Egypt", + "ror_ids": [ + "https://ror.org/0004vyj87" + ] + }, + { + "affiliation": "Royal Hallamshire Hospital, Sheffield", + "ror_ids": [ + "https://ror.org/00514rc81" + ] + }, + { + "affiliation": "Hospital of Gynecology and Obstetrics No. One of the Mexican Institute of Social Security (IMSS)", + "ror_ids": [] + }, + { + "affiliation": "ABB Seatec", + "ror_ids": [] + }, + { + "affiliation": "Laboratorio de Automática e Inteligencia Computacional, Universidad Distrital Francisco Jose de Caldas, Carrera 8 No. 40-62, Piso 7, Bogota, Colombia", + "ror_ids": [ + "https://ror.org/02jsxd428" + ] + }, + { + "affiliation": "Department of African Language Studies, University of the Western Cape, Cape Town, South Africa", + "ror_ids": [ + "https://ror.org/00h2vm590" + ] + }, + { + "affiliation": "School of Automation, China University of Geosciences, Wuhan, China", + "ror_ids": [ + "https://ror.org/04gcegc37" + ] + }, + { + "affiliation": "Northwestern University", + "ror_ids": [] + }, + { + "affiliation": "Shimane University Hospital, Izumo, Japan;", + "ror_ids": [ + "https://ror.org/03nvpm562" + ] + }, + { + "affiliation": "Laboratory of Computing, University of Jinan, China", + "ror_ids": [ + "https://ror.org/02mjz6f26" + ] + }, + { + "affiliation": "Max-Planck-Institut für Polymerforschung, Postfach 3148, D-6500 Mainz, West Germany", + "ror_ids": [ + "https://ror.org/00sb7hc59" + ] + }, + { + "affiliation": "Henan University of Technology, China", + "ror_ids": [ + "https://ror.org/05sbgwt55" + ] + }, + { + "affiliation": "From the Department of Neurology, University of Massachusetts Memorial Health Care, Worcester, Mass.", + "ror_ids": [ + "https://ror.org/0260j1g46" + ] + }, + { + "affiliation": "Center for Biostatistics, The Ohio State University, Columbus, OH, USA", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Unit of Experimental Biology, Department of Biomedicine, Faculty of Medicine of Porto University, Portugal", + "ror_ids": [ + "https://ror.org/043pwc612" + ] + }, + { + "affiliation": "Soricimed Biopharma Inc, Sackville, New Brunswick, Canada.", + "ror_ids": [] + }, + { + "affiliation": "Department of Preventive Medicine, Chung-Ang University College of Medicine, Korea.", + "ror_ids": [ + "https://ror.org/01r024a98" + ] + }, + { + "affiliation": "UCLA Medical Center Los Angeles California", + "ror_ids": [ + "https://ror.org/04k3jt835" + ] + }, + { + "affiliation": "Department of Health Sciences, Faculty of Medicine, Health and Human Sciences Macquarie University Sydney New South Wales Australia", + "ror_ids": [ + "https://ror.org/01sf06y89" + ] + }, + { + "affiliation": "The Affiliated Hospital of Shandong University of Traditional Chinese Medicine, Yantai Hospital of Traditional Chinese Medicine, Yantai, Shandong, China", + "ror_ids": [ + "https://ror.org/052q26725" + ] + }, + { + "affiliation": "China Academy of Transportation Science, Beijing, P.R. China.", + "ror_ids": [ + "https://ror.org/012f3dh63" + ] + }, + { + "affiliation": "Universidade Estadual de Londrina, Brazil", + "ror_ids": [ + "https://ror.org/01585b035" + ] + }, + { + "affiliation": "School of Metallurgy", + "ror_ids": [] + }, + { + "affiliation": "Indiana University School of Medicine", + "ror_ids": [ + "https://ror.org/02ets8c94" + ] + }, + { + "affiliation": "Dep. of Agronomy Iowa State Univ. Ames IA 50011", + "ror_ids": [ + "https://ror.org/04rswrd78" + ] + }, + { + "affiliation": "a Lehigh University , Bethlehem , Pa. , USA", + "ror_ids": [ + "https://ror.org/012afjb06" + ] + }, + { + "affiliation": "400-C 10th Street, East Tuscaloosa, AL 35401", + "ror_ids": [] + }, + { + "affiliation": "Sverdrup Technology, Inc., Arnold AFB, TN", + "ror_ids": [] + }, + { + "affiliation": "Guest Editors and Symposium Organizers", + "ror_ids": [] + }, + { + "affiliation": "Natural Resources\nCanada", + "ror_ids": [ + "https://ror.org/05hepy730" + ] + }, + { + "affiliation": "Department of Thoracic Surgery, Tokyo Medical University Hospital, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/012e6rh19" + ] + }, + { + "affiliation": "Key Laboratory of Intelligent Analysis and Decision on Complex Systems Chongqing University of Posts and Telecommunications Chongqing China", + "ror_ids": [ + "https://ror.org/03dgaqz26" + ] + }, + { + "affiliation": "Jiangsu Hefeng Grain and Oil Industry Co., Ltd.", + "ror_ids": [] + }, + { + "affiliation": "Mayo Clinic and Foundation Rochester MN USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "LIST Saclay, Laboratoire Capteurs et Architectures Électroniques, CEA, F-91191, Gif-sur-Yvette Cedex, France", + "ror_ids": [] + }, + { + "affiliation": "Sunninghill", + "ror_ids": [] + }, + { + "affiliation": "Division of Cardiology Sahlgrenska Academy at Sahlgrenska University Hospital Göteborg Sweden", + "ror_ids": [ + "https://ror.org/04vgqjj36" + ] + }, + { + "affiliation": "Greifswald", + "ror_ids": [] + }, + { + "affiliation": "Massachusetts Institute of Technology Laboratory for Computer Science, Cambridge 02139, USA.", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "National Cattlemen’s Beef Association", + "ror_ids": [ + "https://ror.org/04s498a57" + ] + }, + { + "affiliation": "Centre for Special Educational Needs and Youth Care, Faculty of Behavioural and Social Sciences, University of Groningen, Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "University Institute of Technology, India", + "ror_ids": [] + }, + { + "affiliation": "Departamento de Química Orgánica, Universidad Autónoma de Madrid, Cantoblanco, E-28049 Madrid, Spain", + "ror_ids": [ + "https://ror.org/01cby8j38" + ] + }, + { + "affiliation": "Vaccine and Gene Therapy Institute, Oregon Health and Science University, USA", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "City University of Hong Kong, Hong Kong, Hong Kong", + "ror_ids": [ + "https://ror.org/03q8dnn23" + ] + }, + { + "affiliation": "Professor, Dept. of Civil Engineering, Central South Univ., Changsha, Hunan Province, 410075, People’s Republic of China and Professor, Dept. of Civil. Engineering, Fuzhou Univ., Fuzhou, Fujian Province, 350002, People’s Republic of China; (corresponding author).", + "ror_ids": [ + "https://ror.org/011xvna82", + "https://ror.org/00f1zfq44" + ] + }, + { + "affiliation": "Grupo de Química\nInorgánica y Materiales Moleculares, Universidad Autonoma de Chile, El Llano\nSubercaseaux 2801, Santiago, Chile", + "ror_ids": [ + "https://ror.org/010r9dy59" + ] + }, + { + "affiliation": "Queen Mary University of London, London, UK", + "ror_ids": [ + "https://ror.org/026zzn846" + ] + }, + { + "affiliation": "Hybrigenics Services, Paris, France", + "ror_ids": [] + }, + { + "affiliation": "School of Public Health, University of Michigan, Ann Arbor", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Faculty of Chemistry, Department of Organic Chemistry, University of Kashan, Kashan, I.R. Iran", + "ror_ids": [ + "https://ror.org/015zmr509" + ] + }, + { + "affiliation": "IIT Kharagpur India", + "ror_ids": [ + "https://ror.org/03w5sq511" + ] + }, + { + "affiliation": "Sumy National Agrarian University", + "ror_ids": [ + "https://ror.org/00vnaf984" + ] + }, + { + "affiliation": "Department of Physics, University of South Florida, Tampa, Florida", + "ror_ids": [ + "https://ror.org/032db5x82" + ] + }, + { + "affiliation": "159 London Road, Temple Ewell, Kent CT16 3DA", + "ror_ids": [] + }, + { + "affiliation": "Department of Ophthalmology (S.F., Y.H., Y.Z., S.Z., X.Li., P.G., H.Z., X.F.), Shanghai Ninth People's Hospital, Shanghai JiaoTong University School of Medicine, Shanghai 200011", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/010826a91" + ] + }, + { + "affiliation": "Department of Biological Sciences (m/c 066), University of Illinois at Chicago, 845 W. Taylor Street, Chicago, IL 60607, USA", + "ror_ids": [ + "https://ror.org/02mpq6x41" + ] + }, + { + "affiliation": "Inria and LIX/Ecole Polytechnique", + "ror_ids": [ + "https://ror.org/05hy3tk52", + "https://ror.org/02kvxyf05" + ] + }, + { + "affiliation": "Slippery Rock University, USA", + "ror_ids": [ + "https://ror.org/0369st156" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Faculty of Engineering, Diponegoro University, Postal Code 50239, Semarang, Indonesia", + "ror_ids": [ + "https://ror.org/056bjta22" + ] + }, + { + "affiliation": "\"George Emil Palade\" University of Medicine, Pharmacy, Sciences and Technology from Târgu Mureș / Romania", + "ror_ids": [ + "https://ror.org/03gwbzf29" + ] + }, + { + "affiliation": "Capital Medical University", + "ror_ids": [ + "https://ror.org/013xs5b60" + ] + }, + { + "affiliation": "Center for Systems Neurobiology, Departments of Pharmacology and Biomedical Engineering, Boston University, Boston, MA 02118; Shanghai Institute of Brain Functional Genomics, East China Normal University, Shanghai 200062, China; and Department of Molecular Biology, Princeton University, Princeton, NJ 08544-1014", + "ror_ids": [ + "https://ror.org/00hx57361", + "https://ror.org/05qwgg493", + "https://ror.org/02n96ep67" + ] + }, + { + "affiliation": "Key Laboratory of Coal Gasification and Energy Chemical Engineering of Ministry of Education, East China University of Science and Technology, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01vyrm377" + ] + }, + { + "affiliation": "Department of Biochemistry and Applied Biosciences, Faculty of Agriculture University of Miyazaki Miyazaki Japan", + "ror_ids": [ + "https://ror.org/0447kww10" + ] + }, + { + "affiliation": "National Research University Higher School of Economics 1 , 25/12 Bolshaya Pecherskaya Ulitsa, 603155 Nizhny Novgorod, Russia", + "ror_ids": [ + "https://ror.org/055f7t516" + ] + }, + { + "affiliation": "Division of Energy and Furnace Technology, Department of Materials Science and Engineering, School of Industrial Engineering and Management, Royal Institute of Technology, SE 100 44 Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Guy's Hospital, London, England.", + "ror_ids": [ + "https://ror.org/04r33pf22" + ] + }, + { + "affiliation": "National Chemical Laboratory for Industry", + "ror_ids": [] + }, + { + "affiliation": "Nanjing University,Key Laboratory of Modern Acoustics Institute of Acoustics,Nanjing,China,210093", + "ror_ids": [ + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "The Bucharest University of Economic Studies, Bucharest, Romania", + "ror_ids": [ + "https://ror.org/04yvncj21" + ] + }, + { + "affiliation": "Johns Hopkins University Bloomberg School of Public Health", + "ror_ids": [ + "https://ror.org/00za53h95" + ] + }, + { + "affiliation": "Institute of Forest Management, Center of Life and Food Sciences Weihenstephan, Technische Universität München, Hans-Carl-von-Carlowitz-Platz 2, 85354 Freising, Germany.", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Department of Human Molecular Genetics, Institute of Human Genetics University Hospital Heidelberg and Interdisciplinary Center for Neurosciences (IZN), University of Heidelberg Heidelberg Germany", + "ror_ids": [ + "https://ror.org/013czdx64", + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Verhaltensneurobiologie MPI für Ornithologie Seewiesen Germany", + "ror_ids": [] + }, + { + "affiliation": "Center for Phage Technology, Texas A&M University, College Station, Texas, USA", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "Max Planck for Structure and Dynamics of Matter", + "ror_ids": [ + "https://ror.org/0411b0f77" + ] + }, + { + "affiliation": "Department of Physical Chemistry and the Farkas Center for Light Induced Processes, The Hebrew University of Jerusalem, Jerusalem, Israel 91904", + "ror_ids": [ + "https://ror.org/03qxff017" + ] + }, + { + "affiliation": "Museu de Entomologia, Departamento de Entomologia, Universidade Federal de Viçosa, Av. P. H. Rolfs, s/n, Campus Universitário, CEP 36570‐900 Viçosa, Minas Gerais Brazil", + "ror_ids": [ + "https://ror.org/0409dgb37" + ] + }, + { + "affiliation": "Hokkaido University Division of Electronics for Informatics, , Sapporo 060-0814, Japan", + "ror_ids": [ + "https://ror.org/02e16g702" + ] + }, + { + "affiliation": "Department of Physical Therapy, Hokkaido Chitose Institute of Rehabilitation Technology: 10 Satomi 2-chome, Chitose 066-0055, Japan", + "ror_ids": [ + "https://ror.org/05rxe5g18" + ] + }, + { + "affiliation": "International Health Policy Program, Ministry of Public Health, Tivanond Road, Nonthaburi 11000, Thailand.", + "ror_ids": [ + "https://ror.org/03rn0z073" + ] + }, + { + "affiliation": "Hangzhou Dianzi University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/0576gt767" + ] + }, + { + "affiliation": "University of Alberta, Edmonton, AB, Canada", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Wuhan Institute of Technology,Engineering Research Center for Intelligent Production Line Equipment of Hubei Province School of Computer Science & Engineering,Wuhan,China", + "ror_ids": [ + "https://ror.org/04jcykh16" + ] + }, + { + "affiliation": "University of Portsmouth", + "ror_ids": [ + "https://ror.org/03ykbk197" + ] + }, + { + "affiliation": "ECC DepartmentCKPCETSuratIndia", + "ror_ids": [] + }, + { + "affiliation": "Department of Anaesthesia, Westmead Hospital, Sydney, New South Wales, Australia", + "ror_ids": [ + "https://ror.org/04gp5yv64" + ] + }, + { + "affiliation": "Arizona State University, Tempe, AZ, USA", + "ror_ids": [ + "https://ror.org/03efmqc40" + ] + }, + { + "affiliation": "From the Divisions of Cardiology and Social Medicine, Brigham & Women’s Hospital, Harvard Medical School, Boston, Mass.", + "ror_ids": [ + "https://ror.org/04b6nzv94", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Department of Pharmacognosy, State University, Utrecht", + "ror_ids": [] + }, + { + "affiliation": "Institute of Spectroscopy, Russian Academy of Sciences, 142190 Troitsk, Moscow Region, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25", + "https://ror.org/01nmpe263" + ] + }, + { + "affiliation": "National Taiwan University, Taiwan", + "ror_ids": [ + "https://ror.org/05bqach95" + ] + }, + { + "affiliation": "From the Sections of Ophthalmology and2Department of Ophthalmology and the", + "ror_ids": [] + }, + { + "affiliation": "HealthPartners Center for Memory & Aging Saint Paul MN USA", + "ror_ids": [] + }, + { + "affiliation": "University of Venice,Ca’ Foscari", + "ror_ids": [ + "https://ror.org/04yzxz566" + ] + }, + { + "affiliation": "Massachusetts General Hospital and Harvard Medical School, USA hzheng1@partners.org", + "ror_ids": [ + "https://ror.org/002pd6e78", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Solicitor in Trowers & Hamlins Employment Group, Sceptre Court, 40 Tower Hill, London EC3N 4DX", + "ror_ids": [] + }, + { + "affiliation": "University of Pittsburgh, Pittsburgh, PA, United States", + "ror_ids": [ + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Albany Medical Center Hospital, Albany, New York", + "ror_ids": [ + "https://ror.org/0307crw42" + ] + }, + { + "affiliation": "Department of Bridge Engineering, Tongji University, Shanghai, China", + "ror_ids": [ + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "Van Yüzüncü Yıl Üniversitesi, Eğitim Bilimleri Enstitüsü, Eğitim Bilimleri ABD", + "ror_ids": [ + "https://ror.org/041jyzp61" + ] + }, + { + "affiliation": "UNSW,School of Electrical Engineering and Telecommunications,Sydney,Australia", + "ror_ids": [ + "https://ror.org/03r8z3t63" + ] + }, + { + "affiliation": "Gunma National College of Technology", + "ror_ids": [] + }, + { + "affiliation": "Department of Biophysical Chemistry, NIZO, Ede, The Netherlands.", + "ror_ids": [] + }, + { + "affiliation": "Dnipro State Agrarian and Economic University", + "ror_ids": [ + "https://ror.org/01s5n0596" + ] + }, + { + "affiliation": "Professor, Key Laboratory of Performance Evolution and Control for Engineering Structures of the Ministry of Education, Tongji Univ., Siping Rd., 1239, Shanghai 200092, China; Professor, Dept. of Structural Engineering, Tongji Univ., Siping Rd., 1239, Shanghai 200092, China (corresponding author). ORCID: .", + "ror_ids": [ + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "West Baden College", + "ror_ids": [] + }, + { + "affiliation": "SAKARYA UYGULAMALI BİLİMLER ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/01shwhq58" + ] + }, + { + "affiliation": "Department of Chemistry, Purdue University, West Lafayette, Indiana 47907", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Neurology, Carilion Clinic-Virginia Tech school of medicine", + "ror_ids": [ + "https://ror.org/02smfhw86", + "https://ror.org/02rsjh069" + ] + }, + { + "affiliation": "School of Life Sciences, Arizona State University, Tempe, AZ 85287-4601, USA", + "ror_ids": [ + "https://ror.org/03efmqc40" + ] + }, + { + "affiliation": "TU Ilmenau, Germany", + "ror_ids": [ + "https://ror.org/01weqhp73" + ] + }, + { + "affiliation": "The University of Sheffield, UK", + "ror_ids": [ + "https://ror.org/05krs5044" + ] + }, + { + "affiliation": "H Lundbeck A/S, Valby, Denmark", + "ror_ids": [] + }, + { + "affiliation": "Zoological Institute, University of Lund, Lund, Sweden", + "ror_ids": [ + "https://ror.org/012a77v79" + ] + }, + { + "affiliation": "Normandie Université UMR 6273 Craham 14032 Caen France", + "ror_ids": [ + "https://ror.org/01k40cz91" + ] + }, + { + "affiliation": "JDM College, University of Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "The Department of Electrical Engineering, Faculty of Science and Technology, Tokyo University of Science", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Subfaculty of Pharmacy, University of Amsterdam, Plantage Muidergracht 24, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463" + ] + }, + { + "affiliation": "Central Institute for the Deaf, 818 S. Euclid Avenue, St. Louis, MO 63110", + "ror_ids": [ + "https://ror.org/04ymee833" + ] + }, + { + "affiliation": "Palo Alto, CA", + "ror_ids": [] + }, + { + "affiliation": "Jiangsu University", + "ror_ids": [ + "https://ror.org/03jc41j30" + ] + }, + { + "affiliation": "Department of Control Science and Engineering, Harbin Institute of Technology, PR China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "KIT-Kalaignarkarunanidhi Institute of Technology,Department of Electrical and Electronics Engineering,Coimbatore,India", + "ror_ids": [] + }, + { + "affiliation": "Institute of Biomedical Sciences, Uberlândia Federal University (UFU), 1720 Pará Avenue, Uberlândia, MG 38400-902, Brazil", + "ror_ids": [ + "https://ror.org/04x3wvr31" + ] + }, + { + "affiliation": "b Department of Theoretical Chemistry, Chemical Center , P.O.B. 124, S-221 00, Lund, Sweden", + "ror_ids": [] + }, + { + "affiliation": "Transfusion Technology Assessment Department Sanquin Research Amsterdam The Netherlands", + "ror_ids": [] + }, + { + "affiliation": "Universidade Anhembi Morumbi, Brasil", + "ror_ids": [ + "https://ror.org/00ay50243" + ] + }, + { + "affiliation": "BDS, MDS (Prosthodontics), PhD (Pursuing), Professor, Department of Prosthodontics and Crown and Bridge, Faculty of Dentistry Jamia Millia Islamia, New Delhi, India", + "ror_ids": [ + "https://ror.org/00pnhhv55" + ] + }, + { + "affiliation": "VICKERS INCORPORATED,", + "ror_ids": [] + }, + { + "affiliation": "Massachusetts General Hospital and Harvard Medical School Boston Massachusetts", + "ror_ids": [ + "https://ror.org/002pd6e78", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Division of Cardiology, Department of Advanced Biomedical Sciences, Federico II University, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Chiba University Graduate School of Nursing (Center) Chiba Japan", + "ror_ids": [ + "https://ror.org/01hjzeq58" + ] + }, + { + "affiliation": "Infertility Medical CentreEpworth Hospital 34 Erin Street Richmond VIC 3121", + "ror_ids": [ + "https://ror.org/02ett6548" + ] + }, + { + "affiliation": "Department of Mechanical Engineering and Materials Science, Rice University, Houston, TX 77251", + "ror_ids": [ + "https://ror.org/008zs3103" + ] + }, + { + "affiliation": "Chinese University of Hong Kong, Hong Kong , Hong Kong", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "From the Department of Neurology, PGIMER, Chandigarh, India.", + "ror_ids": [] + }, + { + "affiliation": "Key Laboratory of Functional Small Organic Molecule of Ministry of Education, Jiangxi Normal University, Nanchang Jiangxi, China", + "ror_ids": [ + "https://ror.org/05nkgk822" + ] + }, + { + "affiliation": "Gazi University", + "ror_ids": [ + "https://ror.org/054xkpr46" + ] + }, + { + "affiliation": "Hankuk University of Foreign Studies", + "ror_ids": [ + "https://ror.org/051q2m369" + ] + }, + { + "affiliation": "Auburn University, Auburn, Ala.", + "ror_ids": [ + "https://ror.org/02v80fc35" + ] + }, + { + "affiliation": "Johannes Gutenberg-Universität Mainz, Graduiertenkolleg 2304 “Byzanz und die euromediterranen Kriegskulturen. Austausch, Abgrenzung und Rezeption”, Hegelstraße 59, D-55122 Mainz , Germany", + "ror_ids": [ + "https://ror.org/023b0x485" + ] + }, + { + "affiliation": "Universidade Federal do Rio Grande do Sul, Brazil", + "ror_ids": [ + "https://ror.org/041yk2d64" + ] + }, + { + "affiliation": "Hospital for Sick Children, 555 University Avenue, Room S229, Toronto", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "Sungkyunkwan University, Korea", + "ror_ids": [ + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Norwegian Environment Agency, Sluppen Trondheim Norway", + "ror_ids": [ + "https://ror.org/023jta124" + ] + }, + { + "affiliation": "Department of Epidemiology and Public Health Genetics Interdepartmental Concentration, School of Public Health, University of Michigan, Ann Arbor, Michigan 48109;", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "JPT Technology Editor", + "ror_ids": [] + }, + { + "affiliation": "Institute of Scientific and Industrial Research, Osaka University", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "Syracuse University", + "ror_ids": [ + "https://ror.org/025r5qe02" + ] + }, + { + "affiliation": "Emory University", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Genomics Core Facility, European Molecular Biology Laboratory (EMBL), 69117 Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/03mstc592" + ] + }, + { + "affiliation": "*Institute of Archaeology, Research Centre for the Humanities 4 Tóth Kálmán Str., H-1097 Budapest, Hungary", + "ror_ids": [ + "https://ror.org/03wxxbs05", + "https://ror.org/02wg15j65" + ] + }, + { + "affiliation": "Department\nof Chemical and Biomolecular Engineering, §Department of Materials Science, and ∥Frederick Seitz\nMaterials Research Laboratory, University of Illinois, 1304 West Green Street, Urbana, Illinois\n61801, United States", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Iowa City Veterans Affairs Health Care System, Research Service (151), 601 Highway 6 West, Iowa City, IA 52246, USA", + "ror_ids": [ + "https://ror.org/04hgm3062" + ] + }, + { + "affiliation": "Jiangsu Co-Innovation Centre of Efficient Processing and Utilization of Forest Resources, International Innovation Center for Forest Chemicals and Materials, College of Chemical Engineering, Nanjing Forestry University, Nanjing 210037, China", + "ror_ids": [ + "https://ror.org/03m96p165" + ] + }, + { + "affiliation": "University of Tunis El Manar, National Engineering School of Tunis, Civil Engineering Laboratory, Tunis, Tunisia", + "ror_ids": [ + "https://ror.org/03b1zjt31", + "https://ror.org/029cgt552" + ] + }, + { + "affiliation": "Department of Animal Ecology and Tropical Biology, University of Würzburg, Biocentre, 97074 Würzburg, Germany", + "ror_ids": [ + "https://ror.org/00fbnyb24" + ] + }, + { + "affiliation": "Department of Urology, Ankara Cankaya Hospital, Ankara, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Department of Cell Biology, Scripps Research Institute, La Jolla, California 92037.", + "ror_ids": [ + "https://ror.org/02dxx6824" + ] + }, + { + "affiliation": "U.S. Coast Guard", + "ror_ids": [ + "https://ror.org/00zyc7969" + ] + }, + { + "affiliation": "Department of Physics, University of Vermont, Burlington VT 05405", + "ror_ids": [ + "https://ror.org/0155zta11" + ] + }, + { + "affiliation": "Department of Anthropology, Saint Mary's University, Halifax, NS B3H 3C3, Canada", + "ror_ids": [ + "https://ror.org/010zh7098" + ] + }, + { + "affiliation": "Beijing Key Laboratory of Nonlinear Vibrations and Strength of Mechanical Engineering, College of Mechanical Engineering, Beijing University of Technology, Beijing, China 100124", + "ror_ids": [ + "https://ror.org/037b1pp87" + ] + }, + { + "affiliation": "GM Technical Center India Pvt Ltd, International Tech Park Ltd., Bangalore, India", + "ror_ids": [] + }, + { + "affiliation": "Physical Sciences\nDivision, Pacific Northwest National Laboratory, Richland, Washington 93352, United States", + "ror_ids": [ + "https://ror.org/05h992307" + ] + }, + { + "affiliation": "Department of Neuroscience, Reproductive and Dentistry Sciences University Federico II Naples Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Department of Molecular, Cellular & Developmental Biology, University of California, Santa Barbara, USA", + "ror_ids": [ + "https://ror.org/02t274463" + ] + }, + { + "affiliation": "MGIMO of the MFA of Russia", + "ror_ids": [] + }, + { + "affiliation": "University of Wisconsin-Madison, USA", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Samara National Research University", + "ror_ids": [ + "https://ror.org/05ggagb37" + ] + }, + { + "affiliation": "Department of Recreation and Leisure Studies, Brock University, Saint Catharines, ON, Canada", + "ror_ids": [ + "https://ror.org/056am2717" + ] + }, + { + "affiliation": "North China Electric Power University, Beijing, China", + "ror_ids": [ + "https://ror.org/04qr5t414" + ] + }, + { + "affiliation": "Cattedra e Divisione Clinicizzata di Urologia - Ospedale Policlinico - Verona", + "ror_ids": [] + }, + { + "affiliation": "School of Materials and Energy", + "ror_ids": [] + }, + { + "affiliation": "Department\nof Chemistry, University of Illinois at Urbana—Champaign, 600 South Mathews Avenue, Urbana, Illinois 61801, United States", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Center for Oral Rehabilitation, FTV Östergötland, Norrköping, Sweden;", + "ror_ids": [] + }, + { + "affiliation": "Ann Arbor, MI", + "ror_ids": [] + }, + { + "affiliation": "1Department of Chemistry, National Taiwan University, Taipei 106, Taiwan", + "ror_ids": [ + "https://ror.org/05bqach95" + ] + }, + { + "affiliation": "University of Pennsylvania 2 Cell Center, Department of Genetics , , Philadelphia, PA 19104-6145, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Department of Applied Chemistry, Muroran Institute of Technology", + "ror_ids": [ + "https://ror.org/04rymkk69" + ] + }, + { + "affiliation": "University of Mining and Geology \"St. Ivan Rilsky\",Department of Automation of Production Systems,Sofia,Bulgaria", + "ror_ids": [ + "https://ror.org/01z014940" + ] + }, + { + "affiliation": "Dermatology Unit, San Bortolo Hospital, Vicenza, Italy", + "ror_ids": [ + "https://ror.org/05wd86d64" + ] + }, + { + "affiliation": "Department of Organic Biomaterials; Institute of Biomaterials and Bioengineering; Tokyo Medical and Dental University; 2-3-10 Kanda-Surugadai Chiyoda Tokyo 101-0062 Japan", + "ror_ids": [ + "https://ror.org/051k3eh31" + ] + }, + { + "affiliation": "Software Systems Design, 3627 Padua Avenue, Claremont California", + "ror_ids": [] + }, + { + "affiliation": "Centre for Social Research and Methods, ANU College of Arts and Social Sciences, Australian National University, Canberra, ACT, Australia", + "ror_ids": [ + "https://ror.org/019wvm592" + ] + }, + { + "affiliation": "Biomedical science and environmental biology Kaohsiung Medical University Kaohsiung Taiwan", + "ror_ids": [ + "https://ror.org/03gk81f96" + ] + }, + { + "affiliation": "NASA Marshall Space Flight Center, SD-50 Space Plasma Physics Group, Space Science Department, Huntsville, Alabama 35812", + "ror_ids": [ + "https://ror.org/02epydz83" + ] + }, + { + "affiliation": "National Laboratory of Solid State Microstructures Jiangsu Key Laboratory of Artificial Functional Materials Department of Materials Science and Engineering College of Engineering and Applied Sciences Nanjing University Nanjing 210093 China", + "ror_ids": [ + "https://ror.org/01rxvg760", + "https://ror.org/05ryc2b20" + ] + }, + { + "affiliation": "Institute of Cognitive Systems, Technical University of Munich,Department of Electrical and Computer Engineering,Munich,Germany,80333", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Charles University, Faculty of Mathematics and Physics, V Holešovičkách 2, 18000 Prague 8, Czech Republic", + "ror_ids": [ + "https://ror.org/024d6js02" + ] + }, + { + "affiliation": "International Centre for Wavelet Analysis and Its Applications, Logistical Engineering University, Chongqing 400016, P.R. China", + "ror_ids": [ + "https://ror.org/02syyrn67" + ] + }, + { + "affiliation": "Department of Mathematics; Cornell University; Ithaca New York 14853-7901 U.S.A.", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Surgery, Washington University School of Medicine in St. Louis, St. Louis, Missouri.", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Department of Psychology, Universitat Jaume I, Castellón de la Plana, Spain", + "ror_ids": [ + "https://ror.org/02ws1xc11" + ] + }, + { + "affiliation": "ONDOKUZ MAYIS ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/028k5qw24" + ] + }, + { + "affiliation": "Department of Otolaryngology, School of Medicine, Kyung Hee University, Seoul, Korea.", + "ror_ids": [ + "https://ror.org/01zqcg218" + ] + }, + { + "affiliation": "Department of Electronic Engineering, Iwaki-Meisei University, Iwaki, Fukushima 970", + "ror_ids": [ + "https://ror.org/04v5axh10" + ] + }, + { + "affiliation": "Duke NUS Medical School, Singapore.", + "ror_ids": [ + "https://ror.org/02j1m6098" + ] + }, + { + "affiliation": "Institut für Physikalische Chemie der Universität München, D-8000 München 2", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "University of Florence, Department of Industrial Engineering", + "ror_ids": [ + "https://ror.org/04jr1s763" + ] + }, + { + "affiliation": "Atmospheric, Oceanic and Planetary Physics, University of Oxford, Oxford, United Kingdom", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Department of Chemistry, Texas Christian University, Fort Worth, TX 76129", + "ror_ids": [ + "https://ror.org/054b0b564" + ] + }, + { + "affiliation": "NIT Silchar,Department of E&I,Silchar,Assam", + "ror_ids": [ + "https://ror.org/001ws2a36" + ] + }, + { + "affiliation": "School of Information and Electronic, Beijing Institute of Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "Núcleo Milenio Paleoclima Centro de Estudios del Clima y la Resiliencia, and Departamento de Ciencias Ecológicas Santiago Universidad de Chile Chile", + "ror_ids": [ + "https://ror.org/047gc3g35" + ] + }, + { + "affiliation": "Norman Bridge Laboratory of Physics, Pasadena, Cal.", + "ror_ids": [] + }, + { + "affiliation": "Key Laboratory of Molecular Epigenetics of the Ministry of Education (MOE), Northeast Normal University, Changchun 130024, People's Republic of China", + "ror_ids": [ + "https://ror.org/02rkvz144" + ] + }, + { + "affiliation": "Jardim Botânico do Rio de Janeiro: Jardim Botanico do Rio de Janeiro", + "ror_ids": [ + "https://ror.org/033xtdz52" + ] + }, + { + "affiliation": "GeoForschungsZentrum Potsdam (GFZ), Department Geodesy and Remote Sensing", + "ror_ids": [ + "https://ror.org/04z8jg394" + ] + }, + { + "affiliation": "Department of Otolaryngology-Head and Neck Surgery; National Defense Medical College; Saitama Japan", + "ror_ids": [ + "https://ror.org/02e4qbj88" + ] + }, + { + "affiliation": "HOSPITAL FOR SICK CHILDREN, Neonatology, TORONTO, Canada", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "Midland Counties Dairy Ltd., Birmingham", + "ror_ids": [] + }, + { + "affiliation": "ICI Pharmaceuticals Division, Alderley Park, Macclesfield, Cheshire, SK10 2TG, UK", + "ror_ids": [] + }, + { + "affiliation": "IK4-Ikerlan Research Center, Arrasate, Spain", + "ror_ids": [ + "https://ror.org/03hp1m080" + ] + }, + { + "affiliation": "University of Edinburgh Edinburgh United Kingdom", + "ror_ids": [ + "https://ror.org/01nrxwf90" + ] + }, + { + "affiliation": "UWA School of Agriculture & Environment, and the UWA Institute of Agriculture, The University of Western Australia, Perth, Australia", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "Department of Plant and Environmental Sciences Weizmann Institute of Science Rehovot Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "From the Department of Medicine, David Geffen School of Medicine at UCLA.", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Centre for Sociological Research, Leuven, Belgium", + "ror_ids": [] + }, + { + "affiliation": "School of Human Kinetics, University of Ottawa, Ottawa, Canada", + "ror_ids": [ + "https://ror.org/03c4mmv16" + ] + }, + { + "affiliation": "Universidad Complutense de Madrid", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Mexico", + "ror_ids": [] + }, + { + "affiliation": "University of Turin, Istituto di Chimica Agraria, via Pietro Giuria 15,10126 Turin, Italy", + "ror_ids": [ + "https://ror.org/048tbm396" + ] + }, + { + "affiliation": "Richard Stockton State College", + "ror_ids": [ + "https://ror.org/0442n1j98" + ] + }, + { + "affiliation": "Matin Kholmatov is an economist in World Bank.", + "ror_ids": [ + "https://ror.org/00ae7jd04" + ] + }, + { + "affiliation": "Politecnico di Milano Dipartimento di Ingegneria Civile e Ambientale", + "ror_ids": [ + "https://ror.org/01nffqt88" + ] + }, + { + "affiliation": "Blackebergs Gymnasium, Wergelandsgatan 22, SE 168 48 Bromma, Sweden", + "ror_ids": [] + }, + { + "affiliation": "Department of Internal Medicine, Faculty of Medicine, University of Prishtina, Prishtina, Kosovo", + "ror_ids": [ + "https://ror.org/05t3p2g92" + ] + }, + { + "affiliation": "Industrial University of Tyumen", + "ror_ids": [ + "https://ror.org/02kyh9583" + ] + }, + { + "affiliation": "The Institute for the Study of Rate Processes, University of Utah, Salt Lake City, Utah", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "1 Syracuse University, Syracuse, New York", + "ror_ids": [ + "https://ror.org/025r5qe02" + ] + }, + { + "affiliation": "Innovation Academy for Precision Measurement Science and Technology, Chinese Academy of Sciences", + "ror_ids": [ + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "University of Leeds", + "ror_ids": [ + "https://ror.org/024mrxd33" + ] + }, + { + "affiliation": "London", + "ror_ids": [] + }, + { + "affiliation": "Michigan Technological University", + "ror_ids": [ + "https://ror.org/0036rpn28" + ] + }, + { + "affiliation": "Idaho National Laboratory (INL), Idaho Falls, ID (United States)", + "ror_ids": [ + "https://ror.org/00ty2a548" + ] + }, + { + "affiliation": "Dipartimento di Chimica e Biologia, Università degli Studi di Salerno, via Giovanni Paolo II 132, 84084 Fisciano, Salerno, Italy", + "ror_ids": [ + "https://ror.org/0192m2k53" + ] + }, + { + "affiliation": "TAIYO YUDEN CO., LTD.", + "ror_ids": [ + "https://ror.org/001m9wh67" + ] + }, + { + "affiliation": "1Uz Leuven, Leuven, Vlaams Brabant, Belgium; Interuniversity Centre for Biostatistics and Statistical Bioinformatics, Hasselt, Limburg, Belgium", + "ror_ids": [ + "https://ror.org/0424bsv16" + ] + }, + { + "affiliation": "Centre for Agriculture and Biosciences International (CABI) Nairobi Kenya", + "ror_ids": [ + "https://ror.org/00zy1mb15" + ] + }, + { + "affiliation": "Pediatric Post-Graduate School, University of Modena and Reggio Emilia, 41125 Modena, Italy", + "ror_ids": [ + "https://ror.org/02d4c4y02" + ] + }, + { + "affiliation": "Department of Medicine, University of Maryland at Baltimore, USA.", + "ror_ids": [ + "https://ror.org/04rq5mt64" + ] + }, + { + "affiliation": "College of Information Engineering, Weifang Vocational College, Weifang 261041, P. R. China", + "ror_ids": [] + }, + { + "affiliation": "Corporate Solid State Laboratory, Varian Associates, Palo Alto, California 94303", + "ror_ids": [ + "https://ror.org/05yab6874" + ] + }, + { + "affiliation": "Department of Public Health and Primary Care Leiden University Medical Centre Leiden the Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17", + "https://ror.org/027bh9e22" + ] + }, + { + "affiliation": "b Cooperative Research Centre for Contamination Assessment and Remediation of Environments, Mawson Lakes Boulevard , Mawson Lakes , Australia", + "ror_ids": [ + "https://ror.org/02nadej66" + ] + }, + { + "affiliation": "Universidade Federal de Mato Grosso do Sul, Brazil", + "ror_ids": [ + "https://ror.org/0366d2847" + ] + }, + { + "affiliation": "Cellular and Molecular Biochemistry Research Laboratory (151), Minneapolis Veterans Affairs Medical Center, and Department of Laboratory Medicine and Pathology and Masonic Cancer Center, University of Minnesota, Minneapolis, Minnesota 55417", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "Brigham and Women's Hosp, Boston, MA", + "ror_ids": [ + "https://ror.org/04b6nzv94" + ] + }, + { + "affiliation": "National Research Tomsk Polytechnic University", + "ror_ids": [ + "https://ror.org/00a45v709" + ] + }, + { + "affiliation": "Division of Digestive Health and Liver Diseases Miller School of Medicine University of Miami Miami Florida USA", + "ror_ids": [ + "https://ror.org/02dgjyy92" + ] + }, + { + "affiliation": "Community and Regional Planning, University of Nebraska-Lincoln, Lincoln, NE", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "School of Health and Rehabilitation Sciences, The University of Queensland, Brisbane, Australia", + "ror_ids": [ + "https://ror.org/00rqy9422" + ] + }, + { + "affiliation": "Onderwijsontw & Onderwijsresearch", + "ror_ids": [] + }, + { + "affiliation": "1Professor Emeritus of Celtic, University of Glasgow", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "Department of Thyroid Surgery, Henan Provincial People's Hospital, Zhengzhou, Henan 450000, P.R. China", + "ror_ids": [ + "https://ror.org/03f72zw41" + ] + }, + { + "affiliation": "Neutron Science Center Songshan Lake Materials Laboratory Dongguan Guangdong 523800 China", + "ror_ids": [ + "https://ror.org/020vtf184" + ] + }, + { + "affiliation": "International Islamic University Malaysia", + "ror_ids": [ + "https://ror.org/03s9hs139" + ] + }, + { + "affiliation": "Graduate Institute of Clinical Medical Sciences, College of Medicine, Chang Gung University, Taoyuan, Taiwan; and", + "ror_ids": [ + "https://ror.org/00d80zx46" + ] + }, + { + "affiliation": "Department of Biological Sciences, Purdue University, West Lafayette, Indiana 47907-1392", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Department of Life Sciences, Natural History Museum, London, SW7 5BD, United Kingdom.", + "ror_ids": [ + "https://ror.org/039zvsn29" + ] + }, + { + "affiliation": "University of Tasmania School of Pharmacy, Hobart, Australia", + "ror_ids": [ + "https://ror.org/01nfmeh72" + ] + }, + { + "affiliation": "Institute of Experimental Gas Dynamics and Explosion Physics", + "ror_ids": [] + }, + { + "affiliation": "Department of Internal Medicine and Endocrinology, Herlev University Hospital, DK 2730, Herlev, Denmark", + "ror_ids": [] + }, + { + "affiliation": "Department of Rheumatology, Sheffield Teaching Hospitals, Sheffield, UNITED KINGDOM", + "ror_ids": [] + }, + { + "affiliation": "Federal State-Financed Educational Institution of Higher Learning \"Komsomolsk-na-Amure State University\"", + "ror_ids": [ + "https://ror.org/03fws8b96" + ] + }, + { + "affiliation": "Department of Medicine, Ninewells Hospital and Medical School, Dundee, Scotland, U.K.", + "ror_ids": [ + "https://ror.org/039c6rk82" + ] + }, + { + "affiliation": "Institute of Education, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Specialist Registrar, Department of Otorhinolaryngology and Head and Neck Surgery, John Radcliffe Hospital, Oxford", + "ror_ids": [ + "https://ror.org/0080acb59" + ] + }, + { + "affiliation": "Department of Anatomy, University of California, San Francisco, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Universitat Politecnica de Catalunya, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/03mb6wj31" + ] + }, + { + "affiliation": "Michelson Laboratory, Lake, U. S. Naval Ordnance Test Station, Inyokern, China Lake, Calif.", + "ror_ids": [] + }, + { + "affiliation": "Technical University of Ostrava", + "ror_ids": [ + "https://ror.org/05x8mcb75" + ] + }, + { + "affiliation": "State Key Laboratory of Crop Biology College of Agronomy Shandong Agricultural University Tai an Shandong PR China", + "ror_ids": [ + "https://ror.org/02ke8fw32", + "https://ror.org/04axhqr63" + ] + }, + { + "affiliation": "Naval Undersea Warfare Center, 1176 Howell Street, Newport, Rhode Island 02841", + "ror_ids": [ + "https://ror.org/04bnxa153" + ] + }, + { + "affiliation": "HARRAN ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/057qfs197" + ] + }, + { + "affiliation": "School of Electrical and Computer Engineering, Purdue University, West Lafayette, IN, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Computer & System Section, Electrical Engineering Department, Aswan Faculty of Engineering, South Valley University, Aswan 81542, Egypt", + "ror_ids": [ + "https://ror.org/00jxshx33" + ] + }, + { + "affiliation": "1College of Life Sciences, National Chung Hsing University, Taichung, Taiwan.", + "ror_ids": [ + "https://ror.org/05vn3ca78" + ] + }, + { + "affiliation": "Bachelor’s Degree in Animal Science, Federal University of Technology–Parana, Dois Vizinhos 85660-000, Brazil", + "ror_ids": [ + "https://ror.org/002v2kq79" + ] + }, + { + "affiliation": "University Department of Pharmacology, Oxford University, Oxford OX1 3QT, U.K.", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Institut für Anorganische Chemie der Universität Göttingen, Tammannstrasse 4, D-37077 Göttingen, Germany", + "ror_ids": [ + "https://ror.org/01y9bpm73" + ] + }, + { + "affiliation": "Key Laboratory of Recycling and Eco-Treatment of Waste Biomass of Zhejiang Province, School of Environment and Natural Resources, Zhejiang University of Science and Technology, Hangzhou 310023, China", + "ror_ids": [ + "https://ror.org/05mx0wr29" + ] + }, + { + "affiliation": "Centre for Nutrition, Prevention and Health Services, National Institute for Public Health and the Environment, Bilthoven, The Netherlands", + "ror_ids": [ + "https://ror.org/01cesdt21" + ] + }, + { + "affiliation": "philadelphia, PA", + "ror_ids": [] + }, + { + "affiliation": "Dipartimento di Fisica dell’Universitá−Corso Italia, 57-I95129, Catania, Italy", + "ror_ids": [] + }, + { + "affiliation": "Key Laboratory of Horticultural Plant Biology (Ministry of Education), College of Horticulture and Forestry Science Huazhong Agricultural University Wuhan, 430070 China", + "ror_ids": [ + "https://ror.org/023b72294" + ] + }, + { + "affiliation": "Medical Oncology, Santa Chiara Hospital, Trento, Italy", + "ror_ids": [ + "https://ror.org/007x5wz81" + ] + }, + { + "affiliation": "St. Petersburg State University, 198504 St. Petersburg, Russia", + "ror_ids": [ + "https://ror.org/023znxa73" + ] + }, + { + "affiliation": "Department of Mathematics [Univ California San Diego]", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Department of Plant and Microbial Biology University of Zürich Zollikerstrasse 107 Zürich 8008 Switzerland", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "c UNESCO-ICIWaRM, Institute for Water Resources , Alexandria, Virginia, 22315, USA", + "ror_ids": [] + }, + { + "affiliation": "Texas Transportation Institute, Texas A&M University System, College Station, TX 77843-3135", + "ror_ids": [ + "https://ror.org/0034eay46" + ] + }, + { + "affiliation": "Laboratory of Physiology, University of Leuven, Campus Gasthuisberg, Belgium.", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "National Innovation Institute of Defense Technology, China", + "ror_ids": [] + }, + { + "affiliation": "Department of Biological Chemistry and Molecular Pharmacology, Harvard Medical School, Boston, Massachusetts 02115, and Center for Hemostasis and Thrombosis Research, Division of Hematology/Oncology, New England Medical Center, and Departments of Medicine and Biochemistry, Tufts University School of Medicine, Boston, Massachusetts 02111", + "ror_ids": [ + "https://ror.org/05wvpxv85", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, National University of Singapore , Singapore 117583", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Leibnizstr. 23, D-41061 Mönchengladbach", + "ror_ids": [] + }, + { + "affiliation": "Biblical Studies, University of Sheffield", + "ror_ids": [ + "https://ror.org/05krs5044" + ] + }, + { + "affiliation": "Biotechnology Laboratory, University of British Columbia, Vancouver, British Columbia, Canada V6T 1Z3", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "PROFESSOR OF EDUCATION, TEACHERS COLLEGE", + "ror_ids": [] + }, + { + "affiliation": "Cons. Engr., Wargon, Chapman & Assocs., Sydney, New South Wales, Australia.", + "ror_ids": [] + }, + { + "affiliation": "Department of Pediatrics (E.C.K., P.C.W.), University of Texas Southwestern Medical Center, Dallas, Texas 75390", + "ror_ids": [ + "https://ror.org/05byvp690" + ] + }, + { + "affiliation": "Basque Center for Materials, Applications & Nanostructures (BCMaterials), Technological Park of Zamudio, Camino de Ibaizabal, Bndg. 500-first, 48160 Derio, Spain", + "ror_ids": [ + "https://ror.org/005hdgp31" + ] + }, + { + "affiliation": "Department of Pathology, Bacteriology and Avian Diseases, Faculty of Veterinary Medicine, Ghent University, Salisburylaan 133, B9820 Merelbeke, Belgium.", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Universidad Técnica de Machala, Programa de maestría en Medicina Veterinaria, mención Clínica y Cirugía de Pequeñas Especies. Machala, El Oro, Ecuador - RenatoVetDerm. Davie, Florida, Estados Unidos de América", + "ror_ids": [ + "https://ror.org/036zk8k10" + ] + }, + { + "affiliation": "Parsons Brinckerhoff, New York, NY, USA", + "ror_ids": [ + "https://ror.org/00cyfck94" + ] + }, + { + "affiliation": "Director, Professional Engineering Practice Liaison Program, Univ. of Washington, Box 532700, Seattle, WA 98195-2700.", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "The Norwegian University of Science and Technology and The Norwegian Public Roads Administration", + "ror_ids": [ + "https://ror.org/05xg72x27", + "https://ror.org/009kqch10" + ] + }, + { + "affiliation": "La Trobe University", + "ror_ids": [ + "https://ror.org/01rxfrp27" + ] + }, + { + "affiliation": "UPF: Universitat Pompeu Fabra", + "ror_ids": [ + "https://ror.org/04n0g0b29" + ] + }, + { + "affiliation": "University of California Davis, Davis, CA, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Huazhong University of Science and Technology,State Key Laboratory of Advanced Electromagnetic Engineering and Technology School of Electrical and Electronic Engineering,Wuhan,China", + "ror_ids": [ + "https://ror.org/00p991c53", + "https://ror.org/01mr5b726" + ] + }, + { + "affiliation": "SOITEC, Bernin, France", + "ror_ids": [ + "https://ror.org/00s730510" + ] + }, + { + "affiliation": "University of Lincoln", + "ror_ids": [ + "https://ror.org/03yeq9x20" + ] + }, + { + "affiliation": "Ruhr-University Bochum", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "EEUSP, Brasil", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurobiology, Care Sciences and Society Divison of Physiotherapy Karolinska Institutet Stockholm Sweden", + "ror_ids": [ + "https://ror.org/056d84691" + ] + }, + { + "affiliation": "Department of Social Welfare Ghent University, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Department of Bacteriology and Immunology, Harvard Medical School From the , and the , Boston, Mass.", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Indiana University, Bloomington, IN 47405", + "ror_ids": [ + "https://ror.org/01kg8sb98", + "https://ror.org/02k40bc56" + ] + }, + { + "affiliation": "Department of Chemistry, Westmont College, Santa Barbara, California 93108", + "ror_ids": [ + "https://ror.org/00xhcz327" + ] + }, + { + "affiliation": "Department of Chemistry Massachusetts Institute of Technology Cambridge MA 02139 USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Departments of Computer Science, University of Hertfordshire, College Lane, Hatfield, AL10 9AB, United Kingdom", + "ror_ids": [ + "https://ror.org/0267vjk41" + ] + }, + { + "affiliation": "Department of Neurology Aarhus University Hospital Aarhus Denmark", + "ror_ids": [ + "https://ror.org/040r8fr65" + ] + }, + { + "affiliation": "University of California, Los Angeles", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Saitama Prefectural Institute of Public Health", + "ror_ids": [ + "https://ror.org/03ykm7q16" + ] + }, + { + "affiliation": "University of Bahrain, Bahrain", + "ror_ids": [ + "https://ror.org/0317ekv86" + ] + }, + { + "affiliation": "Biological Laboratory, Fordham University, New York City", + "ror_ids": [ + "https://ror.org/03qnxaf80" + ] + }, + { + "affiliation": "Department of Medical Genetics, School of Medicine, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Faculty of Social Sciences, University of Helsinki Helsinki, Finland", + "ror_ids": [ + "https://ror.org/040af2s02" + ] + }, + { + "affiliation": "Institut für Molekulare Mikrobiologie und Biotechnologie, Westfälische Wilhelms-Universität Münster, Corrensstrasse 3, 48149 Münster, Germany", + "ror_ids": [ + "https://ror.org/00pd74e08" + ] + }, + { + "affiliation": "Professor of Marketing, College of Business Administration, University of Denver.", + "ror_ids": [ + "https://ror.org/04w7skc03" + ] + }, + { + "affiliation": "Department of Management and Marketing The University of Melbourne VIC 3010 Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Metallographischen Laboratorium der Universität Göttingen; Göttingen", + "ror_ids": [ + "https://ror.org/01y9bpm73" + ] + }, + { + "affiliation": "Lehrstuhl für Experimentelle Physik EIIb, Universität Dortmund, Otto-Hahn-Str. 4, 44221 Dortmund, Germany", + "ror_ids": [ + "https://ror.org/01k97gp34" + ] + }, + { + "affiliation": "University of Tuebingen, 70376 Stuttgart, Germany;", + "ror_ids": [ + "https://ror.org/03a1kwz48" + ] + }, + { + "affiliation": "P. R. China", + "ror_ids": [] + }, + { + "affiliation": "Thinking Machines Corp., Cambridge, MA 02142, USA", + "ror_ids": [] + }, + { + "affiliation": "Intelligent Modelling and Analysis Group, School of Computer Science, University of Nottingham, Nottingham, UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Division of Plastic and Reconstructive Surgery, Northwestern University, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "The University of Texas MD Anderson Cancer Center, Houston, TX", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Centre for Sleep Research, The University of South Australia, The Queen Elizabeth Hospital, Woodville, South Australia 5011; and", + "ror_ids": [ + "https://ror.org/01p93h210", + "https://ror.org/00x362k69" + ] + }, + { + "affiliation": "Department of Chemistry and Chemical Biology, Harvard University, Cambridge, Massachusetts 02138;", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "School of Mathematical Sciences Huaqiao University Quanzhou 362021 Fujian China", + "ror_ids": [ + "https://ror.org/03frdh605" + ] + }, + { + "affiliation": "Laboratoire de pédagogie expérimentale, Université de Liège", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "Changchun Institute of Applied Chemistry State Key Laboratory of Polymer Physics and Chemistry, , Chinese Academy of Sciences, Graduate School of the Chinese Academy of Sciences, Changchun 130022, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05vy7se14", + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "Sound ID and SoundHawk 2595 East Bayshore Rd., Palo Alto, CA 94303", + "ror_ids": [] + }, + { + "affiliation": "University of Szeged Department of Mineralogy, Geochemistry and Petrology H‐6701 Szeged P.O. Box 651 Hungary", + "ror_ids": [ + "https://ror.org/01pnej532" + ] + }, + { + "affiliation": "Boston Children's Hospital Division of Immunology", + "ror_ids": [ + "https://ror.org/00dvg7y05" + ] + }, + { + "affiliation": "SANKEN (The Institute of Scientific and Industrial Research), Osaka University, 8-1 Mihogaoka, Ibaraki, Osaka 567-0047, Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "Escola Superior de Ciências da Saúde, Brazil", + "ror_ids": [ + "https://ror.org/04qjmsq15" + ] + }, + { + "affiliation": "Multi‐Functional Nano/Bio Electronics Laboratory Kyung Hee University Gyeonggi 17104 Korea", + "ror_ids": [ + "https://ror.org/01zqcg218" + ] + }, + { + "affiliation": "Institute for Infocomm Research, Singapore", + "ror_ids": [ + "https://ror.org/053rfa017" + ] + }, + { + "affiliation": "Contribution from the Department of Chemistry, The Pennsylvania State University, University Park, Pennsylvania 16802", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Associate Professor, Department of Neurosurgery, Tohoku University, School of Medicine; Sendai, Japan", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "Thomas Jefferson University, Philadelphia, PA;", + "ror_ids": [ + "https://ror.org/00ysqcn41" + ] + }, + { + "affiliation": "National Clinical Research, 2809 Emerywood Parkway, Suite 140, Richmond, VA 23294", + "ror_ids": [ + "https://ror.org/03ddkvp86" + ] + }, + { + "affiliation": "NYS Institute for Basic Research Staten Island NY USA", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurosurgery, Lianyungang Hospital of Xuzhou Medical College; Jiang Su, China", + "ror_ids": [ + "https://ror.org/04fe7hy80" + ] + }, + { + "affiliation": "Nanyang Technological University", + "ror_ids": [ + "https://ror.org/02e7b5302" + ] + }, + { + "affiliation": "Xi'an University of Science and Technology", + "ror_ids": [ + "https://ror.org/046fkpt18" + ] + }, + { + "affiliation": "Shenzhen Urban Public Safety and Technology Institute, Shenzhen 518046, Guangdong, China", + "ror_ids": [] + }, + { + "affiliation": "Liverpool John Moores University", + "ror_ids": [ + "https://ror.org/04zfme737" + ] + }, + { + "affiliation": "Centro Andaluz de Medio Ambiente, Universidad de Granada, Avda. del Mediterráneo s/n, Granada, 18006, Spain", + "ror_ids": [ + "https://ror.org/04njjy449" + ] + }, + { + "affiliation": "Universidad Nacional, Colombia", + "ror_ids": [ + "https://ror.org/059yx9a68" + ] + }, + { + "affiliation": "Department of Biomaterials, Faculty of Materials Science and Ceramics, AGH University of Science and Technology, Krakow, Poland", + "ror_ids": [ + "https://ror.org/00bas1c41" + ] + }, + { + "affiliation": "China Ship Scientific Research Center, Wuxi, China", + "ror_ids": [] + }, + { + "affiliation": "Department of Cardiology, NuHealth, Nassau University Medical Center, East Meadow, NY, USA.", + "ror_ids": [ + "https://ror.org/03cc0mm23" + ] + }, + { + "affiliation": "Canviro Consultants, Division of CH2M-Hill Eng. Ltd., Waterloo, Ontario N2J 1P8, Canada", + "ror_ids": [] + }, + { + "affiliation": "University of Connecticut", + "ror_ids": [ + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "Centre for Health Services Research, Builiding 33, Princess Alexandra Hospital, The University of Queensland, Brisbane, Australia", + "ror_ids": [ + "https://ror.org/00rqy9422", + "https://ror.org/04mqb0968" + ] + }, + { + "affiliation": "Rochester Inst. of Technology, NY", + "ror_ids": [ + "https://ror.org/00v4yb702" + ] + }, + { + "affiliation": "Department of Biology, 258 Science Building, Eastern Washington University, Cheney, WA 99004", + "ror_ids": [ + "https://ror.org/002g57a93" + ] + }, + { + "affiliation": "The Gene and Linda Voiland School of Chemical Engineering and Bioengineering, Washington State University, Pullman, Washington, USA", + "ror_ids": [ + "https://ror.org/05dk0ce17" + ] + }, + { + "affiliation": "Division of Pulmonary and Critical Care Medicine, Department of Medicine, and", + "ror_ids": [] + }, + { + "affiliation": "a Faculty of Engineering, Yamagata University , Jonan 4-3-16, Yonezawa , 992-8510 , Japan", + "ror_ids": [ + "https://ror.org/00xy44n04" + ] + }, + { + "affiliation": "Department of Chemistry and\nBiochemistry, Florida State University, 95 Chieftan Way, 310 DLC, Tallahassee, Florida 32306, United States", + "ror_ids": [ + "https://ror.org/05g3dte14" + ] + }, + { + "affiliation": "Hi-Tec Systems, Inc.", + "ror_ids": [] + }, + { + "affiliation": "Minneapolis, MN", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemistry, Saint Louis University, 3501 Laclede Avenue, Saint\nLouis, Missouri 63103, United States", + "ror_ids": [ + "https://ror.org/01p7jjy08" + ] + }, + { + "affiliation": "Carbide and Carbon Chemicals Corporation, Oak Ridge, Tennessee", + "ror_ids": [] + }, + { + "affiliation": "Internistische Praxengemeinschaft, Gastroenterology, Oldenburg, Germany", + "ror_ids": [] + }, + { + "affiliation": "Gastroenterology Hospital Exequiel Gonzalez Cortes Santiago Chile", + "ror_ids": [] + }, + { + "affiliation": "Arizona Cancer Center, Tucson, AZ", + "ror_ids": [] + }, + { + "affiliation": "Charles River Associates, John Hancock Tower, 200 Clarendon Street, Boston, Massachusetts 02116, USA", + "ror_ids": [ + "https://ror.org/04enbdd69" + ] + }, + { + "affiliation": "First Saint Petersburg State Medical University n. a. I. P. Pavlov; Institute for Experimental Medicine", + "ror_ids": [ + "https://ror.org/04g525b43" + ] + }, + { + "affiliation": "University North, Jurja Krizanica 31b, 42000 Varazdin, Croatia", + "ror_ids": [ + "https://ror.org/01afbkc02" + ] + }, + { + "affiliation": "Stagiaire postdoctorale, Département de psychologie, Université du Québec à Trois-Rivières, elisabeth.godbout@uqtr.ca", + "ror_ids": [ + "https://ror.org/02xrw9r68" + ] + }, + { + "affiliation": "Department of Psychology, 2Department of Pediatrics, 3Neuroscience Program, 4Department of Human Genetics, University of Michigan, Ann Arbor, MI, USA, 5Department of Psychiatry, Weill Cornell Medical College, New York, NY, USA, and 6Department of Psychiatry and 7Center for Human Growth and Development, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Technology Development Department, Bioprocess Division Asahi Kasei Medical Co. Ltd. Nobeoka Miyazaki Prefecture Japan", + "ror_ids": [ + "https://ror.org/018wp0236" + ] + }, + { + "affiliation": "Emory University and Georgia Institute of Technology", + "ror_ids": [ + "https://ror.org/01zkghx44", + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Division of Economics of Agricultural Cooperatives Humboldt‐Universitat zu Berlin Germany", + "ror_ids": [ + "https://ror.org/01hcx6992" + ] + }, + { + "affiliation": "School of Civil Engineering, The University of Sydney, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Graduate School of Energy and Environment Seoul National University of Science and Technology Seoul Republic of Korea", + "ror_ids": [ + "https://ror.org/00chfja07" + ] + }, + { + "affiliation": "Laboratory of Oncology, IRCCS “Casa Sollievo della Sofferenza” Hospital, San Giovanni Rotondo, Italy", + "ror_ids": [ + "https://ror.org/00md77g41", + "https://ror.org/04tfzc498" + ] + }, + { + "affiliation": "Department of Applied Chemistry, National Chi Nan University, No. 302 University Road, Puli, Nantou 54561, Taiwan, R.O.C", + "ror_ids": [ + "https://ror.org/03ha6v181" + ] + }, + { + "affiliation": "Hubei Key Laboratory for Heavy Rain Monitoring and Warning Research Institute of Heavy Rain, China Meteorological Administration Wuhan China", + "ror_ids": [ + "https://ror.org/00bx3rb98" + ] + }, + { + "affiliation": "Department of MedicineUniversity of California San DiegoLa Jolla, CA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Engineering Services, M. E. Simpson Company, Valparaiso, IN.", + "ror_ids": [] + }, + { + "affiliation": "Technical and Macromolecular Chemistry Paderborn University Warburger Str. 100 33098 Paderborn Germany", + "ror_ids": [ + "https://ror.org/058kzsd48" + ] + }, + { + "affiliation": "Astrodynamics and Control Laboratory, Department of Astronomy, Yonsei University, Seoul 03722, Republic of Korea", + "ror_ids": [ + "https://ror.org/01wjejq96" + ] + }, + { + "affiliation": "YEDİTEPE ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/025mx2575" + ] + }, + { + "affiliation": "Laboratory of Animal Germplasm Conservation–LCGA, Department of Animal Sciences, Universidade Federal Rural do Semi-Árido (UFERSA), Mossoró, Brazil", + "ror_ids": [ + "https://ror.org/05x2svh05" + ] + }, + { + "affiliation": "Beijing University of Posts and Telecommunications,Beijing,China,100876", + "ror_ids": [ + "https://ror.org/04w9fbh59" + ] + }, + { + "affiliation": "Janssen Research & Development, Spring House, PA.", + "ror_ids": [] + }, + { + "affiliation": "Department of Anthropology, University of Wisconsin-Milwaukee, USA", + "ror_ids": [ + "https://ror.org/031q21x57" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology Hyogo College of Medicine Hyogo Japan", + "ror_ids": [ + "https://ror.org/001yc7927" + ] + }, + { + "affiliation": "LG Electronics", + "ror_ids": [ + "https://ror.org/02b948n83" + ] + }, + { + "affiliation": "Drexel University School of Public Health, Philadelphia, United States of America", + "ror_ids": [ + "https://ror.org/04bdffz58" + ] + }, + { + "affiliation": "Department of Pharmaceutical Outcomes and Policy, University of Florida College of Pharmacy, Gainesville", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Washington University in St. Louis", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Department of ECEThiagarajar College of EngineeringMaduraiTamil NaduIndia", + "ror_ids": [] + }, + { + "affiliation": "Department of Molecular Bacteriology, Helmholtz Centre for Infection Research (HZI), Braunschweig, Germany", + "ror_ids": [ + "https://ror.org/03d0p2685" + ] + }, + { + "affiliation": "University of Miami Rosenstiel School of Marine and Atmospheric Science, 4600 Rickenbacker Causeway, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/02dgjyy92" + ] + }, + { + "affiliation": "Department of Applied Mathematics, Delhi Technological University, Rohini, New Delhi 110042, India.", + "ror_ids": [ + "https://ror.org/01ztcvt22" + ] + }, + { + "affiliation": "Vascular Cognitive Impairment and Neurodegeneration Program, Center for Geroscience and Healthy Brain Aging/Reynolds Oklahoma Center on Aging, Department of Biochemistry and Molecular Biology, University of Oklahoma Health Sciences Center, Oklahoma City, OK, USA", + "ror_ids": [ + "https://ror.org/0457zbj98" + ] + }, + { + "affiliation": "a University of Maryland , College Park, Maryland, USA", + "ror_ids": [ + "https://ror.org/047s2c258" + ] + }, + { + "affiliation": "Pathology, Louisiana State University Health Sciences Center, and", + "ror_ids": [ + "https://ror.org/05ect4e57", + "https://ror.org/01qv8fp92" + ] + }, + { + "affiliation": "Ospedale San Raffaele, Neuroimaging Research Unit Milan Italy", + "ror_ids": [ + "https://ror.org/039zxt351" + ] + }, + { + "affiliation": "College of Computer Science and Information Technology, Jazan University,Department of Computer Science,Jizan,Kingdom of Saudi Arabia", + "ror_ids": [ + "https://ror.org/02bjnq803" + ] + }, + { + "affiliation": "Concordia University Wisconsin", + "ror_ids": [ + "https://ror.org/04k83g518" + ] + }, + { + "affiliation": "Tokyo Metropolitan University", + "ror_ids": [ + "https://ror.org/00ws30h19" + ] + }, + { + "affiliation": "Graduate School of Business and Law, RMIT University, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/04ttjf776" + ] + }, + { + "affiliation": "University of Central Florida,Center for Research in Computer Vision", + "ror_ids": [ + "https://ror.org/036nfer12" + ] + }, + { + "affiliation": "GAMMA Remote Sensing Research and Consulting AG, Gümligen, Switzerland", + "ror_ids": [ + "https://ror.org/05spbxe41" + ] + }, + { + "affiliation": "Department of Clinical Immunology, University Hospital Alexandrovska, Bulgaria", + "ror_ids": [ + "https://ror.org/04b8y3f13" + ] + }, + { + "affiliation": "From the Department of Surgery, Division of Pediatric Urology, Hospital for Sick Children, Toronto, Ontario, Canada", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "Institute of Endocrinology and Diabetes, The Children's Hospital at Westmead, Sydney, NSW.", + "ror_ids": [ + "https://ror.org/05k0s5494" + ] + }, + { + "affiliation": "Immunoallergology Department Hospital de Santa Maria Lisbon Portugal", + "ror_ids": [ + "https://ror.org/05bz1tw26" + ] + }, + { + "affiliation": "Wright State University, Dayton, Ohio", + "ror_ids": [ + "https://ror.org/04qk6pt94" + ] + }, + { + "affiliation": "Department of Gynecology, Obstetrics & Reproductive Health Bangabandhu Sheikh Mujibur Rahman Agricultural University Gazipur Bangladesh", + "ror_ids": [ + "https://ror.org/04tgrx733" + ] + }, + { + "affiliation": "Federal Reserve Bank of Cleveland", + "ror_ids": [ + "https://ror.org/01wxdvj03" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Manchester University. Graduate of the Institution.", + "ror_ids": [ + "https://ror.org/027m9bs27" + ] + }, + { + "affiliation": "Swedish Institute of Space Physics Uppsala Sweden", + "ror_ids": [ + "https://ror.org/043kppn11" + ] + }, + { + "affiliation": "Institute of Pharmacy, Faculty of Pharmaceutical and Allied Health Sciences, Lahore College for Women University, Lahore 54000, Pakistan", + "ror_ids": [ + "https://ror.org/02bf6br77" + ] + }, + { + "affiliation": "State Key Laboratory of Supramolecular Structure and Materials, College of Chemistry, Jilin University, 130012, Changchun, People’s Republic of China, and Physikalisches Institut and Center for Nanotechnology (CeNTech), Westfälische Wilhelms-Universität, D-48149 Münster, Germany", + "ror_ids": [ + "https://ror.org/00wk05f95", + "https://ror.org/00js3aw79", + "https://ror.org/02xf8rf51" + ] + }, + { + "affiliation": "Autonomic Laboratory, Department of Neurology and Clinical Neurophysiology, HELIOS‐Klinikum Wuppertal University of Witten/Herdecke Witten Germany", + "ror_ids": [ + "https://ror.org/02r8sh830" + ] + }, + { + "affiliation": "Dept. of Architecture, Grad. Sch. of Eng., The University of Tokyo.", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Professor Emeritus Mental Health and Cultural Diversity, Kings College London, London, UK", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "1101 17th Street, NW, Suite 310, Washington, DC 20036,\nUSA", + "ror_ids": [] + }, + { + "affiliation": "California State University, Northern California Consortium Doctor of Nursing Practice", + "ror_ids": [ + "https://ror.org/020qm1538" + ] + }, + { + "affiliation": "1UT M.D. Anderson Cancer Center, Houston, TX", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "CIRES Climate Diagnostics Center, Boulder, Colorado", + "ror_ids": [ + "https://ror.org/00bdqav06" + ] + }, + { + "affiliation": "1Cancer Research Institute, Seoul National University, Seoul, Korea,", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "University of Calgary and CMC", + "ror_ids": [ + "https://ror.org/03yjb2x39" + ] + }, + { + "affiliation": "Solomon Mahlangu College of Science and Education, Sokoine University of Agriculture, Tanzania", + "ror_ids": [ + "https://ror.org/00jdryp44" + ] + }, + { + "affiliation": "University of Denver", + "ror_ids": [ + "https://ror.org/04w7skc03" + ] + }, + { + "affiliation": "Information Technology Institute, Centre for Research and Technology Hellas, Greece", + "ror_ids": [ + "https://ror.org/03bndpq63" + ] + }, + { + "affiliation": "Ural Federal University named after first President of Russia B.N. Yeltsin", + "ror_ids": [ + "https://ror.org/00hs7dr46" + ] + }, + { + "affiliation": "Zoology Department, Faculty of Science, Cairo University, Giza, Egypt", + "ror_ids": [ + "https://ror.org/03q21mh05" + ] + }, + { + "affiliation": "Historisches Institut Justus-Liebig-Universität Gießen Mittelalterliche Geschichte Otto-Behaghel-Straße 10c 35394 Gießen Deutschland", + "ror_ids": [ + "https://ror.org/033eqas34" + ] + }, + { + "affiliation": "Associate Professor of Management, Marquette University", + "ror_ids": [ + "https://ror.org/04gr4te78" + ] + }, + { + "affiliation": "U. of Illinois at Urbana-Champaign", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Universidade Federal de Pernambuco, Brasil", + "ror_ids": [ + "https://ror.org/047908t24" + ] + }, + { + "affiliation": "Department of Neurology, Philipp University of Marburg, Germany", + "ror_ids": [ + "https://ror.org/01rdrb571" + ] + }, + { + "affiliation": "S.M. Stoller Corporation, Broomfield, CO (United States)", + "ror_ids": [] + }, + { + "affiliation": "Wegener Center for Climate and Global Change University of Graz Graz Austria", + "ror_ids": [ + "https://ror.org/01faaaf77" + ] + }, + { + "affiliation": "Division of Cardiothoracic Surgery, University of California, San Diego, San Diego, CA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Construction Engineering Department, Ecole de Technologie Superieure, University of Quebec, Montreal, Quebec H3C 1K3, Canada", + "ror_ids": [ + "https://ror.org/0020snb74", + "https://ror.org/010gxg263" + ] + }, + { + "affiliation": "a University of Tampere, Seinajoki Unit for Regional Management Studies , PO Box 147, FIN‐60101 Seinajoki, Finland", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemical Engineering and Chemistry, Eindhoven University of Technology, P.O. Box 513, 5600 MB Eindhoven, The Netherlands; DSM Research, P.O. Box 18, 6160 MD, Geleen, The Netherlands; and State Key Laboratory of Chemical Fibers and Polymer Materials, College of Materials Science and Engineering, Donghua University, Shanghai 200051, P. R. China", + "ror_ids": [ + "https://ror.org/02c2kyt77", + "https://ror.org/035psfh38" + ] + }, + { + "affiliation": "Department of Physics, Chiba University, Chiba 263-8522, Japan", + "ror_ids": [ + "https://ror.org/01hjzeq58" + ] + }, + { + "affiliation": "a Department of Inorganic and Analytical Chemistry, Faculty of Pharmacy , K. Marcinkowski University of Medical Sciences in Poznań , Ul. Grunwaldzka 6, Poznań , 60-780 , Poland", + "ror_ids": [ + "https://ror.org/02zbb2597" + ] + }, + { + "affiliation": "Faculty of Education, Shaanxi Normal University, Xi'an, China", + "ror_ids": [ + "https://ror.org/0170z8493" + ] + }, + { + "affiliation": "Tabriz University of Medical Sciences", + "ror_ids": [ + "https://ror.org/04krpx645" + ] + }, + { + "affiliation": "FSBEI HE Altai State Agrarian University", + "ror_ids": [] + }, + { + "affiliation": "Second Department of Internal of Medicine, Hiraka General Hospital", + "ror_ids": [ + "https://ror.org/05mgn5w61" + ] + }, + { + "affiliation": "School of Resource and Environmental Management Simon Fraser University Burnaby British Columbia Canada", + "ror_ids": [ + "https://ror.org/0213rcc28" + ] + }, + { + "affiliation": "INSERM U409, Genetique et Pathologie Moleculaires de l'Hematopoiese, Faculte Xavier Bichat, Paris, France.", + "ror_ids": [ + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "University of New Hampshire", + "ror_ids": [ + "https://ror.org/01rmh9n78" + ] + }, + { + "affiliation": "Isotope and Radiation Application Division, Bhabha Atomic Research Centre, Mumbai, India", + "ror_ids": [ + "https://ror.org/05w6wfp17" + ] + }, + { + "affiliation": "Institute of Material Medica Integration and Transformation for Brain Disorders, Chengdu University of Traditional Chinese Medicine, Chengdu, 611137, PR China", + "ror_ids": [ + "https://ror.org/00pcrz470" + ] + }, + { + "affiliation": "Professor, Department of Preventive Medicine, College of Medicine · Research Institute for Medical Sciences, Chungnam National University, Daejeon, Korea.", + "ror_ids": [ + "https://ror.org/0227as991" + ] + }, + { + "affiliation": "University of Washington, Seattle, Washington 98195", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "School of Economics and Management, Wuhan University of Engineering Science, Wuhan, Hubei, China, --- Select a Country ---", + "ror_ids": [ + "https://ror.org/03bps0m03" + ] + }, + { + "affiliation": "NSF International", + "ror_ids": [ + "https://ror.org/02azqtm75" + ] + }, + { + "affiliation": "a Department of Physics and Astrophysics , University of Delhi , Delhi, 110 007, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery,college of Medicine, Ewha Womans University, Seoul, Korea.", + "ror_ids": [ + "https://ror.org/053fp5c05" + ] + }, + { + "affiliation": "Cornell University Section of Neurobiology and Behavior , Division of Biological Sciences , , Ithaca, NY 14853-2702, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Exxon Production Research Company", + "ror_ids": [] + }, + { + "affiliation": "Department of Physical Chemistry, University of Cambridge, Cambridge, CB2 1EP, England", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, University of Illinois at Urbana–Champaign, Urbana, IL 61801;", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Department of Biochemistry, Shivaji University, Kolhapur, India", + "ror_ids": [ + "https://ror.org/01bsn4x02" + ] + }, + { + "affiliation": "Healthy-Lipids Group, Sección\nDepartamental de Ciencias de la Alimentación, Faculty of Sciences, Universidad Autónoma de Madrid, 28049 Madrid, Spain", + "ror_ids": [ + "https://ror.org/01cby8j38" + ] + }, + { + "affiliation": "College of Food Science and Engineering Northwest A&F University Yangling 712100 China", + "ror_ids": [ + "https://ror.org/0051rme32" + ] + }, + { + "affiliation": "(Czechoslovakia)", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Mathematics and Natural Sciences, University of Bergen, Bergen, Norway", + "ror_ids": [ + "https://ror.org/03zga2b32" + ] + }, + { + "affiliation": "Department of Cognitive Sciences, School of Social Sciences, University of California, Irvine, California;", + "ror_ids": [ + "https://ror.org/04gyf1771" + ] + }, + { + "affiliation": "Department of Radiology, Yamaguchi University Graduate School of Medicine", + "ror_ids": [ + "https://ror.org/03cxys317" + ] + }, + { + "affiliation": "School of Science and Engineering The Chinese University of Hong Kong,Shenzhen,China", + "ror_ids": [ + "https://ror.org/00t33hh48", + "https://ror.org/02d5ks197" + ] + }, + { + "affiliation": "ESKİŞEHİR OSMANGAZİ ÜNİVERSİTESİ, EĞİTİM FAKÜLTESİ", + "ror_ids": [ + "https://ror.org/01dzjez04" + ] + }, + { + "affiliation": "Department of Gerontology Medicine, General Hospital of Hainan Land Reclamation", + "ror_ids": [] + }, + { + "affiliation": "School of Dentistry, College of Medicine, China Medical University, Taichung, Taiwan 404, ROC", + "ror_ids": [ + "https://ror.org/00v408z34" + ] + }, + { + "affiliation": "National Honor Society Hannibal High School, Hannibal, Missouri", + "ror_ids": [] + }, + { + "affiliation": "Discipline of Anatomy and Histology The University of Sydney Sydney New South Wales Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Department of Agricultural Economics Cornell University", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "School of Pharmacy and Pharmacology, University of Bath, Claverton Down, Bath, BA2 7 AY, UK", + "ror_ids": [ + "https://ror.org/002h8g185" + ] + }, + { + "affiliation": "Department of Molecular Biology, Princeton University, Princeton, New Jersey, USA", + "ror_ids": [ + "https://ror.org/00hx57361" + ] + }, + { + "affiliation": "University of Dalian Nationalities", + "ror_ids": [] + }, + { + "affiliation": "Department of Applied and Computational Mathematics and Statistics , University of Notre Dame , Notre Dame , IN 46556 ., USA", + "ror_ids": [ + "https://ror.org/00mkhxb43" + ] + }, + { + "affiliation": "Google Research, United States. kristout@google.com", + "ror_ids": [ + "https://ror.org/00njsd438" + ] + }, + { + "affiliation": "Political Science, Stanford University", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "African Centre for Crop Improvement, School of Agricultural, Earth and Environmental Sciences, University of KwaZulu-Natal, Pietermaritzburg, South Africa", + "ror_ids": [ + "https://ror.org/04qzfn040" + ] + }, + { + "affiliation": "Universidad de Málaga, Faculty of Health Sciences, Instituto de Investigación Biomédica (IBIMA), Málaga, Spain.", + "ror_ids": [ + "https://ror.org/036b2ww28", + "https://ror.org/05n3asa33" + ] + }, + { + "affiliation": "Department of Chemistry, University of Tennessee, Knoxville, TN 37996-1600", + "ror_ids": [ + "https://ror.org/020f3ap87" + ] + }, + { + "affiliation": "Mr Baral is a research scholar in the Centre for American and West European Studies at the School", + "ror_ids": [] + }, + { + "affiliation": "Peoples‘ friendship University of Russia", + "ror_ids": [ + "https://ror.org/02dn9h927" + ] + }, + { + "affiliation": "Department of Physics, University of Helsinki, Helsinki, Finland", + "ror_ids": [ + "https://ror.org/040af2s02" + ] + }, + { + "affiliation": "Division of Allergy Pulmonary and Critical Care Medicine, Department of Medicine, School of Medicine and Public Health, University of Wisconsin, Madison", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Institute for Enzyme Research and Department of Biochemistry, College of Agricultural and Life Sciences, University of Wisconsin, Madison, WI 53705, U.S.A.", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Ph.D. Department of Pakistan Studies, Bahuddian Zakariya University, Multan, Punjab, Pakistan.", + "ror_ids": [ + "https://ror.org/05x817c41" + ] + }, + { + "affiliation": "Department of Sciences John Jay College and PhD in Chemistry Program The Graduate Center of City University of New York 10019 New York NY USA", + "ror_ids": [ + "https://ror.org/00453a208" + ] + }, + { + "affiliation": "University of Missouri", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "Department of Mechanical and Industrial Engineering, Indian Institute of Technology Roorkee, Roorkee, India", + "ror_ids": [ + "https://ror.org/00582g326" + ] + }, + { + "affiliation": "School of Nuclear Engineering, Purdue University", + "ror_ids": [ + "https://ror.org/05p8z3f47" + ] + }, + { + "affiliation": "Department of Biology, 286 Gilmer Hall, University of Virginia,Charlottesville, VA 22903, USA", + "ror_ids": [ + "https://ror.org/0153tk833" + ] + }, + { + "affiliation": "Student at Graduate School of Science & Technology, Kumamoto University, absent from the Faculty of Engineering, Sam Ratulangi University, Indonesia.", + "ror_ids": [ + "https://ror.org/01cn6ph21" + ] + }, + { + "affiliation": "Doctor of Business Administration Trophy Club", + "ror_ids": [] + }, + { + "affiliation": "Alcoa of Australia, Australia", + "ror_ids": [ + "https://ror.org/03pqjm879" + ] + }, + { + "affiliation": "Department of Organic Chemistry, NSR-Institute for Molecular Structure, Design and Synthesis, University of Nijmegen, Toernooiveld, 6525 ED Nijmegen, The Netherlands", + "ror_ids": [] + }, + { + "affiliation": "Massachusetts Institute of Technology", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Saint Vincent's Hospital and Prince Henry's HospitalMelbourne", + "ror_ids": [] + }, + { + "affiliation": "Center for Discovery and Innovation, Nutley, New Jersey", + "ror_ids": [] + }, + { + "affiliation": "Brown University", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "*Microbiology and", + "ror_ids": [] + }, + { + "affiliation": "Materials Research Institute, The Pennsylvania State University, University Park, Pennsylvania 16802", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Office of the Quartermaster General", + "ror_ids": [] + }, + { + "affiliation": "Department of Electrical & Computer Engineering and Waterloo Institute for Nanotechnology, University of Waterloo, 200 University Avenue West, Waterloo, Ontario N2L 3G1, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "KTH Mechanics, Royal Institute of Technology", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Полярный геофизический институт КНЦ РАН", + "ror_ids": [ + "https://ror.org/00bbt0744" + ] + }, + { + "affiliation": "Department of Chemistry, University of Idaho, Moscow, ID 83844-2343", + "ror_ids": [ + "https://ror.org/03hbp5t65" + ] + }, + { + "affiliation": "School Psychology Program, Wichita State University", + "ror_ids": [ + "https://ror.org/00c4e7y75" + ] + }, + { + "affiliation": "Khristianovich Institute of Theoretical and Applied Mechanics SB RAS Novosibirsk, Russian Federation", + "ror_ids": [ + "https://ror.org/02azz6x90" + ] + }, + { + "affiliation": "STMicroelectronics,Crolles,France", + "ror_ids": [ + "https://ror.org/01c74sd89" + ] + }, + { + "affiliation": "Department of Biology; University of Sussex; Falmer Brighton Sussex BN1 9QG England", + "ror_ids": [ + "https://ror.org/00ayhx656" + ] + }, + { + "affiliation": "Department of Chemistry University of Nebraska-Lincoln Lincoln NE 68588 USA", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "Beijing Information Science and Technology University,School of Computer Science,Beijing,China", + "ror_ids": [ + "https://ror.org/04xnqep60" + ] + }, + { + "affiliation": "Department of Neurology and Weill Institute for Neurosciences University of California, San Francisco San Francisco California USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "School of Electronics and Information Engineering, Beihang University, Beijing 100191, China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Department of Applied Mathematics, Science University of Tokyo", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Changsha, People's Republic of China", + "ror_ids": [] + }, + { + "affiliation": "Department of Gynecology, the First Affiliated Hospital, Sun Yat-sen University, Guangzhou 510080, Province Guangdong, P.R. China", + "ror_ids": [ + "https://ror.org/0064kty71", + "https://ror.org/037p24858" + ] + }, + { + "affiliation": "Prince of Songkla University", + "ror_ids": [ + "https://ror.org/0575ycz84" + ] + }, + { + "affiliation": "Department of Epileptology, University Bonn Medical Center, Sigmund-Freud-Str. 25, D 53105 Bonn, Germany", + "ror_ids": [ + "https://ror.org/041nas322" + ] + }, + { + "affiliation": "Michigan State University", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "University College of Swansea, formerly Director of Electrical Research, British Railways Board, London", + "ror_ids": [] + }, + { + "affiliation": "INSERM, Centre de Recherche Cardio-Thoracique de Bordeaux, U1045, CIC 1401, F-33604 Pessac, France", + "ror_ids": [ + "https://ror.org/04vgc9p51", + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "School of Chemistry and Materials Science, Ludong University, Yantai 264025, China", + "ror_ids": [ + "https://ror.org/028h95t32" + ] + }, + { + "affiliation": "Department of Computer Science, Columbia University, New York, New York, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "Department of Periodontology Research Institute for Periodontal Regeneration Yonsei University College of Dentistry Seoul South Korea", + "ror_ids": [ + "https://ror.org/01wjejq96", + "https://ror.org/00tfaab58" + ] + }, + { + "affiliation": "Centro de Estudos Florestais (CEF), Instituto Superior de Agronomia (ISA) Universidade de Lisboa (ULisboa) 1349‐017 Lisboa Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86" + ] + }, + { + "affiliation": "Emeritus Professor of Psychiatry, St Christopher's Hospice, London", + "ror_ids": [ + "https://ror.org/01zkhn749" + ] + }, + { + "affiliation": "Universidade Estadual de Maringá 4 Departamento de Física, , Av. Colombo 5790, 87020-900, Maringá, PR, Brazil", + "ror_ids": [ + "https://ror.org/04bqqa360" + ] + }, + { + "affiliation": "Department of Orthopaedics and Rehabilitation, Oregon Health & Science University, Portland, Oregon", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Nueva Granada Military University, Cajicá, Cundinamarca, Colombia", + "ror_ids": [ + "https://ror.org/05n0gsn30" + ] + }, + { + "affiliation": "Harrogate", + "ror_ids": [] + }, + { + "affiliation": "Uniwersytet Warmińsko-Mazurski w Olsztynie", + "ror_ids": [ + "https://ror.org/05s4feg49" + ] + }, + { + "affiliation": "Department of Civil, Construction, and Environmental Engineering University of Alabama Tuscaloosa Alabama USA", + "ror_ids": [ + "https://ror.org/03xrrjk67" + ] + }, + { + "affiliation": "Ibaraki University", + "ror_ids": [ + "https://ror.org/00sjd5653" + ] + }, + { + "affiliation": "Associate Professor, Centre for Policy Research, Dharma marg, Chanakyapuri New Delhi - 110021, India", + "ror_ids": [ + "https://ror.org/04jzegn30" + ] + }, + { + "affiliation": "Royal Postgraduate Medical School", + "ror_ids": [] + }, + { + "affiliation": "Bioprocess Engineering", + "ror_ids": [] + }, + { + "affiliation": "Department of Health and Social Behavior, School of Public Health, The University of Tokyo", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Department of Microbiology and Immunology, University of Michigan Medical School, Ann Arbor, Michigan, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Personalleiterin St. Vincenz-Krankenhaus Am Stein 24 D-58706 Menden", + "ror_ids": [] + }, + { + "affiliation": "University of Ilorin,Department of Mechanical Engineering,Ilorin,Nigeria", + "ror_ids": [ + "https://ror.org/032kdwk38" + ] + }, + { + "affiliation": "AGEISS Environmental, 1617 Ontario Street SE, Olympia, WA 98501, USA", + "ror_ids": [] + }, + { + "affiliation": "Changchun Institute of Applied Chemistry University of Chinese Academy of Sciences 100039 Beijing PR China", + "ror_ids": [ + "https://ror.org/00h52n341", + "https://ror.org/05qbk4x57", + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "Department of Epidemiology and Cancer Control, St. Jude Children's Research Hospital , Memphis, Tennessee , USA", + "ror_ids": [ + "https://ror.org/02r3e0967" + ] + }, + { + "affiliation": "Butler University, USA,", + "ror_ids": [ + "https://ror.org/05gq3a412" + ] + }, + { + "affiliation": "Osaka Respiratory symposium Research Group - (Japan), Osaka, Japan", + "ror_ids": [] + }, + { + "affiliation": "Federal University of Para", + "ror_ids": [ + "https://ror.org/03q9sr818" + ] + }, + { + "affiliation": "Technical University of Liberec", + "ror_ids": [ + "https://ror.org/02jtk7k02" + ] + }, + { + "affiliation": "Jagiellonian University", + "ror_ids": [ + "https://ror.org/03bqmcz70" + ] + }, + { + "affiliation": "Division of Hematology and Oncology, Ann & Robert H. Lurie Children's Hospital of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/03a6zw892" + ] + }, + { + "affiliation": "Department of Cell Differentiation, the Sakaguchi Laboratory, Keio University School of Medicine, Shinjuku, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/02kn6nx58" + ] + }, + { + "affiliation": "Laboratory of Metabolic Regulation and Genetics, The Rockefeller University, New York, NY 10065, USA.", + "ror_ids": [ + "https://ror.org/0420db125" + ] + }, + { + "affiliation": "Академия будущего «Профессориум»", + "ror_ids": [] + }, + { + "affiliation": "Department of Veterinary Pharmacology and Toxicology College of Veterinary Science Guru Angad Dev Veterinary and Animal Sciences University Ludhiana Punjab India", + "ror_ids": [ + "https://ror.org/00bbeqy02" + ] + }, + { + "affiliation": "Department of Medical Microbiology and Infectious Diseases, Gelre Hospitals, Apeldoorn, The Netherlands", + "ror_ids": [ + "https://ror.org/05275vm15" + ] + }, + { + "affiliation": "Computer Engineering, University of Alcala, Alcalá de Henares, Madrid, Spain", + "ror_ids": [ + "https://ror.org/04pmn0e78" + ] + }, + { + "affiliation": "Dipartimento di Chimica e Biologia “A. Zambelli”, Università di Salerno, Via Giovanni Paolo II 132, I-84084 Fisciano, Salerno, Italy", + "ror_ids": [ + "https://ror.org/0192m2k53" + ] + }, + { + "affiliation": "Centrum Wiskunde & Informatica", + "ror_ids": [ + "https://ror.org/00x7ekv49" + ] + }, + { + "affiliation": "North Wales Centre for Primary Care, Bangor University Research, Wrexham, UK", + "ror_ids": [ + "https://ror.org/006jb1a24" + ] + }, + { + "affiliation": "Université de Montréal", + "ror_ids": [ + "https://ror.org/0161xgx34" + ] + }, + { + "affiliation": "Université de Toronto", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "New School for Social Research, New York City", + "ror_ids": [ + "https://ror.org/02tvcev59" + ] + }, + { + "affiliation": "Department of Mathematics and Statistics, Faculty of Science, Imam Mohammad Ibn Saud Islamic University (IMSIU), P.O. Box 90950, Riyadh 11623, Saudi Arabia", + "ror_ids": [ + "https://ror.org/05gxjyb39" + ] + }, + { + "affiliation": "Sapienza University of Rome,Department of Mechanical and Aerospace Engineering (DIMA),Rome,Italy", + "ror_ids": [ + "https://ror.org/02be6w209" + ] + }, + { + "affiliation": "Department of Pharmaceutical Technology, Jadavpur University, Kolkata 700 032, India", + "ror_ids": [ + "https://ror.org/02af4h012" + ] + }, + { + "affiliation": "a Philips Semiconductors, Nijmegen, The Netherlands", + "ror_ids": [] + }, + { + "affiliation": "School of Journalism and Communication, Shanghai University, Shanghai, China;", + "ror_ids": [ + "https://ror.org/006teas31" + ] + }, + { + "affiliation": "Clausthal University of Technology", + "ror_ids": [ + "https://ror.org/04qb8nc58" + ] + }, + { + "affiliation": "USAF, Phillips Lab., Kirtland AFB, NM", + "ror_ids": [] + }, + { + "affiliation": "Inland Norway University of Applied Sciences Lillehammer Norway", + "ror_ids": [ + "https://ror.org/02dx4dc92" + ] + }, + { + "affiliation": "Tan Tock Seng Hospital, Singapore", + "ror_ids": [ + "https://ror.org/032d59j24" + ] + }, + { + "affiliation": "Department of Haematology, Royal Perth Hospital Western Australia", + "ror_ids": [ + "https://ror.org/00zc2xc51" + ] + }, + { + "affiliation": "Solar Energy Research Institute, Solar Electric Conversion Research Division, 1617 Cole Boulevard, Golden, Colorado 80401", + "ror_ids": [] + }, + { + "affiliation": "Embrapa Agroindústria Tropical", + "ror_ids": [] + }, + { + "affiliation": "Centre for Medical Image Computing, University College London , London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Ministry of Health, Singapore", + "ror_ids": [ + "https://ror.org/00mrhvv69" + ] + }, + { + "affiliation": "Department of Theoretical Chemistry, Maria-Curie Skłodowska University, Pl. M. C. Skłodowskiej\n3, 20-031 Lublin, Poland", + "ror_ids": [ + "https://ror.org/015h0qg34" + ] + }, + { + "affiliation": "Duke UniversityUSA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Department of Chemistry and Chemical Engineering, Jining University, Qufu, Shandong 273155, P.R. China", + "ror_ids": [ + "https://ror.org/037rvh518" + ] + }, + { + "affiliation": "Maritime University in Szczecin , Faculty of Navigation, Department of Ocean Engineering and Shipbuilding , Poland", + "ror_ids": [ + "https://ror.org/02sj9tq04" + ] + }, + { + "affiliation": "School of Chemistry, Cardiff University, Park Place, Cardiff CF10 3AT, Wales, UK, and Division of Organic Chemistry, National Chemical Laboratory, Pune 411 008, India", + "ror_ids": [ + "https://ror.org/057mn3690", + "https://ror.org/03kk7td41" + ] + }, + { + "affiliation": "School of Mathematics and Statistics, Henan University of Science and Technology, Luoyang 471023, China", + "ror_ids": [ + "https://ror.org/05d80kz58" + ] + }, + { + "affiliation": "Hughes Aircraft Company Mail Station R7/P549 P.O. Box 92426 Los Angeles CA 90009", + "ror_ids": [] + }, + { + "affiliation": "Lebanese University", + "ror_ids": [ + "https://ror.org/05x6qnc69" + ] + }, + { + "affiliation": "College of Science, State Key Laboratory of Agricultural Microbiology, Huazhong Agricultural University, Wuhan 430070, China", + "ror_ids": [ + "https://ror.org/023b72294" + ] + }, + { + "affiliation": "University of Alberta", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Instituto de Virología-IVIT (INTA-CONICET), Buenos Aires, Argentina.", + "ror_ids": [] + }, + { + "affiliation": "College of Veterinary Medicine University of Florida Gainesville FL USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Chemistry, Post Graduate Govt. College for Girls, Sec-11, Chandigarh, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Microbiology, College of Medicine, Pennsylvania State University, Hershey 17033.", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "CVML Laboratory, Computer Science Department, University of Geneva, Route de Drize 7, Carouge (Geneva) CH–1227, Switzerland", + "ror_ids": [ + "https://ror.org/01swzsf04" + ] + }, + { + "affiliation": "407 Brentwood Drive, Carrcroft, Wilmington, Delaware 19803", + "ror_ids": [] + }, + { + "affiliation": "St Paul's College, Grahamstown", + "ror_ids": [] + }, + { + "affiliation": "1Ningbo University, Chemistry Department, Institute for Solid State Chemistry, Ningbo, Zhejiang, 315211 P. R. China", + "ror_ids": [ + "https://ror.org/03et85d35" + ] + }, + { + "affiliation": "Chemical Research Department, American Viscose Corporation, Marcus Hook, Pennsylvania", + "ror_ids": [] + }, + { + "affiliation": "National Institute of Technology Jamshedpur", + "ror_ids": [ + "https://ror.org/01sebzx27" + ] + }, + { + "affiliation": "The University of Alabama", + "ror_ids": [ + "https://ror.org/03xrrjk67" + ] + }, + { + "affiliation": "Mahidol University", + "ror_ids": [ + "https://ror.org/01znkr924" + ] + }, + { + "affiliation": "Институт цитологии РАН", + "ror_ids": [ + "https://ror.org/00wfve797" + ] + }, + { + "affiliation": "National Physical Laboratory", + "ror_ids": [ + "https://ror.org/015w2mp89" + ] + }, + { + "affiliation": "Universidade Federal de Sergipe, Brasil", + "ror_ids": [ + "https://ror.org/028ka0n85" + ] + }, + { + "affiliation": "University of Victoria, British Columbia", + "ror_ids": [ + "https://ror.org/04s5mat29" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry, Rose-Hulman Institute of Technology, Terre Haute, Indiana, Department of Medicinal Chemistry and Molecular Pharmacology, Purdue University, West Lafayette, Indiana, and Medical Sciences and the Department of Cellular and Integrative Physiology, Indiana University School of Medicine, Bloomington, Indiana", + "ror_ids": [ + "https://ror.org/00mp6e841", + "https://ror.org/02dqehb95", + "https://ror.org/02ets8c94", + "https://ror.org/01kg8sb98" + ] + }, + { + "affiliation": "Philosophy, University of Waterloo", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "bHospital Medicine", + "ror_ids": [] + }, + { + "affiliation": "Department of Electrical Power and Machines Engineering, Faculty of Engineering, South Valley University", + "ror_ids": [ + "https://ror.org/00jxshx33" + ] + }, + { + "affiliation": "Universidade Federal Fluminense, Brazil", + "ror_ids": [ + "https://ror.org/02rjhbb08" + ] + }, + { + "affiliation": "Department of Community Dentistry, Faculty of Health Sciences, University of Pretoria, South Africa", + "ror_ids": [ + "https://ror.org/00g0p6g84" + ] + }, + { + "affiliation": "Tianjin University", + "ror_ids": [ + "https://ror.org/012tb2g32" + ] + }, + { + "affiliation": "CMU", + "ror_ids": [] + }, + { + "affiliation": "National Institute of Animal Science", + "ror_ids": [ + "https://ror.org/02ty3a980" + ] + }, + { + "affiliation": "University of Health Sciences and Pharmacy, Saint Louis, Missouri, United States", + "ror_ids": [ + "https://ror.org/01btzz102" + ] + }, + { + "affiliation": "Institut für Verwaltungsrecht und Verwaltungslehre, Universität Linz", + "ror_ids": [] + }, + { + "affiliation": "Ondokuz Mayıs University,Dept. of Electrical-Electronic Engineering,Samsun,Turkey", + "ror_ids": [ + "https://ror.org/028k5qw24" + ] + }, + { + "affiliation": "National Mobile Communications Research Laboratory, Southeast University, China", + "ror_ids": [ + "https://ror.org/04ct4d772" + ] + }, + { + "affiliation": "LabRI-SBA Laboratory, Ecole Superieure en Informatique, Sidi Bel Abbes, Algeria", + "ror_ids": [ + "https://ror.org/04dj1dn66" + ] + }, + { + "affiliation": "Федеральное государственное бюджетное образовательное учреждение высшего образования Санкт-Петербургский политехнический университет Петра Великого", + "ror_ids": [ + "https://ror.org/02x91aj62" + ] + }, + { + "affiliation": "Universidad Nacional de General Sarmiento, Argentina", + "ror_ids": [ + "https://ror.org/01k6h2m87" + ] + }, + { + "affiliation": "Laboratoire de Spectrometrie Physique associé au CNRS, Université Joseph Fourier, Grenoble I, B. P. 87, 38402 St. Martin d’ Hères Cedex, France", + "ror_ids": [ + "https://ror.org/02feahw73", + "https://ror.org/02rx3b187" + ] + }, + { + "affiliation": "Universidade Federal de Pernambuco, Brazil", + "ror_ids": [ + "https://ror.org/047908t24" + ] + }, + { + "affiliation": "Neuropsychopharmacology Unit, 12 de Octubre Hospital, Research Institute (i+12), Madrid, Spain", + "ror_ids": [ + "https://ror.org/002x1sg85" + ] + }, + { + "affiliation": "Departments of Organic Chemistry and of Pharmacology, University of Leeds", + "ror_ids": [ + "https://ror.org/024mrxd33" + ] + }, + { + "affiliation": "College of Computer Science, Chongqing University,Chongqing,China", + "ror_ids": [ + "https://ror.org/023rhb549" + ] + }, + { + "affiliation": "Physical Medicine and Rehabilitation Research Center; Clinical research development center of Shahid Modarres hospital; Shahid Beheshti University of Medical Sciences; Tehran Iran", + "ror_ids": [ + "https://ror.org/034m2b326" + ] + }, + { + "affiliation": "Laboratoire de Phonologie, Universit Libre de Bruxelles, 50 av. F. D. Roosevelt, 1050 Brussels, Belgium", + "ror_ids": [ + "https://ror.org/01r9htc13" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry and Institute for Nonlinear Science, University of California, San Diego, La Jolla, California 92093-0341", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Kozminski University, Poland", + "ror_ids": [ + "https://ror.org/033wpf256" + ] + }, + { + "affiliation": "University of Ljubljana, Faculty of Mathematics and Physics, Jadranska 19, 1000 Ljubljana, Slovenia", + "ror_ids": [ + "https://ror.org/05njb9z20" + ] + }, + { + "affiliation": "École de psychoéducation, Université de Montréal", + "ror_ids": [ + "https://ror.org/0161xgx34" + ] + }, + { + "affiliation": "Keele University", + "ror_ids": [ + "https://ror.org/00340yn33" + ] + }, + { + "affiliation": "Universiti Putra Malaysia, Malaysia", + "ror_ids": [ + "https://ror.org/02e91jd64" + ] + }, + { + "affiliation": "Department of Cancer and Inflammation Research Institute of Molecular Medicine University of Southern Denmark Odense Denmark", + "ror_ids": [ + "https://ror.org/03yrrjy16" + ] + }, + { + "affiliation": "University of Miami", + "ror_ids": [ + "https://ror.org/02dgjyy92" + ] + }, + { + "affiliation": "Department of Public Health, Clinical Pharmacology, Pharmacy and Environmental Medicine, SDU, Denmark", + "ror_ids": [] + }, + { + "affiliation": "School of Journalism&Communication, Lanzhou University, Lanzhou, 730107, China", + "ror_ids": [ + "https://ror.org/01mkqqe32" + ] + }, + { + "affiliation": "aDeNu Research Group, Artificial Intelligence Department, UNED, Calle Juan del Rosal 16, 28040 Madrid, Spain", + "ror_ids": [] + }, + { + "affiliation": "University of Saskatchewan", + "ror_ids": [ + "https://ror.org/010x8gc63" + ] + }, + { + "affiliation": "Central Michigan University Saginaw Michigan USA", + "ror_ids": [ + "https://ror.org/02xawj266" + ] + }, + { + "affiliation": "Present Address: Woldsenweg 7, 20249, Hamburg, Germany", + "ror_ids": [] + }, + { + "affiliation": "School of Nursing and Rehabilitation, Shandong University, Jinan, Shandong Province, China", + "ror_ids": [ + "https://ror.org/0207yh398" + ] + }, + { + "affiliation": "MINES ParisTech", + "ror_ids": [ + "https://ror.org/04y8cs423" + ] + }, + { + "affiliation": "Department of Ororhinolaryngology, State University of New York, Upstate Medical Center, Syracuse, New York 13210", + "ror_ids": [ + "https://ror.org/040kfrw16", + "https://ror.org/01q1z8k08" + ] + }, + { + "affiliation": "International Centre for Genetic Engineering and Biotechnology, Aruna Asaf Ali Marg, New Delhi 110067, India", + "ror_ids": [ + "https://ror.org/03j4rrt43" + ] + }, + { + "affiliation": "From the Department of Internal Medicine (S.-G.W., Y.Y., Z.-H.Z., R.M.W., R.B.F.) and Neuroscience Program (S.-G.W., R.B.F.), University of Iowa Carver College of Medicine, Iowa City; and the Veterans Affairs Medical Center (R.M.W., R.B.F.), Iowa City, Iowa.", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "Northwestern University, Robert H. Lurie Comprehensive Cancer Center, Chicago, IL", + "ror_ids": [ + "https://ror.org/02p4far57", + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Department of Pediatrics Perelman School of Medicine of the University of Pennsylvania Philadelphia Pennsylvania USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "b U.S. Geological Survey, Woods Hole, Massachusetts", + "ror_ids": [ + "https://ror.org/035a68863" + ] + }, + { + "affiliation": "Department of Chemistry and Department of Anatomy, Physiology, and Pharmacology, Auburn University, Auburn, Alabama 36849", + "ror_ids": [ + "https://ror.org/02v80fc35" + ] + }, + { + "affiliation": "Zhejiang Sci-Tech University", + "ror_ids": [ + "https://ror.org/03893we55" + ] + }, + { + "affiliation": "1P.Universidad Catolica de Chile, Santiago, Chile", + "ror_ids": [ + "https://ror.org/04teye511" + ] + }, + { + "affiliation": "University of Texas at Austin, Hildebrand Department of Petroleum and Geosystems Engineering, Austin, Texas, USA..", + "ror_ids": [ + "https://ror.org/00hj54h04" + ] + }, + { + "affiliation": "c Desert Research Institute , Reno , NV", + "ror_ids": [ + "https://ror.org/02vg22c33" + ] + }, + { + "affiliation": "Department of Dermatology, The Second Xiangya Hospital of Central South University, Changsha 410011, Hunan Province, China", + "ror_ids": [ + "https://ror.org/053v2gh09", + "https://ror.org/00f1zfq44" + ] + }, + { + "affiliation": "Assistant Professor of Family Medicine, Queen's University, Kingston, Ontario; Psychiatrist, Rideau Regional Centre, Smiths Falls, Ontario", + "ror_ids": [ + "https://ror.org/02y72wh86" + ] + }, + { + "affiliation": "DeVry University, USA", + "ror_ids": [ + "https://ror.org/02z38kp20" + ] + }, + { + "affiliation": "Saudi Electronic University", + "ror_ids": [ + "https://ror.org/05ndh7v49" + ] + }, + { + "affiliation": "Gastroenterology Unit Woden Valley Hospital", + "ror_ids": [] + }, + { + "affiliation": "The Third Department of Internal Medicine Okayama University Medical School", + "ror_ids": [ + "https://ror.org/02pc6pc55" + ] + }, + { + "affiliation": "MD Anderson Cancer Center, Houston, TX.", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Fachbereich\nPhysik, Universität Osnabrück, Barbarastrasse 7, D-49069 Osnabrück, Germany", + "ror_ids": [ + "https://ror.org/04qmmjx98" + ] + }, + { + "affiliation": "Michigan State Univ, East Lansing, MI", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "Marshall UniversityHuntingtonWV", + "ror_ids": [ + "https://ror.org/02erqft81" + ] + }, + { + "affiliation": "Springborn Laboratories, Inc., Enfield, CT 06082", + "ror_ids": [] + }, + { + "affiliation": "Centre for Translation Studies, University of Vienna, Vienna, Austria", + "ror_ids": [ + "https://ror.org/03prydq77" + ] + }, + { + "affiliation": "University of Koblenz-Landau, Germany", + "ror_ids": [ + "https://ror.org/01j9f6752" + ] + }, + { + "affiliation": "Frimley Health NHS Foundation Trust, Camberley, Surrey GU16 7UJ, UK", + "ror_ids": [ + "https://ror.org/00mrq3p58" + ] + }, + { + "affiliation": "İNÖNÜ ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/04asck240" + ] + }, + { + "affiliation": "Department of Medical Education, School of Medicine, California University of Science and Medicine, Colton, California.", + "ror_ids": [ + "https://ror.org/008a6s711" + ] + }, + { + "affiliation": "Assoc. Prof. of Civ. Engrg., Univ. of Alberta, Edmonton, Alberta, Canada, T6G 2E1", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Google", + "ror_ids": [ + "https://ror.org/00njsd438" + ] + }, + { + "affiliation": "College of Physics, Jilin University, Changchun, China", + "ror_ids": [ + "https://ror.org/00js3aw79" + ] + }, + { + "affiliation": "George Washington University Medical Center, Washington, DC20037.", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "College of Science, Shandong University of Science and Technology Qingdao Key Laboratory of Terahertz Technology, , Qingdao 266510, China", + "ror_ids": [ + "https://ror.org/04gtjhw98" + ] + }, + { + "affiliation": "Institute of Computer Technologies, Automation and Metrology, Lviv Polytechnic National University, Lviv, Ukraine", + "ror_ids": [ + "https://ror.org/0542q3127" + ] + }, + { + "affiliation": "University of North Carolina at Chapel Hill", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Indiana University School of Medicine, South Bend Center, South Bend, Indiana.", + "ror_ids": [ + "https://ror.org/02ets8c94" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry University of Wisconsin–La Crosse La Crosse WI USA", + "ror_ids": [ + "https://ror.org/00x8ccz20" + ] + }, + { + "affiliation": "Lecturer in Civ. Engrg., Univ. of the Witwatersrand, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/03rp50x72" + ] + }, + { + "affiliation": "PUC-RS, Brasil", + "ror_ids": [] + }, + { + "affiliation": "Department of Chemistry and Biochemistry, Department of Biological Chemistry, University of California, UCLA/DOE Institute for Genomics and Proteomics, Los Angeles, 90095, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Research Center for Advanced Energy Conversion, Nagoya University", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Central Middlesex Hospital", + "ror_ids": [ + "https://ror.org/03mq8zc85" + ] + }, + { + "affiliation": "Departamento de Física, Facultad de Ciencias, Universidad Nacional de Colombia – Bogotá 1 , Carrera 30 Calle 45-03, C.P. 111321, Bogotá, Colombia", + "ror_ids": [ + "https://ror.org/059yx9a68" + ] + }, + { + "affiliation": "Razi Drug Research Center, Iran University of Medical Sciences, Tehran 14496-14535, Iran", + "ror_ids": [ + "https://ror.org/03w04rv71" + ] + }, + { + "affiliation": "Department of Information Engineering and Mathematics, University of Siena, 53100 Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "University of Bonn, Bonn, Germany", + "ror_ids": [ + "https://ror.org/041nas322" + ] + }, + { + "affiliation": "Laboratoire de Physiologie Neurosensorielle, Universite ClaudeBernard, Lyon, France.", + "ror_ids": [ + "https://ror.org/029brtt94" + ] + }, + { + "affiliation": "Department of Materials Engineering Indian Institute of Science (IISc) C V Raman Avenue Bangalore Karnataka 560012 India", + "ror_ids": [ + "https://ror.org/04dese585" + ] + }, + { + "affiliation": "Lund University Division of Mathematical Physics, Department of Physics, , P.O. Box 118, 22100 Lund, Sweden", + "ror_ids": [ + "https://ror.org/012a77v79" + ] + }, + { + "affiliation": "Universidad Politécnica de Madrid, 28031 Madrid, Spain", + "ror_ids": [ + "https://ror.org/03n6nwv02" + ] + }, + { + "affiliation": "Corporate Research, Robert Bosch GmbH, Hildesheim, Germany", + "ror_ids": [] + }, + { + "affiliation": "National Engineering Research Center for Process Development of Active Pharmaceutical Ingredients, Collaborative Innovation Center of Yangtze River Delta Region Green Pharmaceuticals, Zhejiang University of Technology, Hangzhou 310014, P.R. China", + "ror_ids": [ + "https://ror.org/02djqfd08" + ] + }, + { + "affiliation": "Space Telescope Science Institute (ret.)", + "ror_ids": [ + "https://ror.org/036f5mx38" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Roskilde County Hospital in Koege, University of Copenhagen, Department of Orthopaedic Surgery, County Hospital in Herlev, Steno Diabetic Center, University of Copenhagen, Gentofte and Copenhagen Wound Healing Center, Department of Dermatology and Copenhagen Wound Healing Center, Bispebjerg Hospital, University of Copenhagen", + "ror_ids": [ + "https://ror.org/035b05819", + "https://ror.org/00td68a17" + ] + }, + { + "affiliation": "Molecular Biology Section, Lederle Laboratories, American Cyanamid Company, Pearl River, NY 10965.", + "ror_ids": [] + }, + { + "affiliation": "From the Department of Biophysics, University of Colorado Medical Center, Denver", + "ror_ids": [ + "https://ror.org/02hh7en24" + ] + }, + { + "affiliation": "Cutaneous Biology Research Center, Massachusetts General Hospital, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Smart Vehicle Technology Research Center, Korea Automotive Technology Institute, 74 Yongjeong-Ri, Poongse-Myun, Dongnam-go, Cheonan-si, Chungnam 330-912, Republic of Korea", + "ror_ids": [ + "https://ror.org/00sc3t321" + ] + }, + { + "affiliation": "Beijing\nNational Laboratory for Molecular Sciences (BNLMS), CAS Key Laboratory\nof Organic Solids, Institute of Chemistry, Chinese Academy of Sciences, Beijing 100190, People’s Republic of China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/02601yx74" + ] + }, + { + "affiliation": "Institute for Education Strategy and Development of Russian Academy of Education", + "ror_ids": [ + "https://ror.org/026s4j722" + ] + }, + { + "affiliation": "Institute of Geology, Ufa Federal Research Centre of the Russian Academy of Sciences", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Oregon Health & Science University Portland Oregon", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Departments of Chemistry and Materials Science and Engineering, Northwestern University, Evanston, Illinois 60208, and Department of Medicine and Institute for BioNanotechnology in Medicine, Northwestern University, Chicago, Illinois 60611", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Universidad Autònoma del Estado de México,Faculty of Engineering,Toluca,Mexico", + "ror_ids": [ + "https://ror.org/0079gpv38" + ] + }, + { + "affiliation": "Office of Electric Power Regulations, Federal Energy Regulatory Commission, Washington DC, USA", + "ror_ids": [ + "https://ror.org/05v7gv656" + ] + }, + { + "affiliation": "Universiti Teknologi Petronas", + "ror_ids": [ + "https://ror.org/048g2sh07" + ] + }, + { + "affiliation": "NASA, Marshall Space Flight Center, Huntsville, AL", + "ror_ids": [ + "https://ror.org/02epydz83" + ] + }, + { + "affiliation": "Institute of Computer Science, Academy of Sciences of the Czech Republic, Praha, Czech Republic", + "ror_ids": [ + "https://ror.org/053avzc18", + "https://ror.org/0496n6574" + ] + }, + { + "affiliation": "Department of Mathematics, University of Würzburg, Emil-Fischer-Str. 40, 97074 Würzburg, Germany", + "ror_ids": [ + "https://ror.org/00fbnyb24" + ] + }, + { + "affiliation": "Dublin", + "ror_ids": [] + }, + { + "affiliation": "Department of Speech, Language and Hearing Sciences, Boston University, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/05qwgg493" + ] + }, + { + "affiliation": "b Department of Psychology , University of Haifa , Israel", + "ror_ids": [ + "https://ror.org/02f009v59" + ] + }, + { + "affiliation": "Kagoshima Univ.", + "ror_ids": [ + "https://ror.org/03ss88z23" + ] + }, + { + "affiliation": "Medizinische Universitätsklinik I, Eberhard-Karls-Universität Tübingen, Otfried-Müller Str. 10, 72076 Tübingen, Germany", + "ror_ids": [ + "https://ror.org/03a1kwz48" + ] + }, + { + "affiliation": "University of Warwick, UK", + "ror_ids": [ + "https://ror.org/01a77tt86" + ] + }, + { + "affiliation": "From the Clinical Pharmacology Unit, University of Cambridge, Centre for Clinical Investigation, Addenbrooke’s Hospital, Cambridge, UK (A.L.B., J.J.M., P.Y., J.C., I.B.W., A.P.D.); Bloomsbury Institute of Intensive Care Medicine, University College London, London, UK (A.D., M.S.); and Unilever Centre for Molecular Sciences Informatics, Department of Chemistry, University of. Cambridge, Cambridge, UK (R.T., R.C.G.).", + "ror_ids": [ + "https://ror.org/013meh722", + "https://ror.org/02jx3x895", + "https://ror.org/055vbxf86" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Boğaziçi University, Istanbul 34342, Turkey", + "ror_ids": [ + "https://ror.org/03z9tma90" + ] + }, + { + "affiliation": "Centre National de la Recherche Scientifique (CNRS) Centre de Recherche sur l’Hétéro-Epitaxie et ses Applications (CRHEA), , Rue Bernard Gregory, F-06560 Valbonne, France", + "ror_ids": [ + "https://ror.org/03y8mpv07", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Alibaba Group, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00k642b80" + ] + }, + { + "affiliation": "School of Civil Engineering and Geomatics; Del Valle University; Santiago de Cali Colombia", + "ror_ids": [ + "https://ror.org/00jb9vg53" + ] + }, + { + "affiliation": "Department of Chemistry, University of Connecticut, 55 North Eagleville Road, Storrs, CT 06269-3060, USA.", + "ror_ids": [ + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "State Key Laboratory of Chemo/Biosensing and Chemometrics College of Chemistry and Chemical Engineering Hunan University Changsha 410082 PR China", + "ror_ids": [ + "https://ror.org/05vg20182", + "https://ror.org/05htk5m33" + ] + }, + { + "affiliation": "Department of Cardiac SurgeryGorodskaja bol'nitsa No 40 Saint‐Petersburg Russian Federation", + "ror_ids": [] + }, + { + "affiliation": "Mechanical and Manufacturing Engineering, Loughborough University, Loughborough, Leicestershire, LE11 3TU, United Kingdom", + "ror_ids": [ + "https://ror.org/04vg4w365" + ] + }, + { + "affiliation": "Department of Textile Engineering, Faculty of Engineering, University of Guilan, Rasht, Guilan, Iran", + "ror_ids": [ + "https://ror.org/01bdr6121" + ] + }, + { + "affiliation": "Kocaeli University, Kocaeli Vocational School, Department of Chemistry and Chemical Processing Technologies, Kocaeli, Turkey", + "ror_ids": [ + "https://ror.org/0411seq30" + ] + }, + { + "affiliation": "Department of Hematology and Oncology Graduate School of Medicine Osaka University Suita Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "Department of Geography Education, University of Education, Winneba, Ghana", + "ror_ids": [ + "https://ror.org/00y1ekh28" + ] + }, + { + "affiliation": "From the Department of Endocrinology and Thyroid Research, Institute of Nuclear Medicine and Allied Sciences, Delhi, India (RKM, RA, BS, and SS); the Departments of Endocrinology and Metabolism (NT, DHKR, and MAG) and Biostatistics (RS), All India Institute Medical Sciences, New Delhi, India; and the Department of Endocrinology, Defence Institute of Physiological Sciences, Delhi, India (RCS)", + "ror_ids": [ + "https://ror.org/029g42942", + "https://ror.org/02dwcqs71" + ] + }, + { + "affiliation": "Laboratoire de Linguistique Formelle , Université de Paris, CNRS , Paris , France", + "ror_ids": [ + "https://ror.org/05f82e368", + "https://ror.org/0223bz716", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Department of Cell and Developmental Biology, University of Michigan Medical School Ann Arbor MI USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "From the Department of Orthopaedic Surgery (Division of Hand Surgery), Nagoya University School of Medicine, Japan", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Institute of Biodiversity, One Health and Veterinary Medicine, University of Glasgow , Glasgow , United Kingdom", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "Vidya Jyothi Institute of Technology", + "ror_ids": [] + }, + { + "affiliation": "Department of Cardiovascular Surgery, Hospital Christus Muguerza Alta Especialidad, Nuevo Leon, México", + "ror_ids": [ + "https://ror.org/016b66y19" + ] + }, + { + "affiliation": "Medizinische Universitätsklinik, Onkologie, Kantonsspital Baselland, Liestal", + "ror_ids": [ + "https://ror.org/00b747122" + ] + }, + { + "affiliation": "School of Systems EngineeringThe University of ReadingReadingRG6 6AYUK", + "ror_ids": [ + "https://ror.org/05v62cm79" + ] + }, + { + "affiliation": "a Laboratoire de Recherches en Optique et Laser, Département de Physique, Faculté des Sciences et de Génie, Université Laval, Québec, Canada G1K 7P4", + "ror_ids": [ + "https://ror.org/04sjchr03" + ] + }, + { + "affiliation": "2 U.S. Geological Survey, Menlo Park, California 94025", + "ror_ids": [ + "https://ror.org/035a68863" + ] + }, + { + "affiliation": "MAKAUT, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Horticulture, Kangwon National University, Chuncheon 200-701, Korea", + "ror_ids": [ + "https://ror.org/01mh5ph17" + ] + }, + { + "affiliation": "Department of Urology, Aarhus University Hospital, Aarhus, Denmark", + "ror_ids": [ + "https://ror.org/040r8fr65" + ] + }, + { + "affiliation": "Transcultural Psychosocial Organization Nepal, Kathmandu, Nepal", + "ror_ids": [] + }, + { + "affiliation": "Warsaw University of Technology, Faculty of Transport", + "ror_ids": [ + "https://ror.org/00y0xnp53" + ] + }, + { + "affiliation": "Department of Macromolecules, “Gh. Asachi” Technical University, 6600 Jassy, Romania", + "ror_ids": [ + "https://ror.org/014zxnz40" + ] + }, + { + "affiliation": "Central Queensland University, Australia", + "ror_ids": [ + "https://ror.org/023q4bk22" + ] + }, + { + "affiliation": "School of Economic and Business Sciences and AMERU, University of the Witwatersrand, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/03rp50x72" + ] + }, + { + "affiliation": "Centre de recherche Cardio-Thoracique de Bordeaux, Université Bordeaux, Bordeaux, France", + "ror_ids": [ + "https://ror.org/04vgc9p51", + "https://ror.org/057qpr032" + ] + }, + { + "affiliation": "Leiden Institute of Chemistry, Leiden University 1 , P.O. Box 9502, Leiden 2300 RA, The Netherlands", + "ror_ids": [ + "https://ror.org/027bh9e22" + ] + }, + { + "affiliation": "Moscow State University of Technology and Management named after K. G. Razumovsky (First Cossack University)", + "ror_ids": [ + "https://ror.org/05c4crv67" + ] + }, + { + "affiliation": "Paisley College of Technology", + "ror_ids": [] + }, + { + "affiliation": "Biospheric Theory and Modelling, Max Planck Institute for Biogeochemistry, D-07701 Jena, Germany", + "ror_ids": [ + "https://ror.org/051yxp643" + ] + }, + { + "affiliation": "U. S. Geol. Surv.", + "ror_ids": [ + "https://ror.org/035a68863" + ] + }, + { + "affiliation": "Department of Dermatology Amsterdam UMC University of Amsterdam Meibergdreef 9 NL‐1105 AZ Amsterdam The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463" + ] + }, + { + "affiliation": "a Department of Physical Education and Dance , University of Wisconsin at Madison , Madison , WI , 53706 , USA", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "City of London Coroner, Solicitor Advocate and Visiting Professor at King's College, London", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "Marshall School of Business, University of Southern California, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "London School of Economics and Political Science", + "ror_ids": [ + "https://ror.org/0090zs177" + ] + }, + { + "affiliation": "The Wellcome Trust/Cancer Research UK (CRUK) Gurdon Institute and Department of Biochemistry, University of Cambridge, CB2 1QN Cambridge, UK.", + "ror_ids": [ + "https://ror.org/013meh722", + "https://ror.org/00fp3ce15", + "https://ror.org/029chgv08" + ] + }, + { + "affiliation": "From the Department of Cardiology and Angiology, Hannover Medical School, Hannover, Germany (T.K., M.E., M.N., C.W., J.T., J.H., D.K., H.D., K.C.W.); Department of Neuroanatomy, University of Heidelberg, Germany (J.S.); Division of Molecular Cardiovascular Biology, University of Cincinnati, Ohio (J.X., J.D.M.); and Department of Pathology, University Medical Center, Amsterdam, The Netherlands (H.W.N.).", + "ror_ids": [ + "https://ror.org/01e3m7079", + "https://ror.org/00f2yqf98", + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Louisiana State University and Agricultural and Mechanical College", + "ror_ids": [ + "https://ror.org/05ect4e57" + ] + }, + { + "affiliation": "Clincal Research Center, National Hospital Organization Kinki-Chuo Chest Medical Center, Osaka, Japan.", + "ror_ids": [ + "https://ror.org/05jp74k96" + ] + }, + { + "affiliation": "Department of Computer Science and Software Engineering, College of Information Technology, United Arab Emirates University, Al-Ain, UAE", + "ror_ids": [ + "https://ror.org/01km6p862" + ] + }, + { + "affiliation": "Fuller Theological Seminary", + "ror_ids": [ + "https://ror.org/01k6b9k02" + ] + }, + { + "affiliation": "Forest Operations Research Lab, Department of Forest, Rangeland and Fire Sciences, College of Natural Resources, University of Idaho, 975 W. 6th St. Moscow, Idaho 83844, USA", + "ror_ids": [ + "https://ror.org/03hbp5t65" + ] + }, + { + "affiliation": "St. Luke's Medical Center , Manila , Philippines", + "ror_ids": [ + "https://ror.org/02h4kdd20" + ] + }, + { + "affiliation": "Contribution from the National Institute of Chemistry, Hajdrihova 19, SI-1115 Ljubljana, Slovenia, and Laboratory of Medicinal Research, Rega Institute, Katholieke Universiteit Leuven, Minderbroedersstraat 10, B-3000 Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310", + "https://ror.org/03w5j8p12" + ] + }, + { + "affiliation": "日本サステイナビリティ研究所", + "ror_ids": [] + }, + { + "affiliation": "Allegheny Health Network", + "ror_ids": [ + "https://ror.org/0101kry21" + ] + }, + { + "affiliation": "Department of Physics, The University of Calgary, Calgary, Alberta, Canada", + "ror_ids": [ + "https://ror.org/03yjb2x39" + ] + }, + { + "affiliation": "Southern Connecticut State University, New Haven, CT, USA", + "ror_ids": [ + "https://ror.org/00ramkd50" + ] + }, + { + "affiliation": "a Central Geologic Surveying Research Institute and the Institute of Geology, Karelian Branch , USSR Academy of Sciences , Shungites", + "ror_ids": [] + }, + { + "affiliation": "School of Chemistry, Osaka University of Education, 4-698-1 Asahigaoka, Kashiwara, Osaka 582-8582, Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "University of Sannio,Department of Science and Technology, Via Francesco de Sanctis,Benevento,Italy,82100", + "ror_ids": [ + "https://ror.org/04vc81p87" + ] + }, + { + "affiliation": "Division of Applied Life Sciences, Graduate School of Life and Environmental Sciences, Osaka Prefecture University, Sakai, Japan", + "ror_ids": [] + }, + { + "affiliation": "School of Leadership and Human Resource Development, College of Human Sciences and Education, Louisiana State University, Baton Rouge, LA, USA", + "ror_ids": [ + "https://ror.org/05ect4e57" + ] + }, + { + "affiliation": "Tsinghua-Peking Center for Life Sciences, IDG/McGovern Institute for Brain Research, MOE Key Laboratory of Protein Sciences, School of Life Sciences, Tsinghua University, Beijing 100084, P.R. China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "School of Chemistry and Chemical Engineering Xi'an University of Science and Technology Xi'an 710054 China", + "ror_ids": [ + "https://ror.org/046fkpt18" + ] + }, + { + "affiliation": "Department of Biomedical Engineering, Technion-Israel Institute of Technology, Haifa 32000, Israel", + "ror_ids": [ + "https://ror.org/03qryx823" + ] + }, + { + "affiliation": "Research Institute of Clinical Medicine of Jeonbuk National University, Jeonju, Korea", + "ror_ids": [ + "https://ror.org/05q92br09" + ] + }, + { + "affiliation": "Department of Genetics, Washington University School of Medicine, Campus Box 8510, St. Louis, MO 63108, USA", + "ror_ids": [] + }, + { + "affiliation": "Pessac", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurology St. Carollo Hospital Suncheon Jeollanam-do Korea", + "ror_ids": [] + }, + { + "affiliation": "Division of Pulmonary, Critical Care and Sleep Medicine, Wayne State University School of Medicine, Detroit, MI, USA", + "ror_ids": [ + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "THE JAPAN SOCIETY OF CIVIL ENGINEERS", + "ror_ids": [ + "https://ror.org/05c8wa765" + ] + }, + { + "affiliation": "Laboratoire de Mathématiques Appliquées & Calcul Scientifique, Université Sultan Moulay Slimane, BP 523, Beni Mellal 23000, Morocco", + "ror_ids": [ + "https://ror.org/02m8tb249" + ] + }, + { + "affiliation": "Department of Population Health, Faculty of Medicine and Dentistry, University of Western Australia, Crawley, Australia.", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "College of Nursing · Research Institute of Nursing Science, Ajou University, Suwon, Korea.", + "ror_ids": [ + "https://ror.org/03tzb2h73" + ] + }, + { + "affiliation": "Department of Research and development Shanghai Eco. Polymer Sci.&Tech CO., Ltd Shanghai China", + "ror_ids": [] + }, + { + "affiliation": "Department of Clinical Immunology, Medical University of Bialystok, Waszyngtona 17 St., 15-274 Bialystok, Poland", + "ror_ids": [ + "https://ror.org/00y4ya841" + ] + }, + { + "affiliation": "CEFE-CNRS, 34293 Montpellier Cedex 5, France", + "ror_ids": [ + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Augenklinik, Stadtspital Triemli, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/03kpdys72" + ] + }, + { + "affiliation": "University of Michigan", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "The University of Texas at Dallas,Department of Mechanical Engineering,Richardson,TX,USA", + "ror_ids": [ + "https://ror.org/049emcs32" + ] + }, + { + "affiliation": "State Key Lab. of Biogeology and Environmental Geology and School of Environmental Studies China Univ. of Geosciences Wuhan 430074 China", + "ror_ids": [ + "https://ror.org/02q1jkh03", + "https://ror.org/04gcegc37" + ] + }, + { + "affiliation": "Immunology Department Bichat Claude Bernard University Hospital Paris France", + "ror_ids": [ + "https://ror.org/03fdnmv92" + ] + }, + { + "affiliation": "Key Laboratory of Tectonics and Petroleum Resources of Ministry of Education China University of Geosciences (Wuhan) Wuhan 430074 China", + "ror_ids": [ + "https://ror.org/04gcegc37" + ] + }, + { + "affiliation": "Central Baptist Theological Seminary, Nashville eileen.campbellreed@gmail.com", + "ror_ids": [] + }, + { + "affiliation": "Children's Hospital of Philadelphia", + "ror_ids": [ + "https://ror.org/01z7r7q48" + ] + }, + { + "affiliation": "Faculty of Pharmacy, Medical University of Warsaw, Banacha 1, 02-091 Warsaw, Poland", + "ror_ids": [ + "https://ror.org/04p2y4s44" + ] + }, + { + "affiliation": "Unit for Diabetes and Celiac Disease, Department of Clinical Sciences, Lund University, Clinical Research Center (CRC), University Hospital MAS, 205 02 Malmö, Sweden", + "ror_ids": [ + "https://ror.org/012a77v79" + ] + }, + { + "affiliation": "State Key Laboratory of Research on Bioactivities and Clinical Applications of Medicinal Plants The Chinese University of Hong Kong Shatin Hong Kong", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Chiba Polytechnic College Dept. of Mechanical Engineering", + "ror_ids": [] + }, + { + "affiliation": "The George Washington University, Washington, DC", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "Faculty of Technology, Tokyo University of Agriculture and Technology", + "ror_ids": [ + "https://ror.org/00qg0kr10" + ] + }, + { + "affiliation": "Krasnodar Branch of S. Fyodorov Eye Microsurgery Federal State Institution; Kuban State Medical University", + "ror_ids": [ + "https://ror.org/04wa91k02" + ] + }, + { + "affiliation": "University of Alabama", + "ror_ids": [ + "https://ror.org/03xrrjk67" + ] + }, + { + "affiliation": "Department of Hygiene, Gifu University School of Medicine", + "ror_ids": [ + "https://ror.org/024exxj48" + ] + }, + { + "affiliation": "The Hong Kong University of Science and Technology (Guangzhou) & The Hong Kong Uni. of Sci. and Tech., Guangzhou & Hong Kong, China", + "ror_ids": [ + "https://ror.org/00q4vv597" + ] + }, + { + "affiliation": "University of New England, N.S.W.", + "ror_ids": [ + "https://ror.org/02n2ava60" + ] + }, + { + "affiliation": "Universitätsklinikum Gießen, Abteilung für Hals- Nasen- und Ohrenheilkunde Gießen", + "ror_ids": [] + }, + { + "affiliation": "Walter and Eliza Hall Institute Melbourne", + "ror_ids": [ + "https://ror.org/01b6kha49" + ] + }, + { + "affiliation": "Bureau de Recherches Géologiques et Minières (BRGM), Orléans, France", + "ror_ids": [ + "https://ror.org/05hnb7x64" + ] + }, + { + "affiliation": "PharmaMar, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02h694m69" + ] + }, + { + "affiliation": "Department of Mathematical and Computing Science, School of Computing, Tokyo Institute of Technology, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/0112mx960" + ] + }, + { + "affiliation": "Universiteit Leiden", + "ror_ids": [ + "https://ror.org/027bh9e22" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Engineering Science, Osaka University", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "National Digital Switching System Engineering and Technological Research Center", + "ror_ids": [] + }, + { + "affiliation": "Université de Paris CMPLI, INSERM ERL U1133 (BFA, CNRS UMR 8251) E-pôle de génoinformatique Institut Jacques Monod, CNRS UMR 75205 Paris France", + "ror_ids": [ + "https://ror.org/05f82e368", + "https://ror.org/02c5gc203", + "https://ror.org/02feahw73", + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Hospital Santa Marcelina de Itaquera", + "ror_ids": [ + "https://ror.org/04sgy9050" + ] + }, + { + "affiliation": "Ear, Nose and Throat (ENT) Department NHS Greater Glasgow and Clyde, Queen Elizabeth University Hospital Glasgow UK", + "ror_ids": [ + "https://ror.org/04y0x0x35", + "https://ror.org/05kdz4d87" + ] + }, + { + "affiliation": "Facultad de Ciencias, Universidad Autónoma de Baja California", + "ror_ids": [ + "https://ror.org/05xwcq167" + ] + }, + { + "affiliation": "a Naval Postgraduate School , Monterey, California", + "ror_ids": [ + "https://ror.org/033yfkj90" + ] + }, + { + "affiliation": "Gaubius Institute, Health Research Organization TNO, Herenstraat 5d, Leiden, The Netherlands", + "ror_ids": [] + }, + { + "affiliation": "Advanced Robotics Center at the National University of Singapore (NUS),Department of Biomedical Engineering,Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "University of Freiburg; Centre for Paediatrics and Adolescent Medicine; Freiburg Germany", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "University of Colorado (United States)", + "ror_ids": [ + "https://ror.org/00jc20583" + ] + }, + { + "affiliation": "School of Civil Engineering Southeast University Nanjing China", + "ror_ids": [ + "https://ror.org/04ct4d772" + ] + }, + { + "affiliation": "Department of Orthopedics, Changzheng Hospital, The Second Military Medical University, Shanghai", + "ror_ids": [ + "https://ror.org/04tavpn47" + ] + }, + { + "affiliation": "Department of Chemical Engineering, University of Waterloo, ON, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "d Department of Medical Pharmacology, Gulhane School of Medicine, Ankara, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Alassad Medical Complex, Hama, Syrian Arab Republic.", + "ror_ids": [] + }, + { + "affiliation": "School of Life Sciences Zhengzhou University Zhengzhou Henan Province China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "University of Kent, Kent, UK", + "ror_ids": [ + "https://ror.org/00xkeyj56" + ] + }, + { + "affiliation": "1Korea/University of Ulsan, Ulsan, Republic of Korea;", + "ror_ids": [ + "https://ror.org/02c2f8975" + ] + }, + { + "affiliation": "State Key Laboratory of Microbial Resources, Institute of Microbiology, Chinese Academy of Sciences, Beijing 100101, PR China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/047yhep71" + ] + }, + { + "affiliation": "MUŞ ALPARSLAN ÜNİVERSİTESİ", + "ror_ids": [ + "https://ror.org/009axq942" + ] + }, + { + "affiliation": "e-mail:  Department of Ocean and Resources Engineering, University of Hawaii, Honolulu, HI 96822", + "ror_ids": [ + "https://ror.org/03tzaeb71" + ] + }, + { + "affiliation": "Consortium on Health, Environment, Education and Research (CHEER), and Department of Science and Environmental Studies The Hong Kong Institute of Education Tai Po Hong Kong SAR China", + "ror_ids": [ + "https://ror.org/000t0f062" + ] + }, + { + "affiliation": "Universidade de Pernambuco, Brasil", + "ror_ids": [ + "https://ror.org/00gtcbp88" + ] + }, + { + "affiliation": "Central Food Technological Research Institute Mysore (India)", + "ror_ids": [ + "https://ror.org/01d7fn555" + ] + }, + { + "affiliation": "Tianjin Women's and Children's Health Center Tianjin China", + "ror_ids": [] + }, + { + "affiliation": "University of Aberdeen, Aberdeen, UK", + "ror_ids": [ + "https://ror.org/016476m91" + ] + }, + { + "affiliation": "Virology Division, Department of Infectious Diseases and Immunology, Utrecht University, Faculty of Veterinary Medicine, and Institute of Biomembranes, Yalelaan 1, 3584 CL Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "Indian Institute of Technology Guwahati", + "ror_ids": [ + "https://ror.org/0022nd079" + ] + }, + { + "affiliation": "Department of Environmental Science Baylor University Waco Texas USA", + "ror_ids": [ + "https://ror.org/005781934" + ] + }, + { + "affiliation": "University of Montana", + "ror_ids": [ + "https://ror.org/0078xmk34" + ] + }, + { + "affiliation": "Physical Chemistry Department and Center for Nanoscience and Nanotechnology, The Hebrew University, Jerusalem 91904, Israel, Department of Biochemistry, George S. Wise Faculty of Life Sciences, Tel Aviv University, Ramat Aviv, 69978 Israel and Tel Aviv University Nanotechnology Center, and Centro S3, CNR Istituto di Nanoscienze, Via Campi 213/A, 41125 Modena, Italy", + "ror_ids": [ + "https://ror.org/04mhzgx49", + "https://ror.org/03qxff017", + "https://ror.org/0042e5975" + ] + }, + { + "affiliation": "Freelance writer and Fellow of the Institute of Biomedical Science", + "ror_ids": [ + "https://ror.org/05t77d857" + ] + }, + { + "affiliation": "Sheffield", + "ror_ids": [] + }, + { + "affiliation": "Jacksonville, Fla.", + "ror_ids": [] + }, + { + "affiliation": "Instituto Tecnológico Superior de Tlaxco", + "ror_ids": [] + }, + { + "affiliation": "AbbVie S.r.l. Campoverde Latina Italy", + "ror_ids": [ + "https://ror.org/036wkxc84" + ] + }, + { + "affiliation": "Center for Applied Mathematics Ecole Polytechnique CNRS UMR 7641, Route de Saclay 91128 Palaiseau Cedex France", + "ror_ids": [ + "https://ror.org/05hy3tk52", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Rajalakshmi Engineering College,Department of Information Technolog,Chennai,Tamil Nadu,India", + "ror_ids": [ + "https://ror.org/01dw2vm55" + ] + }, + { + "affiliation": "School of Pharmacy, Key Laboratory of Molecular Pharmacology & Drug Evaluation (Yantai University), Ministry of Education, Collaborative Innovation Center of Advanced Drug Delivery System & Biotech Drugs in Universities of Shandong, Yantai University, Yantai, 264005, China", + "ror_ids": [ + "https://ror.org/01rp41m56" + ] + }, + { + "affiliation": "Faculty of Biology, Department of Genetics, Physiology, and Microbiology, Complutense University of Madrid, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "The Department of Pediatrics and the Division of Nutrition of the Departments of Biochemistry and Medicine, Vanderbilt University School of Medicine, Nashville, Tenn.", + "ror_ids": [ + "https://ror.org/02vm5rt34" + ] + }, + { + "affiliation": "Centro de Tecnologías Físicas, Universitat Politècnica de València , Camí de Vera s/n, 46022, Valencia, Spain", + "ror_ids": [ + "https://ror.org/01460j859" + ] + }, + { + "affiliation": "Psychology Department Medicine Faculty of Albacete University of Castilla‐La Mancha Albacete Spain", + "ror_ids": [ + "https://ror.org/05r78ng12" + ] + }, + { + "affiliation": "School of Mechanical and Systems Engineering, Newcastle University, Newcastle-Upon-Tyne, UK", + "ror_ids": [ + "https://ror.org/01kj2bm70" + ] + }, + { + "affiliation": "State Key Laboratory of Elemento-Organic Chemistry, Nankai University, Tianjin 300071, P. R. China", + "ror_ids": [ + "https://ror.org/01y1kjr75" + ] + }, + { + "affiliation": "Department of Gastroenterology The First Affiliated Hospital of Xi'an Jiaotong University Xi'an Shaanxi People's Republic of China", + "ror_ids": [ + "https://ror.org/02tbvhh96" + ] + }, + { + "affiliation": "Camco Subsea Services", + "ror_ids": [] + }, + { + "affiliation": "1Istanbul", + "ror_ids": [] + }, + { + "affiliation": "Instituto Agronômico", + "ror_ids": [] + }, + { + "affiliation": "None", + "ror_ids": [] + }, + { + "affiliation": "Potsdam", + "ror_ids": [] + }, + { + "affiliation": "Institut für Lebensmittelwissenschaft und Humanernährung Gottfried Wilhelm Leibniz Universität Hannover Am Kleinen Felde 30 D‐30167 Hannover", + "ror_ids": [ + "https://ror.org/0304hq317" + ] + }, + { + "affiliation": "Rosenstiel Basic Medical Sciences Research Center, Brandeis University, Waltham, Massachusetts 02154", + "ror_ids": [ + "https://ror.org/05abbep66" + ] + }, + { + "affiliation": "US Food and Drug Administration, Center for Food Safety and Applied Nutrition, College Park, MD 20740, USA", + "ror_ids": [ + "https://ror.org/05hzdft06", + "https://ror.org/034xvzb47" + ] + }, + { + "affiliation": "Blindern/Oslo", + "ror_ids": [] + }, + { + "affiliation": "Universidad de Buenos Aires, Argentinien", + "ror_ids": [ + "https://ror.org/0081fs513" + ] + }, + { + "affiliation": "Assistant Professor, Tilburg Law School, Tilburg University, Tilburg, the Netherlands", + "ror_ids": [ + "https://ror.org/04b8v1s79" + ] + }, + { + "affiliation": "The Institute of Linguistics, The Russian Academy of Sciences, Moscow, Russian Federation", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Akademija dramske umjetnosti, Sveučilište u Zagrebu, Hrvatska", + "ror_ids": [ + "https://ror.org/00mv6sv71" + ] + }, + { + "affiliation": "CPPN Instituto de Meteorologia I.P. Lisbon Portugal", + "ror_ids": [] + }, + { + "affiliation": "State\nKey Laboratory of Fine Chemicals, School of Chemistry, Dalian University of Technology, Dalian 116012, P. R. China", + "ror_ids": [ + "https://ror.org/023hj5876" + ] + }, + { + "affiliation": "Clinical Associate Professor, Centre for Values, Ethics the Law and Medicine, School of Public Health, University of Sydney, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Water Resources Research Center, Disaster Prevention Research Institute, Kyoto University", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "115, Piceadilly", + "ror_ids": [] + }, + { + "affiliation": "University of Twente", + "ror_ids": [ + "https://ror.org/006hf6230" + ] + }, + { + "affiliation": "National Superconducting Cyclotron Laboratory and Department of Physics and Astronomy, Michigan State University, East Lansing, MI 48824-1321, USA", + "ror_ids": [ + "https://ror.org/05hs6h993", + "https://ror.org/00qerpb33" + ] + }, + { + "affiliation": "Food Science and Technology Program Department of Chemistry National University of Singapore Science Drive 3 Singapore City 117543 Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Salesforce.com and Princeton University", + "ror_ids": [ + "https://ror.org/00hx57361", + "https://ror.org/057315g56" + ] + }, + { + "affiliation": "Department of Systematic Botany, Biological Centre, Rijksuniversiteit Groningen, Kerklaan 30, Postbus 14, 9750 AA Haren, Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Aerospace Engineering, Nagoya University", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Loyola University of Chicago", + "ror_ids": [ + "https://ror.org/04b6x2g63" + ] + }, + { + "affiliation": "Royal Military College, Kingston, Ontario K7K 5L0 Canada", + "ror_ids": [] + }, + { + "affiliation": "Solid State Electronics, The Ångström Laboratory, Uppsala University , SE-75121 Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/048a87296" + ] + }, + { + "affiliation": "Wuhan University of Technology", + "ror_ids": [ + "https://ror.org/03fe7t173" + ] + }, + { + "affiliation": "DEM Beckman Research Institute of City of Hope Duarte CA", + "ror_ids": [ + "https://ror.org/05fazth07" + ] + }, + { + "affiliation": "Department of Environmental management-HSE, Ahvaz Branch, Islamic Azad University, Ahvaz, Iran", + "ror_ids": [ + "https://ror.org/04vcs0j60" + ] + }, + { + "affiliation": "Department of Chemical and Biological Engineering, Drexel University, Philadelphia, PA 19104, U.S.A.", + "ror_ids": [ + "https://ror.org/04bdffz58" + ] + }, + { + "affiliation": "Department of Clinical Immunology and Allergy, Medical University of Lodz, Krzemieniecka 5, Lodz 94-017, Poland", + "ror_ids": [ + "https://ror.org/02t4ekc95" + ] + }, + { + "affiliation": "Changsha 410083", + "ror_ids": [] + }, + { + "affiliation": "School of Mechatronic Engineering, Xi’an Technological University, Xi’an, China", + "ror_ids": [ + "https://ror.org/01t8prc81" + ] + }, + { + "affiliation": "Department of Physics and Astronomy, University of Delaware, Newark, Delaware 19716", + "ror_ids": [ + "https://ror.org/01sbq1a82" + ] + }, + { + "affiliation": "Department of Chemistry and Biochemistry and Institute for Marine Sciences, University of California, Santa Cruz, California 95064, Josephine Ford Cancer Center, Henry Ford Health System, Detroit, Michigan 48202, and Southwest Foundation for Biomedical Research, San Antonio, Texas 78245", + "ror_ids": [ + "https://ror.org/00wbskb04", + "https://ror.org/03s65by71", + "https://ror.org/02kwnkm68" + ] + }, + { + "affiliation": "Department of Internal Medicine, Faculty of Medicine, Thammasat University, Pathumthani, Thailand", + "ror_ids": [ + "https://ror.org/002yp7f20" + ] + }, + { + "affiliation": "NeoGenomics, Aliso Viejo, CA;", + "ror_ids": [ + "https://ror.org/04vj14y69" + ] + }, + { + "affiliation": "Delaware Agricultural Experiment Station, Department of Animal Science and Agricultural Biochemistry, College of Agricultural Sciences and College of Marine Studies, University of Delaware, Newark, DE 19717", + "ror_ids": [ + "https://ror.org/01sbq1a82" + ] + }, + { + "affiliation": "Oregon Health and Science University Portland OR USA", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Laboratório de Biodiversidade e Restauração de Ecossistemas, Departamento de Biologia Geral, Centro de Ciências Biológicas, Universidade Estadual de Londrina, Caixa Postal 6001, CEP 86051-990, Londrina, PR, Brazil.", + "ror_ids": [ + "https://ror.org/01585b035" + ] + }, + { + "affiliation": "Old Dominion University", + "ror_ids": [ + "https://ror.org/04zjtrb98" + ] + }, + { + "affiliation": "Department of Applied Mechanics, Indian Institute of Technology Delhi, New Delhi, India", + "ror_ids": [ + "https://ror.org/049tgcd06" + ] + }, + { + "affiliation": "Wisconsin Public Television", + "ror_ids": [] + }, + { + "affiliation": "Worcester, MA, Boston, MA, Los Angeles, CA, Manchester, United Kingdom", + "ror_ids": [] + }, + { + "affiliation": "Science, AAAS, Washington, DC 20005, USA", + "ror_ids": [] + }, + { + "affiliation": "JAPAN SOCIETY OF CIVIL ENGINEERS", + "ror_ids": [ + "https://ror.org/05c8wa765" + ] + }, + { + "affiliation": "Wayne State University School of Medicine and Lafayette Clinic.", + "ror_ids": [ + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "Department of Chemistry, Graduate School of Science, Chiba University, Chiba 263-8522, Japan, Department of Mechanics and System Design, Faculty of Systems Engineering, Tokyo University of Science, Suwa, 391-0292, Japan, Department of Chemical Engineering, Kyoto University, Kyoto, 615-8510, Japan, JST/SORST, c/o NEC Corporation, Miyukigaoka, Tsukuba 305-8501, Japan, and Department of Physics, Meijyo University, Nagoya 468-8522, Japan", + "ror_ids": [ + "https://ror.org/01hjzeq58", + "https://ror.org/05sj3n476", + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Department of Renewable Resources, Faculty of Agriculture, Macdonald College of McGill University, Ste. Anne de Bellevue, Quebec, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Universidade Federal do Rio de Janeiro, Brasil", + "ror_ids": [ + "https://ror.org/03490as77" + ] + }, + { + "affiliation": "Kuban State Agrarian University Krasnodar,Department of Electrical Machines and Electric Drives,Russian Federation", + "ror_ids": [ + "https://ror.org/058jafb94" + ] + }, + { + "affiliation": "Chem. Institut d. Universität Berlin", + "ror_ids": [ + "https://ror.org/01hcx6992" + ] + }, + { + "affiliation": "Forestry and Forest Products Research Institute", + "ror_ids": [ + "https://ror.org/044bma518" + ] + }, + { + "affiliation": "Santa Barbara, California, USA.", + "ror_ids": [] + }, + { + "affiliation": "1 Brigham Young University, Provo, Utah", + "ror_ids": [ + "https://ror.org/047rhhm47" + ] + }, + { + "affiliation": "Radboud University Nijmegen, The Netherlands", + "ror_ids": [ + "https://ror.org/016xsfp80" + ] + }, + { + "affiliation": "Department of Epidemiology, Mailman School of Public Health, Columbia University , 722 W. 168th Street, New York, NY 10032, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "School of Medical Sciences (Pharmacology)", + "ror_ids": [] + }, + { + "affiliation": "Jiangsu Normal University", + "ror_ids": [ + "https://ror.org/051hvcm98" + ] + }, + { + "affiliation": "Purdue University, West Lafayette, IN", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Departments of Functional Neurosurgery,", + "ror_ids": [] + }, + { + "affiliation": "University of Utrecht", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "MPI Informatik", + "ror_ids": [] + }, + { + "affiliation": "a Universität-GH Siegen , Fachbereich 8, Laboratorium für Makromolekulare Chemie, Adolf-Reichwein-Str. 2, D-57068, Siegen, Germany", + "ror_ids": [ + "https://ror.org/02azyry73" + ] + }, + { + "affiliation": "St John's Hospital Howden Livingston, West Lothian UK", + "ror_ids": [] + }, + { + "affiliation": "Department of General Surgery China‐Japan Friendship Hospital Beijing China", + "ror_ids": [ + "https://ror.org/037cjxp13" + ] + }, + { + "affiliation": "Hull Zoological Laboratory, University of Chicago, Chicago, Ill.", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of Chemistry “Ugo Schiff” University of Florence Via della Lastruccia, 3‐13 50019 Sesto Fiorentino Italy", + "ror_ids": [ + "https://ror.org/04jr1s763" + ] + }, + { + "affiliation": "Children’s Hospital of Philadelphia", + "ror_ids": [ + "https://ror.org/01z7r7q48" + ] + }, + { + "affiliation": "Research Scientist, MCEER, State Univ. New York at Buffalo, Buffalo, NY 14260.", + "ror_ids": [ + "https://ror.org/01y64my43" + ] + }, + { + "affiliation": "P. N. Lebedev Physical Institute 53 Leninskiy prospekt 119991 Moscow Russia", + "ror_ids": [ + "https://ror.org/01jkd3546" + ] + }, + { + "affiliation": "Encino Hospital Encino, CA 91436", + "ror_ids": [] + }, + { + "affiliation": "State Key Laboratory for Biology of Plant Diseases and Insect Pests, Institute of Plant Protection (IPP), Chinese Academy of Agricultural Sciences (CAAS), Beijing 100193, P.R. China", + "ror_ids": [ + "https://ror.org/0313jb750", + "https://ror.org/0111f7045" + ] + }, + { + "affiliation": "University of St. Thomas, Minnesota", + "ror_ids": [ + "https://ror.org/05vfxvp80" + ] + }, + { + "affiliation": "Shell E&P Technology Co.", + "ror_ids": [] + }, + { + "affiliation": "Department of Hematology, Shanxi Bethune Hospital, Shanxi Academy of Medical Sciences, Tongji Shanxi Hospital, Third Hospital of Shanxi Medical University, Taiyuan, Shanxi, China", + "ror_ids": [ + "https://ror.org/0265d1010", + "https://ror.org/04tshhm50" + ] + }, + { + "affiliation": "Shoreline Veterinary Dental Clinic, 16037 Aurora Avenue North, Seattle, WA 98133-5653", + "ror_ids": [] + }, + { + "affiliation": "School of Chemistry, Physics and Mechanical Engineering Queensland University of Technology (QUT) Brisbane QLD 4001 Australia", + "ror_ids": [ + "https://ror.org/03pnv4752" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Northwestern University, Evanston, Illinois 60208", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Military Medical Academy, Clinic for Plastic Surgery and Burns, Belgrade", + "ror_ids": [ + "https://ror.org/04dt6a039" + ] + }, + { + "affiliation": "Department of Physical Medicine and Rehabilitation, College of Medicine, Yeungnam University, Daemyungdong, Namku, Daegu 705-717, Republic of Korea", + "ror_ids": [ + "https://ror.org/05yc6p159" + ] + }, + { + "affiliation": "Key Laboratory of Advanced Material of Ship and Mechanics, Ministry of Industry and Information Technology, Harbin Engineering University, Harbin, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03x80pn82" + ] + }, + { + "affiliation": "Department of Oncology Division of Radiation Oncology McGill University Montreal General Hospital 1650 Cedar Ave. Montreal, QC.., Canada H3G 1A4", + "ror_ids": [ + "https://ror.org/04gbhgc79", + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Helensburgh, N.B.", + "ror_ids": [] + }, + { + "affiliation": "Université Toulouse", + "ror_ids": [ + "https://ror.org/004raaa70" + ] + }, + { + "affiliation": "Depatment of Infection & Immunity, Luxembourg Institute of Health, Luxembourg", + "ror_ids": [ + "https://ror.org/012m8gv78" + ] + }, + { + "affiliation": "The University of Texas at El Paso,USA", + "ror_ids": [ + "https://ror.org/04d5vba33" + ] + }, + { + "affiliation": "a Institute of the International Workers' Movement, USSR Academy of Sciences, Moscow", + "ror_ids": [] + }, + { + "affiliation": "Department of Micromorphology and Electron Microscopy, University of Vienna", + "ror_ids": [ + "https://ror.org/03prydq77" + ] + }, + { + "affiliation": "Authors' Affiliations: 1Archimedes, Inc., San Francisco; 2Department of Natural Sciences and Mathematics, Dominican University of California, San Rafael, California; and 3Genetic Technologies, Ltd., Fitzroy, Victoria, Australia", + "ror_ids": [ + "https://ror.org/056d3gw71", + "https://ror.org/05j4ckm72" + ] + }, + { + "affiliation": "Department of Gastroenterology, Fujen Catholic University Hospital, New Taipei City, Taiwan", + "ror_ids": [ + "https://ror.org/04je98850" + ] + }, + { + "affiliation": "Division of Hematology/Oncology, Department of Medicine, University of Virginia, Charlottesville, USA", + "ror_ids": [ + "https://ror.org/0153tk833" + ] + }, + { + "affiliation": "Estudio General de Navarra Pamplona", + "ror_ids": [] + }, + { + "affiliation": "Beijing", + "ror_ids": [] + }, + { + "affiliation": "University of Durham", + "ror_ids": [ + "https://ror.org/01v29qb04" + ] + }, + { + "affiliation": "Department of General Surgery, Gaziantep University Faculty of Medicine, Gaziantep, Turkey.", + "ror_ids": [ + "https://ror.org/020vvc407" + ] + }, + { + "affiliation": "Institut fur Anatomie, Physiologie, und Hygiene der Haustiere, Bonn, Germany.", + "ror_ids": [] + }, + { + "affiliation": "Division of Behavioral Sciences, Research Center for Public Health Sciences, National Cancer Center, Chuo-Ku, Japan;", + "ror_ids": [] + }, + { + "affiliation": "National Institute for Quantum and Radiological Science and Technology", + "ror_ids": [ + "https://ror.org/020rbyg91" + ] + }, + { + "affiliation": "LabCorp Specialty Testing Group Cancer Cytogenetics Laboratory Integrated Oncology Phoenix AZ USA", + "ror_ids": [ + "https://ror.org/03zsdhz84" + ] + }, + { + "affiliation": "Hans Mak Institute, Naarden;", + "ror_ids": [ + "https://ror.org/03y974j42" + ] + }, + { + "affiliation": "Nursing Science, East Carolina University, Greenville, NC, USA", + "ror_ids": [ + "https://ror.org/01vx35703" + ] + }, + { + "affiliation": "Legal Surveys and Aeronautical Charts Division, Surveys and Mapping Branch, Department of Mines and Technical Surveys", + "ror_ids": [] + }, + { + "affiliation": "Hospital Municipal Infantil Menino Jesus", + "ror_ids": [] + }, + { + "affiliation": "Professor, Department of Innovation in Medical Education, Director of Research, Office of Continuing Professional Development, University of Ottawa, Ottawa, Canada, Assistant Professor, Department of Surgery, University of Toronto, Toronto, Canada, and Editor-in-Chief, Journal of Continuing Education in the Health Professions.", + "ror_ids": [ + "https://ror.org/03c4mmv16", + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "University of Datyon", + "ror_ids": [ + "https://ror.org/021v3qy27" + ] + }, + { + "affiliation": "Department of Synthetic Chemistry & Biological Chemistry, Faculty of Engineering, Kyoto University", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Department of Medicine University of Toronto Toronto Ontario", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Department of Mechanical and Aerospace Engineering, Politecnico", + "ror_ids": [] + }, + { + "affiliation": "a Xinjiang Institute of Ecology and Geography, Chinese Academy of Sciences, 818 South Beijing Road, Xinshiqu District , Urumqi, 830011, Xinjiang, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/01a8ev928" + ] + }, + { + "affiliation": "Department of Chemistry, Mail Stop 216, University of Nevada, Reno, Nevada 89557", + "ror_ids": [ + "https://ror.org/01keh0577" + ] + }, + { + "affiliation": "Institute for High Performance Computing and Networking, National Research Council of Italy (ICAR-CNR), Via Pietro Castellino 111, 80131 Naples, Italy", + "ror_ids": [ + "https://ror.org/04r5fge26" + ] + }, + { + "affiliation": "Faculty of Chemistry Jagiellonian University Gronostajowa St. 2 30‐387 Kraków Poland", + "ror_ids": [ + "https://ror.org/03bqmcz70" + ] + }, + { + "affiliation": "Department of Chemistry, Louisiana State University, Baton Rouge, Louisiana 70803", + "ror_ids": [ + "https://ror.org/05ect4e57" + ] + }, + { + "affiliation": "Calgary", + "ror_ids": [] + }, + { + "affiliation": "a \n Department of Engineering , Texas Christian University\n, Fort Worth, Texas", + "ror_ids": [ + "https://ror.org/054b0b564" + ] + }, + { + "affiliation": "Oak Ridge National Laboratory,Computational Sciences and Engineering Division,Oak Ridge,TN,USA", + "ror_ids": [ + "https://ror.org/01qz5mb56" + ] + }, + { + "affiliation": "International Centre for Reproductive Health (ICRH), Department of Public Health and Primary Care, Faculty of Medicine and Health Sciences, Ghent University, Ghent, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Memphis Center for Urban Theological Studies", + "ror_ids": [] + }, + { + "affiliation": "From the Department of Pathology, University of Texas Medical Branch, Galveston Texas.", + "ror_ids": [ + "https://ror.org/016tfm930" + ] + }, + { + "affiliation": "Ecosystem Processes Division US Environmental Protection Agency Athens Georgia", + "ror_ids": [ + "https://ror.org/03tns0030" + ] + }, + { + "affiliation": "University of Évora, Portugal", + "ror_ids": [ + "https://ror.org/02gyps716" + ] + }, + { + "affiliation": "Institute for Systems based on Optoelectronics and Microtechnology (ISOM), Universidad Politécnica de Madrid 2 , Avda. Complutense 30, 28040 Madrid, Spain", + "ror_ids": [ + "https://ror.org/03n6nwv02" + ] + }, + { + "affiliation": "3Laboratório de Investigaçao Médica-Parasitológica, Instituto de Medicina Tropical/Dept. de Moléstias Infecciosas do Hospital das Clínicas, Universidade de São Paulo, 01246-903 São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Nichiden-Rika Glass Co., Ltd.", + "ror_ids": [] + }, + { + "affiliation": "IDMEC, Instituto Superior Técnico, Universidade de Lisboa, 1049-001 Lisboa, Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86" + ] + }, + { + "affiliation": "Department of Medicine, Divisions of General Internal Medicine and Endocrinology and Metabolism, St. Michael's Hospital, University of Toronto, 30 Bond St, Toronto, Ontario, M5B 1W8, Canada,", + "ror_ids": [ + "https://ror.org/03dbr7087", + "https://ror.org/04skqfp25" + ] + }, + { + "affiliation": "School of Pharmaceutical Science, Liaoning University, Shenyang, China.", + "ror_ids": [ + "https://ror.org/03xpwj629" + ] + }, + { + "affiliation": "Heidelberg University Hospital, Department for General Internal Medicine and Psychosomatics", + "ror_ids": [ + "https://ror.org/013czdx64" + ] + }, + { + "affiliation": "Diabetes and Metabolism, Mile End Diabetes Centre, The Royal London Hospital, London E1 4DG", + "ror_ids": [ + "https://ror.org/019my5047" + ] + }, + { + "affiliation": "Klaipėdos jūrininkų ligoninė, Klaipėdos universitetas", + "ror_ids": [ + "https://ror.org/027sdcz20" + ] + }, + { + "affiliation": "Department of Molecular and Cell Biology, University of Connecticut, Storrs, Connecticut 06269-3125, and Department of Microbiology and Immunology, School of Medicine, The University of North Carolina at Chapel Hill, Chapel Hill, North Carolina 27599-7290", + "ror_ids": [ + "https://ror.org/0130frc33", + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "Department of Developmental and Cell Biology; University of California, Irvine; Irvine; California", + "ror_ids": [ + "https://ror.org/04gyf1771" + ] + }, + { + "affiliation": "Department of Preventive Medicine, Jeju National University School of Medicine, Jeju, Korea.", + "ror_ids": [ + "https://ror.org/05hnb4n85" + ] + }, + { + "affiliation": "Shanghai Jiao Tong University, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Department of Civil Engineering, Tohoku University , Sendai 980-8579, Japan Tel: ; Fax:", + "ror_ids": [ + "https://ror.org/01dq60k83" + ] + }, + { + "affiliation": "University of California Merced Merced CA", + "ror_ids": [ + "https://ror.org/00d9ah105" + ] + }, + { + "affiliation": "IEETA Universidade de Aveiro,DETI,Aveiro,Portugal", + "ror_ids": [ + "https://ror.org/00nt41z93" + ] + }, + { + "affiliation": "University of Arkansas", + "ror_ids": [ + "https://ror.org/05vvhh982" + ] + }, + { + "affiliation": "University Medicine Greifswald", + "ror_ids": [ + "https://ror.org/025vngs54" + ] + }, + { + "affiliation": "Department of Zoology and Physiology Rutgers University Newark, NJ", + "ror_ids": [ + "https://ror.org/05vt9qd57" + ] + }, + { + "affiliation": "Veterans Affairs New England Mental Illness Research Education, and Clinical Center West Haven, Connecticut USA", + "ror_ids": [ + "https://ror.org/02hd1sz82" + ] + }, + { + "affiliation": "Consejo Nacional de Investigaciones Científicas y Técnicas (CONICET)", + "ror_ids": [ + "https://ror.org/03cqe8w59" + ] + }, + { + "affiliation": "Centre for Global Research, RMIT University, Australia", + "ror_ids": [ + "https://ror.org/04ttjf776" + ] + }, + { + "affiliation": "Department of Radiology, Ainshams university hospitals, Cairo, Egypt", + "ror_ids": [] + }, + { + "affiliation": "Ph.D., Assistant Professor, Department of Human Resource Management, College of Business Administration, Prince Sattam Bin Abdulaziz University", + "ror_ids": [ + "https://ror.org/04jt46d36" + ] + }, + { + "affiliation": "Beijing Jiaotong University a Key Laboratory of Luminescence and Optical Information, Ministry of Education, , Beijing 100044, China", + "ror_ids": [ + "https://ror.org/01yj56c84" + ] + }, + { + "affiliation": "School of Computer Science, University of Windsor", + "ror_ids": [ + "https://ror.org/01gw3d370" + ] + }, + { + "affiliation": "National Taiwan Normal University Department of Physics, , Taipei 116, Taiwan, Republic of China", + "ror_ids": [ + "https://ror.org/059dkdx38" + ] + }, + { + "affiliation": "GRUMMAN AEROSPACE CORP., BETHPAGE, N.Y.", + "ror_ids": [] + }, + { + "affiliation": "National Institute of Standards and Technology", + "ror_ids": [ + "https://ror.org/05xpvk416" + ] + }, + { + "affiliation": "School of Automation, Beijing Institute of Technology,Beijing,China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "The Department of Applied Physics, The Hebrew University of Jerusalem, Jerusalem 9190401, Israel", + "ror_ids": [ + "https://ror.org/03qxff017" + ] + }, + { + "affiliation": "Department of Molecular Microbiology; Washington University School of Medicine; St. Louis Missouri 63110", + "ror_ids": [] + }, + { + "affiliation": "Institute of Irish Studies, University of Liverpool, Liverpool, UK", + "ror_ids": [ + "https://ror.org/04xs57h96" + ] + }, + { + "affiliation": "PARC Institute, USA", + "ror_ids": [ + "https://ror.org/0529fxt39" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Indian Institute of Technology Ropar, Rupnagar, Punjab 140001, India", + "ror_ids": [ + "https://ror.org/02qkhhn56" + ] + }, + { + "affiliation": "Centre d'Etudes Biologiques de Chizé UMR7372 CNRS‐La Rochelle Université Villiers‐en‐Bois France", + "ror_ids": [ + "https://ror.org/00s8hq550", + "https://ror.org/04mv1z119", + "https://ror.org/02feahw73" + ] + }, + { + "affiliation": "Fuji Electric Co., Ltd.", + "ror_ids": [ + "https://ror.org/056701b75" + ] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biology, Genetics Institute, Shands Cancer Center and Center for Nutritional Sciences, University of Florida College of Medicine, Gainesville, Florida 32610, U.S.A.", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Electronics and Photonics Department, Institute of High Performance Computing, A*STAR, Singapore 138632", + "ror_ids": [ + "https://ror.org/02n0ejh50" + ] + }, + { + "affiliation": "Faculty of Pharmaceutical Sciences, Tokyo University of Science, Noda-shi, Japan", + "ror_ids": [ + "https://ror.org/05sj3n476" + ] + }, + { + "affiliation": "Federal Research Center of Coal and Coal-Chemistry of Siberian Branch of the Russian Academy of Sciences", + "ror_ids": [ + "https://ror.org/02frkq021" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Villanova University, Villanova, PA 19085", + "ror_ids": [ + "https://ror.org/02g7kd627" + ] + }, + { + "affiliation": "Jiangxi Science & Technology Normal University", + "ror_ids": [ + "https://ror.org/04r1zkp10" + ] + }, + { + "affiliation": "Institute of Macromolecular Chemistry, University of Freiburg, 79104 Freiburg, Germany; and “P.Poni” Institute of Macromolecular Chemistry, 6600 Iasi, Romania", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "Institute of Solid State Physics, Russian Academy of Sciences, Akademika Osip'yana str. 2, Chernogolovka, Moscow Region, 142432, Russian Federation", + "ror_ids": [ + "https://ror.org/05qrfxd25", + "https://ror.org/00ezjkn15" + ] + }, + { + "affiliation": "State Key Laboratory of Virtual Reality Technology and Systems Beihang University China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "C&EN WASHINGTON", + "ror_ids": [] + }, + { + "affiliation": "Ohio State University", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Universidad de Guayaquil", + "ror_ids": [] + }, + { + "affiliation": "Yancheng Institute of Technology", + "ror_ids": [ + "https://ror.org/04y8njc86" + ] + }, + { + "affiliation": "Department of Environmental SciencesPolicy and ManagementUniversity of CaliforniaBerkeleyCA 94720USA", + "ror_ids": [ + "https://ror.org/01an7q238" + ] + }, + { + "affiliation": "Amsterdam School of Communication Research, University of Amsterdam, Amsterdam, the Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463" + ] + }, + { + "affiliation": "Universiteit Gent", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Çankırı Karatekin University, Faculty of Science, Department of Mathematics, Çankiri, Turkey", + "ror_ids": [ + "https://ror.org/011y7xt38" + ] + }, + { + "affiliation": "Prof., Dept. of Civ. and Environmental Engrg., Univ. of Wisconsin, Madison, Wisc. 53706", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Medical Department, Brookhaven National Laboratory, Upton, Long Island, New York", + "ror_ids": [ + "https://ror.org/02ex6cf31" + ] + }, + { + "affiliation": "St Hugh’s College, Oxford", + "ror_ids": [] + }, + { + "affiliation": "College of Food Sciences and Engineering, South China University of Technology, Guangzhou 510640, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Millikin University , Decatur , IL , USA", + "ror_ids": [ + "https://ror.org/013bgdt24" + ] + }, + { + "affiliation": "University of Michigan Law School", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Animal Health Research Institute/Shebin El‐Koom Branch Menoufia Egypt", + "ror_ids": [] + }, + { + "affiliation": "De La Salle North Catholic High School, Portland, Oregon, USA", + "ror_ids": [] + }, + { + "affiliation": "Surrey Place Centre, Toronto, Ontario, Canada,", + "ror_ids": [ + "https://ror.org/01tw7ew41" + ] + }, + { + "affiliation": "Fort Hays State University", + "ror_ids": [ + "https://ror.org/00rwzgx62" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Wright State University, Dayton, Ohio 45435, USA", + "ror_ids": [ + "https://ror.org/04qk6pt94" + ] + }, + { + "affiliation": "UC, Berkeley, CA", + "ror_ids": [ + "https://ror.org/01an7q238" + ] + }, + { + "affiliation": "Departamento de Enfermería. Facultad de Enfermería, Fisioterapia y Podología. Universidad Complutense de Madrid. España. Servicio de Hemodiálisis. Hospital Clínico San Carlos. Madrid. España. Instituto de Investigación Sanitaria San Carlos (IdISSC). Madrid. España", + "ror_ids": [ + "https://ror.org/02p0gd045", + "https://ror.org/04d0ybj29" + ] + }, + { + "affiliation": "Joetsu University of Education", + "ror_ids": [ + "https://ror.org/02xjxgz53" + ] + }, + { + "affiliation": "State Key Laboratory of Elemento-Organic Chemistry, Research Institute of Elemento-Organic Chemistry, Collaborative Innovation Centre of Chemical Science and Engineering; Nankai University; Tianjin China", + "ror_ids": [ + "https://ror.org/01y1kjr75" + ] + }, + { + "affiliation": "Department of Ophthalmology, Yale University, New Haven, Connecticut.", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Department of Molecular and Cellular Biochemistry, Indiana University, USA", + "ror_ids": [ + "https://ror.org/01kg8sb98" + ] + }, + { + "affiliation": "U.S. Bureau of Mines", + "ror_ids": [] + }, + { + "affiliation": "Internal Medicine, Fondazione IRCCS Cà Granda, Ospedale Maggiore Policlinico, University of Milan, Milan, Italy", + "ror_ids": [ + "https://ror.org/016zn0y21", + "https://ror.org/00wjc7c48" + ] + }, + { + "affiliation": "Department of Trauma and Reconstructive Surgery, BG Hospital Bergmannstrost, Halle (Saale)", + "ror_ids": [] + }, + { + "affiliation": "Department Materials Science, KTH (Royal Institute of Technology)", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Birla Institute of Technology, India", + "ror_ids": [ + "https://ror.org/028vtqb15" + ] + }, + { + "affiliation": "Melbourne", + "ror_ids": [] + }, + { + "affiliation": "J.L. Swailsis residency program director, codirector of interprofessional education, and associate professor, Department of Medicine, McGovern Medical School, University of Texas Health Science Center, Houston, Texas; ORCID:.", + "ror_ids": [ + "https://ror.org/01gek1696" + ] + }, + { + "affiliation": "Santa Clara University", + "ror_ids": [ + "https://ror.org/03ypqe447" + ] + }, + { + "affiliation": "Univ of Minnesota, Minneapolis, MN", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "University Hospital Basel, Basel, Switzerland", + "ror_ids": [ + "https://ror.org/04k51q396" + ] + }, + { + "affiliation": "ICVS/3B’s\n- PT\nGovernment Associate Laboratory, 4710-057 Braga/Guimarães, Portugal", + "ror_ids": [] + }, + { + "affiliation": "Department of Medical Oncology National Cancer Center/National Clinical Research Center for Cancer/Cancer Hospital, Chinese Academy of Medical Sciences and Peking Union Medical College Beijing China", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "School of Information EngineeringNanchang UniversityNanchang330031People's Republic of China", + "ror_ids": [ + "https://ror.org/042v6xz23" + ] + }, + { + "affiliation": "Department of Chemistry, The University of Kansas, 2010 Malott\nHall, 1251 Wescoe Hall Drive, Lawrence, Kansas 66045, United States", + "ror_ids": [ + "https://ror.org/001tmjg57" + ] + }, + { + "affiliation": "I. V. Michurin Federal Scientific Center", + "ror_ids": [] + }, + { + "affiliation": "Department of Neurology Peking Union Medical College Hospital Chinese Academy of Medical Sciences and Peking Union Medical College Beijing China", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "Nankai University", + "ror_ids": [ + "https://ror.org/01y1kjr75" + ] + }, + { + "affiliation": "From the Department of Neurology, Seoul National University Hospital, Seoul, Republic of Korea (H.-G.J.) and Department of Neurology and Cerebrovascular Center, Seoul National University Bundang Hospital, Seongnam-si, Gyeonggi-do, Republic of Korea (B.J.K., M.H.Y., M.-K.H., H.-J.B.).", + "ror_ids": [ + "https://ror.org/00cb3km46", + "https://ror.org/01z4nnt86" + ] + }, + { + "affiliation": "School of Chemistry and Chemical Engineering, Xi’an University of Science and Technology, Xi’an 710054, China", + "ror_ids": [ + "https://ror.org/046fkpt18" + ] + }, + { + "affiliation": "Queen Mary University of London", + "ror_ids": [ + "https://ror.org/026zzn846" + ] + }, + { + "affiliation": "Department\nof Chemistry, University of North Carolina at Chapel Hill, Chapel Hill, North Carolina 27599, United States", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "School of Computer Science University of Nottingham Nottingham NG8 1BB UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, University of New Hampshire, Durham, NH 03824, USA", + "ror_ids": [ + "https://ror.org/01rmh9n78" + ] + }, + { + "affiliation": "Associate Professor of New Testament, Yale Divinity School, New Haven, CT, USA, mb.dinkler@yale.edu", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Architectural Design, Vocational School, Universitas Diponegoro, Semarang, Indonesia", + "ror_ids": [ + "https://ror.org/056bjta22" + ] + }, + { + "affiliation": "Consultant Urologist, Addenbrooke's Hospital, Hills Road, Cambridge CB2 2QQ", + "ror_ids": [ + "https://ror.org/055vbxf86" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, the College of Engineering, Ibaraki University", + "ror_ids": [ + "https://ror.org/00sjd5653" + ] + }, + { + "affiliation": "University of Gothenburg Centre for Person‐Centred Care (GPCC) Sahlgrenska Academy University of Gothenburg Gothenburg Sweden", + "ror_ids": [ + "https://ror.org/01tm6cn81" + ] + }, + { + "affiliation": "Institute for Physics, Technical University of Chemnitz, 09126 Chemnitz, Germany", + "ror_ids": [ + "https://ror.org/00a208s56" + ] + }, + { + "affiliation": "Department of Urology, Emory University School of Medicine, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Tsinghua University", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "University of Denver, Denver, CO, USA", + "ror_ids": [ + "https://ror.org/04w7skc03" + ] + }, + { + "affiliation": "Behavioral Neurology, Beth Israel Hospital, Boston, AM 02215", + "ror_ids": [] + }, + { + "affiliation": "University of Texas", + "ror_ids": [ + "https://ror.org/01gek1696" + ] + }, + { + "affiliation": "Ural State Medical University of the Ministry of Health of Russian Federation, Yekaterinburg, Russia", + "ror_ids": [ + "https://ror.org/00fycgp36" + ] + }, + { + "affiliation": "School of Fundamental Science and Technology, Keio University 1 , 3-14-1 Hiyoshi, Kohoku-ku, Yokohama 223-8522, Japan", + "ror_ids": [ + "https://ror.org/02kn6nx58" + ] + }, + { + "affiliation": "Politeknik Negeri Bengkalis, Indonesia", + "ror_ids": [] + }, + { + "affiliation": "University of Trento, Italy", + "ror_ids": [ + "https://ror.org/05trd4x28" + ] + }, + { + "affiliation": "Shahrood University of Technology", + "ror_ids": [ + "https://ror.org/00yqvtm78" + ] + }, + { + "affiliation": "Institute of Translational Medicine Zhejiang Shuren University Hangzhou Zhejiang 310015 China", + "ror_ids": [ + "https://ror.org/0331z5r71" + ] + }, + { + "affiliation": "Department of Chemistry, Cornell University, Ithaca, New York", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "CHU de Reims Laboratoire d'immunologie, Pôle de Biologie Médicale et Pathologie Reims France", + "ror_ids": [ + "https://ror.org/01jbb3w63" + ] + } +] \ No newline at end of file diff --git a/rorapi/tests/tests_affiliations/data/dataset_affiliations_springer_2023_10_31.json b/rorapi/tests/tests_affiliations/data/dataset_affiliations_springer_2023_10_31.json new file mode 100644 index 00000000..98c083a0 --- /dev/null +++ b/rorapi/tests/tests_affiliations/data/dataset_affiliations_springer_2023_10_31.json @@ -0,0 +1,18195 @@ +[ + { + "affiliation": "Department of Pediatrics and Clinical Medicine, Section of Neonatal Intensive Care Unit, Puericulture Institute and Neonatal Section, Azienda Ospedaliero-Universitaria Di Cagliari, Cagliari University, Cagliari, Italy", + "ror_ids": [ + "https://ror.org/003109y17" + ] + }, + { + "affiliation": "Universidad del Rosario, Bogotá, Colombia", + "ror_ids": [ + "https://ror.org/0108mwc04" + ] + }, + { + "affiliation": "Theoretical Physics and Center for Biophysics, Universität des Saarlandes, Saarlandes, Germany", + "ror_ids": [ + "https://ror.org/01jdpyv68" + ] + }, + { + "affiliation": "Division of Endocrine and Oncologic Surgery, Perelman School of Medicine, University of Pennsylvania, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Department of Mathematics, Imam Khomeini International University, Qazvin, Iran", + "ror_ids": [ + "https://ror.org/02jeykk09" + ] + }, + { + "affiliation": "Department of Physics, Federal University of Lavras, UFLA Campus, Lavras, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0122bmm03" + ] + }, + { + "affiliation": "Department of Clinical Engineering, Osaka Police Hospital, Osaka, Japan", + "ror_ids": [ + "https://ror.org/015x7ap02" + ] + }, + { + "affiliation": "Department of Medical Oncology, Dana-Farber Cancer Institute, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/02jzgtq86" + ] + }, + { + "affiliation": "Affiliated to Dep of Oncology, Inst of Clinical Sciences, Sahlgrenska Academy, University of Gothenburg, Gothenburg, Sweden", + "ror_ids": [ + "https://ror.org/01tm6cn81" + ] + }, + { + "affiliation": "Middle East Technical University, Physics Department, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/014weej12" + ] + }, + { + "affiliation": "Department of Internal Medicine, University of Pittsburgh Medical Center (UPMC), Pittsburgh, PA, USA", + "ror_ids": [ + "https://ror.org/04ehecz88" + ] + }, + { + "affiliation": "Stomatology Hospital, School of Stomatology, Zhejiang University School of Medicine, Clinical Research Center for Oral Disease of Zhejiang Province, Key Laboratory of Oral Biomedical Research of Zhejiang Province, Cancer Center of Zhejiang University, , China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Molecular Biology of Cancer, Institute of Experimental Medicine of the Czech Academy of Sciences, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/03hjekm25" + ] + }, + { + "affiliation": "Oxford Institute of Population Ageing, University of Oxford, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Klinik für Unfallchirurgie und Orthopädie, Evangelisches Krankenhaus Göttingen-Weende, Göttingen, Deutschland", + "ror_ids": [ + "https://ror.org/056y4sn81" + ] + }, + { + "affiliation": "Cancer Biology Program, The Research Institute of Fox Chase Cancer Center, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/0567t7073" + ] + }, + { + "affiliation": "Meta Robotics Institute, Shanghai Jiao Tong University, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Department of Pediatrics, The Hospital for Sick Children, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/057q4rt57" + ] + }, + { + "affiliation": "College of Geological Engineering and Geomatics, Chang’an University, Xi’an, China", + "ror_ids": [ + "https://ror.org/05mxya461" + ] + }, + { + "affiliation": "Universidade de Vigo, Vigo, Spain", + "ror_ids": [ + "https://ror.org/05rdf8595" + ] + }, + { + "affiliation": "Mr. & Mrs. Ko Chi-Ming Centre for Parkinson’s Disease Research, School of Chinese Medicine, Hong Kong Baptist University, Hong Kong, SAR, China", + "ror_ids": [ + "https://ror.org/0145fw131" + ] + }, + { + "affiliation": "Department of Nephrology, University Medical Center Groningen, Groningen, the Netherlands", + "ror_ids": [ + "https://ror.org/03cv38k47" + ] + }, + { + "affiliation": "Graduate Program on Computer Science, Department of Informatics and Statistics, Federal University of Santa Catarina (UFSC), Florianópolis, SC, Brazil", + "ror_ids": [ + "https://ror.org/041akq887" + ] + }, + { + "affiliation": "Department of Pharmaceutical Sciences and Technology, Birla Institute of Technology, Ranchi, India", + "ror_ids": [ + "https://ror.org/028vtqb15" + ] + }, + { + "affiliation": "Libin Cardiovascular Institute of Alberta, Calgary, AB, Canada", + "ror_ids": [ + "https://ror.org/02qthww36" + ] + }, + { + "affiliation": "Key Laboratory for Leather and Engineering of the Education Ministry, Sichuan University, Chengdu, China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "Department of Epidemiology, Maastricht University, Maastricht, The Netherlands", + "ror_ids": [ + "https://ror.org/02jz4aj89" + ] + }, + { + "affiliation": "Department of Information Systems, College of Computer and Information Sciences, Princess Nourah bint Abdulrahman University, Riyadh, Saudi Arabia", + "ror_ids": [ + "https://ror.org/05b0cyh02" + ] + }, + { + "affiliation": "Chromosome Engineering Research Center, Tottori University, Yonago, Tottori, Japan", + "ror_ids": [ + "https://ror.org/024yc3q36" + ] + }, + { + "affiliation": "Department of Physics, Oxford University, Oxford, United Kingdom", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Department of Pharmaceutical and Toxicological Chemistry named after Arzamastsev of the Institute of Pharmacy, I.M. Sechenov First Moscow State Medical University (Sechenov University), Moscow, Russia", + "ror_ids": [ + "https://ror.org/02yqqv993" + ] + }, + { + "affiliation": "Mission Design and Navigation Section, Jet Propulsion Laboratory, California Institute of Technology, Pasadena, CA, USA", + "ror_ids": [ + "https://ror.org/05dxps055", + "https://ror.org/027k65916" + ] + }, + { + "affiliation": "University of Rostock, Rostock, Germany", + "ror_ids": [ + "https://ror.org/03zdwsf69" + ] + }, + { + "affiliation": "Institut für Festkörperphysik, Technische Universität Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/03v4gjf40" + ] + }, + { + "affiliation": "Sorbonne University, Hôpital Saint-Antoine, and INSERM UMRs938, Paris, France", + "ror_ids": [ + "https://ror.org/02en5vm52", + "https://ror.org/01875pg84" + ] + }, + { + "affiliation": "Key Laboratory of Ministry of Education for Geomechanics and Embankment Engineering, Hohai University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01wd4xt90" + ] + }, + { + "affiliation": "Department of Genetics and Plant Breeding, MTTC & VTC, Selesih, CAU, Imphal, India", + "ror_ids": [ + "https://ror.org/03rs2w544" + ] + }, + { + "affiliation": "Center for Alzheimer Research and Treatment, Brigham and Women’s Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/04b6nzv94" + ] + }, + { + "affiliation": "Leeuwenhoek Centre for Advanced Microscopy (LCAM), Section Molecular Cytology at Swammerdam Institute for Life Sciences (SILS) at University of Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463", + "https://ror.org/013rctf62" + ] + }, + { + "affiliation": "College of Science, Civil Aviation University of China, Tianjin, China", + "ror_ids": [ + "https://ror.org/03je71k37" + ] + }, + { + "affiliation": "Department of Economics Marco Biagi, University of Modena and Reggio Emilia, Modena, Italy", + "ror_ids": [ + "https://ror.org/02d4c4y02" + ] + }, + { + "affiliation": "Division of Ecology and Evolution, Research School of Biology, The Australian National University, Canberra, Australia", + "ror_ids": [ + "https://ror.org/019wvm592" + ] + }, + { + "affiliation": "Menopause Andropause Research Center, Ahvaz Jundishapur University of Medical Sciences, Ahvaz, Iran", + "ror_ids": [ + "https://ror.org/01rws6r75" + ] + }, + { + "affiliation": "Pazhou Laboratory, Guangzhou, People’s Republic of China", + "ror_ids": [] + }, + { + "affiliation": "Department of Computer Science, Mathematics, Physics and Statistics, The University of British Columbia, Okanagan, Kelowna, BC, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Imaging and Pathology, KU Leuven, Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Space Systems Research Corporation, Alexandria, VA, USA", + "ror_ids": [ + "https://ror.org/00f7paw60" + ] + }, + { + "affiliation": "Gulbali Institute, Charles Sturt University, Wagga Wagga, NSW, Australia", + "ror_ids": [ + "https://ror.org/00wfvh315" + ] + }, + { + "affiliation": "Department of Hematology, Command Hospital (Eastern Command), Kolkata, West Bengal, India", + "ror_ids": [ + "https://ror.org/01wf0xv67" + ] + }, + { + "affiliation": "The Research Units of West China (2018RU012) - Chinese Academy of Medical Sciences, West China Hospital, Sichuan University, Chengdu, Sichuan, P.R. China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "The Ohio State University Comprehensive Cancer Center-Arthur G. James Cancer Hospital and Richard J. Solove Research Institute, Columbus, OH, USA", + "ror_ids": [ + "https://ror.org/028t46f04" + ] + }, + { + "affiliation": "Center for Cancer Research, Massachusetts General Hospital and Harvard Medical School, Charlestown, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52", + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Ph.D. Program of Interdisciplinary Medicine (PIM), National Yang Ming Chiao Tung University College of Medicine, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/00se2k293" + ] + }, + { + "affiliation": "Faculty of Food Science and Technology, University of Agricultural Sciences and Veterinary Medicine of Cluj-Napoca, Cluj-Napoca, Romania", + "ror_ids": [ + "https://ror.org/05hak1h47" + ] + }, + { + "affiliation": "Faculty of Science, University of Hradec Kralove, Hradec Králové, Czech Republic", + "ror_ids": [ + "https://ror.org/05k238v14" + ] + }, + { + "affiliation": "Department of Nuclear Medicine, Acibadem University, Acibadem Maslak Hospital, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/01rp2a061" + ] + }, + { + "affiliation": "Department of Physics, Guru Jambheshwar University of Science and Technology, Hisar, India", + "ror_ids": [ + "https://ror.org/02zpxgh81" + ] + }, + { + "affiliation": "Heidelberg Center for the Environment (HCE) & Institute of Geography, Heidelberg University, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Nepean Kidney Research Centre, Department of Renal Medicine, Nepean Hospital, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/03vb6df93" + ] + }, + { + "affiliation": "Department of Urology, Japan Community Health Care Organization Hokkaido Hospital, Sapporo, Japan", + "ror_ids": [ + "https://ror.org/02y005z64" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery and Sports Medicine, Stanford University, Redwood City, CA, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "School of Medicine, University of Colorado, Aurora, CO, USA", + "ror_ids": [ + "https://ror.org/03wmf1y16" + ] + }, + { + "affiliation": "Department of Pediatrics, University of Wisconsin School of Medicine and Public Health, Madison, WI, USA", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Sanford School of Public Policy, Duke University, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Institute of Neuroscience, State Key Laboratory of Neuroscience, CAS Center for Excellence in Brain Science and Intelligence Technology, Shanghai Center for Brain Science and Brain-Inspired Intelligence Technology, Chinese Academy of Sciences, , China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/00vpwhm04" + ] + }, + { + "affiliation": "Department of Orthopedic Surgery, Kochi Medical School, Kochi University, Nankoku, Kochi, Japan", + "ror_ids": [ + "https://ror.org/01xxp6985" + ] + }, + { + "affiliation": "Tianjin University of Technology, Tianjin, China", + "ror_ids": [ + "https://ror.org/00zbe0w13" + ] + }, + { + "affiliation": "Department of Learning and Instructional Sciences, University of Haifa, Haifa, Israel", + "ror_ids": [ + "https://ror.org/02f009v59" + ] + }, + { + "affiliation": "Australian Antarctic Program Partnership, University of Tasmania, Hobart, Australia", + "ror_ids": [ + "https://ror.org/01nfmeh72" + ] + }, + { + "affiliation": "Mount Sinai Hospital, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/01zkyz108" + ] + }, + { + "affiliation": "Ohio State University, Columbus, Ohio, United States", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "AIDS and Cancer Virus Program, Frederick National Laboratory for Cancer Research, Frederick, MD, USA", + "ror_ids": [ + "https://ror.org/03v6m3209" + ] + }, + { + "affiliation": "Korea Research Institute of Chemical Technology, Daejeon, Korea", + "ror_ids": [ + "https://ror.org/043k4kk20" + ] + }, + { + "affiliation": "Key Laboratory of Watershed Earth Surface Processes and Ecological Security, Zhejiang Normal University, Jinhua, China", + "ror_ids": [ + "https://ror.org/01vevwk45" + ] + }, + { + "affiliation": "Service of Laboratory Medicine, Pederzoli Hospital, Peschiera del Garda, Verona, Italy", + "ror_ids": [] + }, + { + "affiliation": "Klinik für Kinderheilkunde III, Pädiatrische Hämatologie/Onkologie, Universitätsklinik Essen, Essen, Deutschland", + "ror_ids": [ + "https://ror.org/02na8dn90" + ] + }, + { + "affiliation": "Genecast Biotechnology Co., Ltd., Wuxi, Jiangsu, China", + "ror_ids": [ + "https://ror.org/059r2qd49" + ] + }, + { + "affiliation": "Institute for Research in Immunology and Cancer, Université de Montréal, Montréal, Canada", + "ror_ids": [ + "https://ror.org/0161xgx34", + "https://ror.org/00wj6x496" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology/Section of Gynecologic Oncology—Center for Integrative Sciences, University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of ECE, SCSVMV Deemed University, Kanchipuram, India", + "ror_ids": [ + "https://ror.org/04w713f83" + ] + }, + { + "affiliation": "Department of Pathology, NYU Winthrop Hospital, Long Island School of Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/03eksqx74" + ] + }, + { + "affiliation": "Second Department of Surgery, School of Medicine, Wakayama Medical University, Wakayama, Japan", + "ror_ids": [ + "https://ror.org/005qv5373" + ] + }, + { + "affiliation": "Department of Geriatrics and Gerontology, Chi-Mei Medical Center, Tainan, Taiwan", + "ror_ids": [ + "https://ror.org/02y2htg06" + ] + }, + { + "affiliation": "Evidence-Based Medicine Center, Department of Critical Care Medicine, Department of Anesthesia, Department of Neurosurgery, Affiliated Hospital of Chengdu University, Chengdu, Sichuan, China", + "ror_ids": [ + "https://ror.org/031maes79" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, Institute of Biomedicine, University of Gothenburg, Gothenburg, Sweden", + "ror_ids": [ + "https://ror.org/01tm6cn81" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, Tongji Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04xy45965", + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Department of Translational Research on New Technologies in Medicine and Surgery, University of Pisa, Pisa, Italy", + "ror_ids": [ + "https://ror.org/03ad39j10" + ] + }, + { + "affiliation": "Department of Endocrinology and Diabetes Center, Endo ERN Center, Evaggelismos Hospital, Athens, Greece", + "ror_ids": [ + "https://ror.org/05q4veh78" + ] + }, + { + "affiliation": "Tianjin Key Laboratory of Ophthalmology and Visual Science, Tianjin Eye Institute, Tianjin Eye Hospital, Tianjin, China", + "ror_ids": [ + "https://ror.org/04j2cfe69" + ] + }, + { + "affiliation": "Food Allergy Research & Resource Program, Department of Food Science & Technology, University of Nebraska-Lincoln, Lincoln, NE, USA", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "Department of Bioscience and Bioinformatics, Faculty of Computer Science and Systems Engineering, Kyushu Institute of Technology, Fukuoka, Japan", + "ror_ids": [ + "https://ror.org/02278tr80" + ] + }, + { + "affiliation": "FOM Hochschule für Oekonomie & Management, Hamburg, Deutschland", + "ror_ids": [ + "https://ror.org/05m3vpd98" + ] + }, + { + "affiliation": "Hematopoietic Transplantation and Cell Therapy, Translational Research in Paediatric Oncology, Hospital La Paz Institute for Health Research (IdiPAZ), Madrid, Spain", + "ror_ids": [ + "https://ror.org/017bynh47" + ] + }, + { + "affiliation": "Departamento de Salud Pública y Materno-Infantil, Facultad de Medicina, Universidad Complutense de Madrid, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Department of Food Science and Technology, Faculty of Agriculture, Urmia University, Urmia, Iran", + "ror_ids": [ + "https://ror.org/032fk0x53" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, National Institute of Technology, Silchar, Assam, India", + "ror_ids": [ + "https://ror.org/001ws2a36" + ] + }, + { + "affiliation": "Center for Security, Theory and Algorithmic Research, International Institute of Information Technology, Hyderabad, India", + "ror_ids": [ + "https://ror.org/05f11g639" + ] + }, + { + "affiliation": "Department of Computer Science and Technology, China University of Petroleum, Beijing, China", + "ror_ids": [ + "https://ror.org/041qf4r12" + ] + }, + { + "affiliation": "Graduate Program of Digital Agroenergy, Federal University of Tocantins (UFT), Palmas-TO, Brazil", + "ror_ids": [ + "https://ror.org/053xy8k29" + ] + }, + { + "affiliation": "Wellcome Sanger Institute, Wellcome Genome Campus, Hinxton, Cambridgeshire, UK", + "ror_ids": [ + "https://ror.org/05cy4wa09" + ] + }, + { + "affiliation": "Departments of Pharmacy and Neurosciences, Intermountain Health, Salt Lake City, UT, USA", + "ror_ids": [ + "https://ror.org/04mvr1r74" + ] + }, + { + "affiliation": "Center for Clinical Research and Prevention, Copenhagen University Hospital – Bispebjerg and Frederiksberg, the Capital Region of Denmark, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/049qz7x77", + "https://ror.org/05bpbnx46" + ] + }, + { + "affiliation": "Department of Gastroenterology, Hepatology and Infectious Diseases, Medical Faculty, University Hospital Düsseldorf, Heinrich Heine University Düsseldorf, Düsseldorf, Germany", + "ror_ids": [ + "https://ror.org/024z2rq82" + ] + }, + { + "affiliation": "Department of Cell Biology and Neuroscience, Rowan University, Stratford, NJ, USA", + "ror_ids": [ + "https://ror.org/049v69k10" + ] + }, + { + "affiliation": "POSCO-POSTECH-RIST Convergence Research Center for Flat Optics and Metaphotonics, Pohang University of Science and Technology (POSTECH), Pohang, Republic of Korea", + "ror_ids": [ + "https://ror.org/04xysgw12" + ] + }, + { + "affiliation": "Department of OBS & GYN & Reproductive Endocrinology, Vali-asr Health Research Center, Vali-asr Hospital, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Klinik für Augenheilkunde, Universitätsklinikum Essen, Essen, Deutschland", + "ror_ids": [ + "https://ror.org/02na8dn90" + ] + }, + { + "affiliation": "Dipartimento di Scienze della Salute, Università Magna Grecia di Catanzaro, Unità Operativa Di Farmacologia Clinica e Farmacovigilanza, Azienda Ospedaliero-Universitaria “Mater Domini”, Catanzaro, Italy", + "ror_ids": [ + "https://ror.org/03q658t19" + ] + }, + { + "affiliation": "VIB-KU Leuven Center for Brain and Disease Research, Leuven, Belgium", + "ror_ids": [ + "https://ror.org/045c7t348" + ] + }, + { + "affiliation": "Department of Surgery, Dartmouth Medical School, Hanover, NH, USA", + "ror_ids": [ + "https://ror.org/049s0rh22" + ] + }, + { + "affiliation": "INFN-Sezione di Catania, Catania, Italy", + "ror_ids": [ + "https://ror.org/02pq29p90" + ] + }, + { + "affiliation": "School of Mechanical Engineering, Kyungpook National University, Daegu, Republic of Korea", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "Medical University of Warsaw, Warsaw, Poland", + "ror_ids": [ + "https://ror.org/04p2y4s44" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Sciences, Arak University, Arak, I.R., Iran", + "ror_ids": [ + "https://ror.org/00ngrq502" + ] + }, + { + "affiliation": "Department of Gastroenterology, Peking University Third Hospital, Beijing, China", + "ror_ids": [ + "https://ror.org/04wwqze12" + ] + }, + { + "affiliation": "Department of Political Science, School of Public Policy and Global Affairs, University of British Columbia, Vancouver, BC, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Harvard Medical School, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Escuela de Ciencias Físicas y Matemática, Pontificia Universidad Católica del Ecuador, Quito, Ecuador", + "ror_ids": [ + "https://ror.org/02qztda51" + ] + }, + { + "affiliation": "Cell Biology in Environmental Toxicology Research Group, University of the Basque Country (UPV/EHU), Leioa-Bizkaia, Spain", + "ror_ids": [ + "https://ror.org/000xsnr85" + ] + }, + { + "affiliation": "Istituto Officina dei Materiali CNR, Perugia, Italy", + "ror_ids": [ + "https://ror.org/00yfw2296" + ] + }, + { + "affiliation": "Collage of Science, China Agricultural University, Beijing, China", + "ror_ids": [ + "https://ror.org/04v3ywz14" + ] + }, + { + "affiliation": "Department of Public Health Sciences, Clemson University, Clemson, SC, USA", + "ror_ids": [ + "https://ror.org/037s24f05" + ] + }, + { + "affiliation": "Department of Mathematics, The University of Texas Rio Grande Valley, Edinburg, TX, USA", + "ror_ids": [ + "https://ror.org/02p5xjf12" + ] + }, + { + "affiliation": "Engineering Institute, University of Algarve, Campus da Penha, Faro, Portugal", + "ror_ids": [ + "https://ror.org/014g34x36" + ] + }, + { + "affiliation": "Department of Neurology, Sahlgrenska University Hospital, Gothenburg, Sweden", + "ror_ids": [ + "https://ror.org/04vgqjj36" + ] + }, + { + "affiliation": "Department of Psychiatry, University of Virginia Medical Center, Charlottesville, VA, USA", + "ror_ids": [ + "https://ror.org/046kb4y45" + ] + }, + { + "affiliation": "Division of Medical Education, Faculty of Medicine, Biology and Health, University of Manchester, Manchester, UK", + "ror_ids": [ + "https://ror.org/027m9bs27" + ] + }, + { + "affiliation": "V. G. Shukhov Belgorod State Technological University, Belgorod, Russia", + "ror_ids": [ + "https://ror.org/02v40vz65" + ] + }, + { + "affiliation": "Department of Pharmacology and Toxicology, School of Pharmacy, College of Health Sciences, Mekelle University, Mekelle, Ethiopia", + "ror_ids": [ + "https://ror.org/04bpyvy69" + ] + }, + { + "affiliation": "Experimental Imaging Center, Ospedale San Raffaele, Milano, Italy", + "ror_ids": [ + "https://ror.org/039zxt351" + ] + }, + { + "affiliation": "CAFPE and Departamento de Física Teórica y del Cosmos, Universidad de Granada, Granada, Spain", + "ror_ids": [ + "https://ror.org/04njjy449" + ] + }, + { + "affiliation": "Graduate School of Medicine, Kyoto University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Departments of Urology and Immunology, Mayo Clinic, Rochester, MN, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Department of Neuromedicine and Movement Science, Faculty and Medicine and Health Sciences, NTNU, Trondheim, Norway", + "ror_ids": [ + "https://ror.org/05xg72x27" + ] + }, + { + "affiliation": "The Mid Yorkshire Hospitals NHS Trust, Wakefield, UK", + "ror_ids": [ + "https://ror.org/05g23q746" + ] + }, + { + "affiliation": "Fraunhofer Institute for Microstructure of Materials and Systems IMWS, Halle (Saale), Germany", + "ror_ids": [ + "https://ror.org/050mbz718" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "School of Engineering, Department of Civil Engineering, Faculty of Mathematics Programming and General Courses, Democritus University of Thrace, Kimmeria, Xanthi, Greece", + "ror_ids": [ + "https://ror.org/03bfqnx40" + ] + }, + { + "affiliation": "Dipartimento di Scienze, Università Di Chieti, Chieti, Italy", + "ror_ids": [ + "https://ror.org/00qjgza05" + ] + }, + { + "affiliation": "Department of Women’s and Children’s Health, University of Liverpool, Liverpool, UK", + "ror_ids": [ + "https://ror.org/04xs57h96" + ] + }, + { + "affiliation": "International Psychoanalytic University Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/00b6j6x40" + ] + }, + { + "affiliation": "Department of Civil Engineering, Faculty of Engineering, Atatürk University, Erzurum, Türkiye", + "ror_ids": [ + "https://ror.org/03je5c526" + ] + }, + { + "affiliation": "Department of Critical Care, Faculty of Medicine Dentistry and Health Sciences, University of Melbourne, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Brown University’s School of Public Health, Brown University, Providence, RI, USA", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "Diagnostic Department, Division of Laboratory Medicine, Geneva University Hospitals, Geneva, Switzerland", + "ror_ids": [ + "https://ror.org/01m1pv723" + ] + }, + { + "affiliation": "Department of Preventive Medicine &, Institute of Health Services Research, Yonsei University College of Medicine, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/01wjejq96" + ] + }, + { + "affiliation": "Institution of Nanochemistry and Nanobiology, School of Environmental and Chemical Engineering, Shanghai University, Shanghai, China", + "ror_ids": [ + "https://ror.org/006teas31" + ] + }, + { + "affiliation": "Department of Environmental Engineering, International Hellenic University, Sindos, Thessaloniki, Greece", + "ror_ids": [ + "https://ror.org/00708jp83" + ] + }, + { + "affiliation": "Early Life Traces and Evolution-Astrobiology Laboratory, UR Astrobiology, University of Liège, Liège, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "Department of Pathology, The University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of Education, BeiHua University, Jilin, China", + "ror_ids": [ + "https://ror.org/013jjp941" + ] + }, + { + "affiliation": "National Prion Disease Pathology Surveillance Center (NPDPSC), Case Western Reserve University, Cleveland, OH, USA", + "ror_ids": [ + "https://ror.org/051fd9666" + ] + }, + { + "affiliation": "Department of Plant Sciences, College of Agricultural and Marine Sciences, Sultan Qaboos University, Muscat, Oman", + "ror_ids": [ + "https://ror.org/04wq8zb47" + ] + }, + { + "affiliation": "Research Center for Psychiatry and Behavior Science, School of Medicine, Shiraz University of Medical Sciences, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/01n3s4692" + ] + }, + { + "affiliation": "Key Laboratory of Radioactive and Rare Scattered Minerals, Ministry of Natural Resources, Guangdong Provincial Institute of Mining Applications, Shaoguan, Guangdong, China", + "ror_ids": [ + "https://ror.org/02kxqx159" + ] + }, + { + "affiliation": "Department of Gastroenterology, Salford Royal Foundation Trust, Salford, UK", + "ror_ids": [ + "https://ror.org/019j78370" + ] + }, + { + "affiliation": "Department of Bioinformatics and Biotechnology, International Islamic University, Islamabad, Pakistan", + "ror_ids": [ + "https://ror.org/047w75g40" + ] + }, + { + "affiliation": "Department of Physics, University of California, La Jolla, CA, U.S.A.", + "ror_ids": [ + "https://ror.org/05t99sp05" + ] + }, + { + "affiliation": "Department of Industrial Engineering and Management, National Yunlin University of Science and Technology, Douliou, Taiwan", + "ror_ids": [ + "https://ror.org/04qkq2m54" + ] + }, + { + "affiliation": "Faculty of Biology, Belarusian State University, Minsk, Belarus", + "ror_ids": [ + "https://ror.org/021036w13" + ] + }, + { + "affiliation": "Department of Economics and Statistics, The University of Dodoma, Dodoma, Tanzania", + "ror_ids": [ + "https://ror.org/009n8zh45" + ] + }, + { + "affiliation": "Department of Pathology, School of Medical Sciences Universiti Sains Malaysia, Kota Bharu, Kelantan, Malaysia", + "ror_ids": [ + "https://ror.org/02rgb2k63" + ] + }, + { + "affiliation": "Clinical Research Development Unit of Akbar Hospital, Faculty of Medicine, Mashhad University of Medical Sciences, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/04sfka033" + ] + }, + { + "affiliation": "School of Mechanical and Electronic Engineering, Wuhan University of Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/03fe7t173" + ] + }, + { + "affiliation": "Leibniz Institute for Evolution and Biodiversity Science, Museum für Naturkunde Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/052d1a351" + ] + }, + { + "affiliation": "Bloomsbury Institute of Intensive Care Medicine, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "School of Biomedical Engineering, University of Technology Sydney, Sydney, Australia", + "ror_ids": [ + "https://ror.org/03f0f6041" + ] + }, + { + "affiliation": "National Institute for Nuclear Physics (INFN), Genova, Italy", + "ror_ids": [ + "https://ror.org/005ta0471" + ] + }, + { + "affiliation": "Coal City University, Enugu, Nigeria", + "ror_ids": [ + "https://ror.org/043z5qa52" + ] + }, + { + "affiliation": "Department of Internal Medicine, Seoul St. Mary’s Hospital, College of Medicine, The Catholic University of Korea, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/056cn0e37", + "https://ror.org/01fpnj063" + ] + }, + { + "affiliation": "Massachusetts Institute of Technology (MIT), Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "University of the Sunshine Coast, Sippy Downs, QLD, Australia", + "ror_ids": [ + "https://ror.org/016gb9e15" + ] + }, + { + "affiliation": "National Research Nuclear University MEPhI, Moscow, Russia", + "ror_ids": [ + "https://ror.org/04w8z7f34" + ] + }, + { + "affiliation": "Symbiosis Institute of Computer Studies and Research, Symbiosis International (Deemed University), Pune, India", + "ror_ids": [ + "https://ror.org/005r2ww51" + ] + }, + { + "affiliation": "Institute of Solid State Chemistry, Urals Branch, Russian Academy of Sciences, Ekaterinburg, Russia", + "ror_ids": [ + "https://ror.org/02s4h3z39", + "https://ror.org/05qrfxd25", + "https://ror.org/01kga0z77" + ] + }, + { + "affiliation": "Stress Physiology and Molecular Biology Laboratory, Department of Botany, Centre for Advanced Study, Jai Narain Vyas University, Rajasthan, India", + "ror_ids": [ + "https://ror.org/03qnpty21" + ] + }, + { + "affiliation": "Information Technology Department, Dr B R Ambedkar National Institute of Technology, Jalandhar, Punjab, India", + "ror_ids": [ + "https://ror.org/03xt0bg88" + ] + }, + { + "affiliation": "Department of Mathematics and Informatics, Faculty of Sciences, University of Novi Sad, Novi Sad, Serbia", + "ror_ids": [ + "https://ror.org/00xa57a59" + ] + }, + { + "affiliation": "Department of Pediatrics, The George Washington University School of Medicine and Health Sciences, Washington, DC, USA", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "Department of Economics, Università degli Studi dell’Insubria, Varese, Italy", + "ror_ids": [ + "https://ror.org/00s409261" + ] + }, + { + "affiliation": "Department of Neurology, Massachusetts General Hospital and Harvard Medical School, Charlestown, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Department of Orthopedics and Traumatology, The University of Hong Kong, Pok Fu Lam, Hong Kong", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "Marketing Department, College of Business, University of Jeddah, Jeddah, Saudi Arabia", + "ror_ids": [ + "https://ror.org/015ya8798" + ] + }, + { + "affiliation": "Medicine, University of Colorado Anschutz Medical Campus, Aurora, USA", + "ror_ids": [ + "https://ror.org/03wmf1y16" + ] + }, + { + "affiliation": "Max-Planck-Institut für Biophysik, Frankfurt a. M., Deutschland", + "ror_ids": [ + "https://ror.org/02panr271" + ] + }, + { + "affiliation": "Departamento de Estudios Psicológicos, Universidad Icesi, Cali, Colombia", + "ror_ids": [ + "https://ror.org/02t54e151" + ] + }, + { + "affiliation": "Nuclear Engineering, University of Tripoli, Tripoli, Libya", + "ror_ids": [ + "https://ror.org/00taa2s29" + ] + }, + { + "affiliation": "Scotland’s Rural College, Dumfries, UK", + "ror_ids": [ + "https://ror.org/044e2ja82" + ] + }, + { + "affiliation": "Department of Respiratory Emergency and Critical Care, The First Affiliated Hospital of Nanchang University, Nanchang, Jiangxi Province, P. R. China", + "ror_ids": [ + "https://ror.org/05gbwr869" + ] + }, + { + "affiliation": "School of Communication and Information Engineering, Chongqing University of Posts and Telecommunications, Chongqing, China", + "ror_ids": [ + "https://ror.org/03dgaqz26" + ] + }, + { + "affiliation": "Amsterdam University Medical Center, Epidemiology and Data Science, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/008xxew50", + "https://ror.org/05grdyy37" + ] + }, + { + "affiliation": "School of Psychology, University of Glasgow, Glasgow, Scotland, UK", + "ror_ids": [ + "https://ror.org/00vtgdb53" + ] + }, + { + "affiliation": "Department of Radiotherapy, Sun Yat-sen Memorial Hospital, Sun Yat-sen University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/01px77p81", + "https://ror.org/0064kty71" + ] + }, + { + "affiliation": "National Institute of Laser Enhanced Science (NILES), Cairo University, Giza, Egypt", + "ror_ids": [ + "https://ror.org/03q21mh05" + ] + }, + { + "affiliation": "Institute for Cognitive and Brain Sciences (ICBS), Shahid Beheshti University (SBU), Tehran, Iran", + "ror_ids": [ + "https://ror.org/0091vmj44" + ] + }, + { + "affiliation": "Department of Physics, Kyoto University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Institutes of Biology and Medical Science, Soochow University, Suzhou, China", + "ror_ids": [ + "https://ror.org/05t8y2r12" + ] + }, + { + "affiliation": "Department of Food Science and Technology, Chungnam National University, Daejeon, Korea", + "ror_ids": [ + "https://ror.org/0227as991" + ] + }, + { + "affiliation": "Babeș-Bolyai University, Cluj-Napoca, Romania", + "ror_ids": [ + "https://ror.org/02rmd1t30" + ] + }, + { + "affiliation": "Department of Cardiology, Policlinico Casilino of Rome, Rome, Italy", + "ror_ids": [ + "https://ror.org/04zhd1705" + ] + }, + { + "affiliation": "Nursing Course, Faculty of Ceilândia/FCE, Metropolitan Center, University of Brasília/UnB, Brasília, Federal District, Brazil", + "ror_ids": [ + "https://ror.org/02xfp8v59" + ] + }, + { + "affiliation": "Department of Microbiology, Rashtraguru Surendranath College, Barrackpore, Kolkata, India", + "ror_ids": [ + "https://ror.org/01e7v7w47" + ] + }, + { + "affiliation": "Evidence-Based Medicine Center, School of Basic Medical Sciences, Lanzhou University, Lanzhou, China", + "ror_ids": [ + "https://ror.org/01mkqqe32" + ] + }, + { + "affiliation": "Department of Radiation Oncology, Tisch Cancer Institute, Icahn School of Medicine at Mount Sinai, New York, NY, USA", + "ror_ids": [ + "https://ror.org/04a9tmd77", + "https://ror.org/0317dzj93" + ] + }, + { + "affiliation": "Experimental Medicine Research Group, Department Medicine, Faculty of Medicine and Health Sciences, Stellenbosch University, Parow, South Africa", + "ror_ids": [ + "https://ror.org/05bk57929" + ] + }, + { + "affiliation": "Institute of Physics, Academia Sinica, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05bxb3784", + "https://ror.org/01tpvdq80" + ] + }, + { + "affiliation": "Higher Teachers Training College Bambili, The University of Bamenda, Bamenda, North West Region, Cameroon", + "ror_ids": [ + "https://ror.org/031ahrf94" + ] + }, + { + "affiliation": "College of Civil Engineering, Nanjing Forestry University, Nanjing, China", + "ror_ids": [ + "https://ror.org/03m96p165" + ] + }, + { + "affiliation": "Laboratory of Food Quality Management, Department of Food Sciences, FARAH - Veterinary Public Health, University of Liège, Liège, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "Department of Psychology, Linnaeus University, Växjö, Sweden", + "ror_ids": [ + "https://ror.org/00j9qag85" + ] + }, + { + "affiliation": "Department of Ancient Studies, University of Maryland, Baltimore County (UMBC), Baltimore, MD, USA", + "ror_ids": [ + "https://ror.org/02qskvh78" + ] + }, + { + "affiliation": "Thin-Film Device Laboratory and Center for Emergent Matter Science, RIKEN, Wako, Saitama, Japan", + "ror_ids": [ + "https://ror.org/01sjwvz98", + "https://ror.org/03gv2xk61" + ] + }, + { + "affiliation": "College of Mechatronics Engineering, Beijing Information Science and Technology University, Beijing, China", + "ror_ids": [ + "https://ror.org/04xnqep60" + ] + }, + { + "affiliation": "National Engineering Research Center of Vacuum Metallurgy, Kunming University of Science and Technology, Kunming, Yunnan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00xyeez13" + ] + }, + { + "affiliation": "Graeter Manchester Business School, University of Bolton, Bolton, UK", + "ror_ids": [ + "https://ror.org/01t884y44" + ] + }, + { + "affiliation": "Duke University Medical Center, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/03njmea73" + ] + }, + { + "affiliation": "Embrapa Mandioca e Fruticultura, Cruz das Almas, Bahia, Brazil", + "ror_ids": [ + "https://ror.org/0482b5b22" + ] + }, + { + "affiliation": "Institut für Rechtsmedizin, Universitätsmedizin Rostock, Rostock, Deutschland", + "ror_ids": [ + "https://ror.org/04dm1cm79" + ] + }, + { + "affiliation": "The Biodesign Center for Structural Discovery, Biodesign Institute, Arizona State University, Tempe, AZ, USA", + "ror_ids": [ + "https://ror.org/03efmqc40" + ] + }, + { + "affiliation": "Department of Systems Medicine, University of Rome “Tor Vergata”, Rome, Italy", + "ror_ids": [ + "https://ror.org/02p77k626" + ] + }, + { + "affiliation": "Department of Emergency Medicine, David Geffen School of Medicine at UCLA, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "J.E. Cairnes School of Business and Economics, University of Galway, Galway, Ireland", + "ror_ids": [ + "https://ror.org/03bea9k73" + ] + }, + { + "affiliation": "Institute for Molecular Systems Engineering and Advanced Materials (IMSEAM), Heidelberg University, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Department of Dermatology, Oregon Health & Science, University, Portland, OR, USA", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "School of Energy Materials, Mahatam Gandhi University, Kottyam, Kerla, India", + "ror_ids": [ + "https://ror.org/00h4spn88" + ] + }, + { + "affiliation": "Department of Mechanical and Aerospace Engineering, University of California San Diego, San Diego, CA, USA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Department of Hematology, Leiden University Medical Center, Leiden, the Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17" + ] + }, + { + "affiliation": "Department of Human Science, LUMSA University, Rome, Italy", + "ror_ids": [ + "https://ror.org/02d8v0v24" + ] + }, + { + "affiliation": "Infectious Diseases, Massachusetts General Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "College of Engineering, Fujian Jiangxia University, Fuzhou, Fujian, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01cyb5v38" + ] + }, + { + "affiliation": "Department of Plant Science and Landscape Architecture, University of Connecticut, Storrs, CT, USA", + "ror_ids": [ + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "Department of Dermatology and Venereology, Medical University of Bialystok, Bialystok, Poland", + "ror_ids": [ + "https://ror.org/00y4ya841" + ] + }, + { + "affiliation": "Cancer Center, Shanghai Zhongshan Hospital, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Ludwig-Maximilians-Universität München, München, Deutschland", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "Mahidol University International College, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/01znkr924" + ] + }, + { + "affiliation": "State Key Laboratory of Genetic Resources and Evolution, Kunming Institute of Zoology, Chinese Academy of Sciences, Kunming, Yunnan, China", + "ror_ids": [ + "https://ror.org/03m0vk445", + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "Department of Environmental Science and Engineering, Bangladesh University of Textiles, Dhaka, Bangladesh", + "ror_ids": [ + "https://ror.org/031evmb56" + ] + }, + { + "affiliation": "Twin Cities Spine Center, Minneapolis, MN, USA", + "ror_ids": [ + "https://ror.org/03zpmpz54" + ] + }, + { + "affiliation": "Fisheries and Oceans Canada, Ottawa, ON, Canada", + "ror_ids": [ + "https://ror.org/02qa1x782" + ] + }, + { + "affiliation": "School of Materials Science and Engineering, Peking University, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Department of Pediatrics, Graduate School of Medicine, Yokohama City University, Yokohama, Japan", + "ror_ids": [ + "https://ror.org/0135d1r83" + ] + }, + { + "affiliation": "Department of Nursing, Tongji Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Hospital Sirio-Libanes, São Paulo, SP, Brazil", + "ror_ids": [ + "https://ror.org/03r5mk904" + ] + }, + { + "affiliation": "School of International Studies, Jawaharlal Nehru University, New Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/0567v8t28" + ] + }, + { + "affiliation": "Department of Computing and Mathematics, Faculty of Philosophy, Science and Letters of Ribeirão Preto, University of São Paulo (USP), Ribeirão Preto, SP, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "School of Electrical and Electronic Engineering, Hanoi University of Science and Technology, Hanoi, Vietnam", + "ror_ids": [ + "https://ror.org/04nyv3z04" + ] + }, + { + "affiliation": "American Indian Science and Engineering Society (AISES), Albuquerque, USA", + "ror_ids": [ + "https://ror.org/01cegnf65" + ] + }, + { + "affiliation": "Department of Neurology, Dementia Clinic, Aalborg University Hospital, Aalborg, Denmark", + "ror_ids": [ + "https://ror.org/02jk5qe80" + ] + }, + { + "affiliation": "Center for Public Health Sciences, National Cancer Center, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/0025ww868" + ] + }, + { + "affiliation": "Konrad Lorenz Institute of Ethology, University of Veterinary Medicine, Vienna, Austria", + "ror_ids": [ + "https://ror.org/01w6qp003" + ] + }, + { + "affiliation": "Department of Psychological Medicine, Institute of Psychiatry, Psychology and Neuroscience, King’s College London, London, UK", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "School of Chemical Sciences, University of Chinese Academy of Sciences, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05qbk4x57" + ] + }, + { + "affiliation": "Present address: Laboratorio de Genomica Funcional de Leguminosas, Facultad de Estudios Superiores Iztacala, Universidad Nacional Autonoma de Mexico, Tlalnepantla, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Science, Minia University, Minia, Egypt", + "ror_ids": [ + "https://ror.org/02hcv4z63" + ] + }, + { + "affiliation": "Population Health Research Institute, Hamilton, ON, Canada", + "ror_ids": [ + "https://ror.org/03kwaeq96" + ] + }, + { + "affiliation": "School of Mechanical & Aerospace Engineering, Nanyang Technological University, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/02e7b5302" + ] + }, + { + "affiliation": "Africa Institute for Research in Economics and Social Sciences (AIRESS), University Mohamed VI Polytechnic, Rabat, Morocco", + "ror_ids": [ + "https://ror.org/03xc55g68" + ] + }, + { + "affiliation": "Department of Medicine, The Warren Alpert Medical School at Brown University, Providence, USA", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "Institute of Medical Microbiology, University Hospital of RWTH, Aachen, Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "Neurologi Department, Medical Faculty of Universitas Syiah Kuala, Banda Aceh, Aceh, Indonesia", + "ror_ids": [ + "https://ror.org/05v4dza81" + ] + }, + { + "affiliation": "Hunan Provincial Key Laboratory of Intelligent Manufacturing Technology for High-performance Mechanical Equipment, Changsha University of Science and Technology, Changsha, China", + "ror_ids": [ + "https://ror.org/03yph8055" + ] + }, + { + "affiliation": "Polymer Materials Engineering Department, Faculty of Engineering, Hitit University, Çorum, Turkey", + "ror_ids": [ + "https://ror.org/01x8m3269" + ] + }, + { + "affiliation": "Department of Humanities, Pompeu Fabra University, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/04n0g0b29" + ] + }, + { + "affiliation": "Wayne State University, Detroit, Michigan, United States", + "ror_ids": [ + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "Department of Psychiatry and Behavioral Sciences, Emory University School of Medicine, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Key Laboratory of Control of Power Transmission and Conversion (SJTU), Ministry of Education, Shanghai, China", + "ror_ids": [ + "https://ror.org/01mv9t934" + ] + }, + { + "affiliation": "Division of Nephrology, Department of Internal Medicine, Presbyterian Medical Center, Jeonju, Republic of Korea", + "ror_ids": [ + "https://ror.org/01fvnb423" + ] + }, + { + "affiliation": "Low Carbon Energy and Resources Technologies Research Group, Faculty of Engineering, University of Nottingham, Nottingham, UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Princess Margaret Cancer Centre, Princess Margaret Hospital, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087", + "https://ror.org/01tajhr18", + "https://ror.org/03zayce58" + ] + }, + { + "affiliation": "MOE Key Laboratory of Pollution Processes and Environmental Criteria/Tianjin Key Laboratory of Environmental Remediation and Pollution Control, College of Environmental Science and Engineering, Nankai University, Tianjin, China", + "ror_ids": [ + "https://ror.org/01y1kjr75" + ] + }, + { + "affiliation": "Department of Pathology, School of Medicine, Namazee Teaching Hospital, Shiraz University of Medical Sciences, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/01n3s4692" + ] + }, + { + "affiliation": "Biodiversity and Natural Resources Program, International Institute for Applied Systems Analysis (IIASA), Laxenburg, Austria", + "ror_ids": [ + "https://ror.org/02wfhk785" + ] + }, + { + "affiliation": "Department of Urology, Dalhousie University, Halifax, NS, Canada", + "ror_ids": [ + "https://ror.org/01e6qks80" + ] + }, + { + "affiliation": "Genomic Medicine and Familial Cancer Centre, The Royal Melbourne Hospital, Parkville, VIC, Australia", + "ror_ids": [ + "https://ror.org/005bvs909" + ] + }, + { + "affiliation": "Faculty of Built Environment, Eindhoven University of Technology, Eindhoven, The Netherlands", + "ror_ids": [ + "https://ror.org/02c2kyt77" + ] + }, + { + "affiliation": "Federal Research Center of Problems of Chemical Physics and Medicinal Chemistry, Russian Academy of Sciences, Chernogolovka, Moscow Region, Russian Federation", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Department of Accounting, Business School, Al-Ahliyya Amman University, Amman, Jordan", + "ror_ids": [ + "https://ror.org/00xddhq60" + ] + }, + { + "affiliation": "Department of Cancer Immunology, Genentech Inc., South San Francisco, USA", + "ror_ids": [ + "https://ror.org/04gndp242" + ] + }, + { + "affiliation": "Department of Oncology, Oslo University Hospital, Oslo, Norway", + "ror_ids": [ + "https://ror.org/00j9c2840" + ] + }, + { + "affiliation": "Darden School of Business, University of Virginia, Charlottesville, VA, USA", + "ror_ids": [ + "https://ror.org/0153tk833" + ] + }, + { + "affiliation": "Dr. Phillip Frost Department of Dermatology and Cutaneous Surgery, University of Miami Miller School of Medicine, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/02dgjyy92" + ] + }, + { + "affiliation": "Skryabin Institute of Biochemistry and Physiology of Microorganisms, Russian Academy of Sciences, Federal Research Center “Pushchino Scientific Center for Biological Research of the Russian Academy of Sciences”, Pushchino, Moscow region, Russia", + "ror_ids": [ + "https://ror.org/05tc61k56", + "https://ror.org/048zssa22" + ] + }, + { + "affiliation": "Department of Business and Quantitative Studies, University of Naples Parthenope, Naples, Italy", + "ror_ids": [ + "https://ror.org/05pcv4v03" + ] + }, + { + "affiliation": "Department of General Surgery, Northern Jiangsu People’s Hospital, Yangzhou, China", + "ror_ids": [ + "https://ror.org/04gz17b59" + ] + }, + { + "affiliation": "Department of Agriculture, Crop Production and Rural Environment, University of Thessaly, Volos, Greece", + "ror_ids": [ + "https://ror.org/04v4g9h31" + ] + }, + { + "affiliation": "Hiroshima University School of Medicine, Hiroshima, Japan", + "ror_ids": [ + "https://ror.org/03t78wx29" + ] + }, + { + "affiliation": "School of Economics and Management, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Department of Oral Biological & Medical Sciences, Faculty of Dentistry, University of British Columbia, Vancouver, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Botany and Microbiology, Faculty of Science, Al-Azhar University, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/05fnp1145" + ] + }, + { + "affiliation": "Faculty of Engineering and Information Sciences, University of Wollongong in Dubai, Dubai, UAE", + "ror_ids": [ + "https://ror.org/0447ajy94" + ] + }, + { + "affiliation": "Department of Physics, Technion, Israel Institute of Technology, Haifa, Israel", + "ror_ids": [ + "https://ror.org/03qryx823" + ] + }, + { + "affiliation": "Dermatology, and Venereology Department, Faculty of Medicine for Girls, Al-Azhar University, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/05fnp1145" + ] + }, + { + "affiliation": "Polytechnic of Milan, Milan, Italy", + "ror_ids": [ + "https://ror.org/01nffqt88" + ] + }, + { + "affiliation": "Department of Surgery, Complutense University of Madrid, Hospital Clinico “San Carlos”, Madrid, Spain", + "ror_ids": [ + "https://ror.org/04d0ybj29", + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Faculty of Engineering, University of Rome Niccolò Cusano, Rome, Italy", + "ror_ids": [ + "https://ror.org/032c3ae16" + ] + }, + { + "affiliation": "Department of Gastroenterology, Graduate School of Medicine, The University of Tokyo Hospital, Bunkyo-ku, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/022cvpj02" + ] + }, + { + "affiliation": "Division of Forestry and Natural Resources, West Virginia University, Morgantown, WV, USA", + "ror_ids": [ + "https://ror.org/011vxgd24" + ] + }, + { + "affiliation": "Gebze Technical University, Southern Illinois University Edwardsville, Turkey, USA", + "ror_ids": [ + "https://ror.org/04cqs5j56" + ] + }, + { + "affiliation": "International Research Center for Animal Health Breeding, College of Animal Science and Technology, Shihezi University, Shihezi, China", + "ror_ids": [ + "https://ror.org/04x0kvm78" + ] + }, + { + "affiliation": "Department of Experimental Otology, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Waseda University, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/00ntfnx83" + ] + }, + { + "affiliation": "York University, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/05fq50484" + ] + }, + { + "affiliation": "Coastal Sciences Division, Pacific Northwest National Laboratory, Sequim, WA, USA", + "ror_ids": [ + "https://ror.org/05h992307" + ] + }, + { + "affiliation": "University of Bologna, Bologna, Italy", + "ror_ids": [ + "https://ror.org/01111rn36" + ] + }, + { + "affiliation": "Division of Gastroenterology, Icahn School of Medicine at Mount Sinai, New York, NY, USA", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "Department of Clinical Chemistry, University Medical Center, Göttingen, Germany", + "ror_ids": [ + "https://ror.org/021ft0n22" + ] + }, + { + "affiliation": "Department of Tourism and Hospitality Management, RANEPA St. Petersburg (The Branch of the Presidential Academy of National Economy and Public Administration), Saint Petersburg, Russia", + "ror_ids": [ + "https://ror.org/04xnm9a92" + ] + }, + { + "affiliation": "Graduate and Professional Studies in Education, California State University, Sacramento, USA", + "ror_ids": [ + "https://ror.org/03e26wv14" + ] + }, + { + "affiliation": "Department of Psychology, Liverpool John Moores University, Liverpool, UK", + "ror_ids": [ + "https://ror.org/04zfme737" + ] + }, + { + "affiliation": "College of Materials and Textiles, Zhejiang Sci-Tech University, Hangzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03893we55" + ] + }, + { + "affiliation": "Institute of Green Chemistry and Chemical Technology, Jiangsu University, Zhenjiang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03jc41j30" + ] + }, + { + "affiliation": "Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02yrq0923" + ] + }, + { + "affiliation": "Department of Anthropology, University of Manitoba, Winnipeg, Manitoba, Canada", + "ror_ids": [ + "https://ror.org/02gfys938" + ] + }, + { + "affiliation": "Department of Pathology, Warrington & Halton Teaching Hospitals NHS Foundation Trust, Warrington, UK", + "ror_ids": [ + "https://ror.org/00y3snf11" + ] + }, + { + "affiliation": "Universidade de Lisboa, Lisbon, Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86" + ] + }, + { + "affiliation": "Department of Clinical Psychology and Psychotherapy, Babeʂ-Bolyai University, Cluj-Napoca, Romania", + "ror_ids": [ + "https://ror.org/02rmd1t30" + ] + }, + { + "affiliation": "Master’s Program in Biomedical Science, Vanderbilt University, Nashville, TN, USA", + "ror_ids": [ + "https://ror.org/02vm5rt34" + ] + }, + { + "affiliation": "Department of Mathematics and Informatics, Chernivtsi National University, Chernivtsi, Ukraine", + "ror_ids": [ + "https://ror.org/044n25186" + ] + }, + { + "affiliation": "Organisation Européenne pour la Recherche Nucléaire (CERN), Geneva, Switzerland", + "ror_ids": [ + "https://ror.org/01ggx4157" + ] + }, + { + "affiliation": "Peking University First Hospital, Beijing, China", + "ror_ids": [ + "https://ror.org/02z1vqm45" + ] + }, + { + "affiliation": "Department of Communication Studies, University of Portland, Portland, OR, USA", + "ror_ids": [ + "https://ror.org/01q6pmm96" + ] + }, + { + "affiliation": "Department of Psychology, MacEwan University, Edmonton, AB, Canada", + "ror_ids": [ + "https://ror.org/003s89n44" + ] + }, + { + "affiliation": "Electrical Engineering Department, Faculty of Engineering, South Valley University, Qena, Egypt", + "ror_ids": [ + "https://ror.org/00jxshx33" + ] + }, + { + "affiliation": "Faculty of Sciences and Letters, Department of Physics, Istanbul Kultur University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/05jvrwv37" + ] + }, + { + "affiliation": "Institute for Brain Research and Rehabilitation, and Guangdong Key Laboratory of Mental Health and Cognitive Science, South China Normal University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/01kq0pv72" + ] + }, + { + "affiliation": "Department of Finance, Performance & Marketing, Teesside University International Business School, Teesside University, Middlesbrough, Tees Valley, UK", + "ror_ids": [ + "https://ror.org/03z28gk75" + ] + }, + { + "affiliation": "Institut de Biologie Valrose, Université Côte d’Azur, CNRS, Nice, Inserm, France", + "ror_ids": [ + "https://ror.org/019tgvf94", + "https://ror.org/03bnma344" + ] + }, + { + "affiliation": "Sexual and Reproductive Medicine Program (Urology Service), Memorial Sloan Kettering Cancer Center, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02yrq0923" + ] + }, + { + "affiliation": "Medical College, Yan’an University, Yan’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/01dyr7034" + ] + }, + { + "affiliation": "Departamento de Ecosistemas Agroforestales, Escuela Técnica Superior de Ingeniería Agronómica Y del Medio Natural (ETSIAMN), Universitat Politècnica de València (UPV), Valencia, Spain", + "ror_ids": [ + "https://ror.org/01460j859" + ] + }, + { + "affiliation": "Medical University of Plovdiv, Plovdiv, Bulgaria", + "ror_ids": [ + "https://ror.org/02kzxd152" + ] + }, + { + "affiliation": "National Yang Ming Chiao Tung University, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/00se2k293" + ] + }, + { + "affiliation": "MEPhI National Research Nuclear University, Moscow, Russia", + "ror_ids": [ + "https://ror.org/04w8z7f34" + ] + }, + { + "affiliation": "Department of Economics and Management, University of Trento, Trento, TN, Italy", + "ror_ids": [ + "https://ror.org/05trd4x28" + ] + }, + { + "affiliation": "School of Material and Energy, Yunnan University, Kunming, China", + "ror_ids": [ + "https://ror.org/0040axw97" + ] + }, + { + "affiliation": "School of Medicine, Department of Pulmonary Diseases, Kocaeli University, Kocaeli, Turkey", + "ror_ids": [ + "https://ror.org/0411seq30" + ] + }, + { + "affiliation": "Department of Family Medicine, National University Health System and Yong Loo Lin School of Medicine, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/05tjjsh18" + ] + }, + { + "affiliation": "Zoology/Parasitology, Ruhr-Universität Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Department of Experimental Therapeutics, National Cancer Center Hospital, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/03rm3gk43" + ] + }, + { + "affiliation": "Department of Medical Oncology, Amsterdam University Medical Centers, University of Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463", + "https://ror.org/05grdyy37" + ] + }, + { + "affiliation": "Clinical Development, Norgine, Harefield, Uxbridge, UK", + "ror_ids": [ + "https://ror.org/046zgtw08" + ] + }, + { + "affiliation": "Department of Civil Engineering, College of Engineering, Universiti Tenaga Nasional, Kajang, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/03kxdn807" + ] + }, + { + "affiliation": "Academic Department of Chemistry and Biology, UTFPR, Curitiba, PR, Brazil", + "ror_ids": [ + "https://ror.org/002v2kq79" + ] + }, + { + "affiliation": "Egyptian Petroleum Research Institute, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/044panr52" + ] + }, + { + "affiliation": "Sydney Medical School, University of Sydney, Sydney, New South Wales, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "ETSI Informática, Universidad de Sevilla, Sevilla, Spain", + "ror_ids": [ + "https://ror.org/03yxnpp24" + ] + }, + { + "affiliation": "Nordic Africa Institute, Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/05q84se63" + ] + }, + { + "affiliation": "Shandong Institute of Parasitic Diseases, Shandong First Medical University & Shandong Academy of Medical Sciences, Jining City, Shandong Province, China", + "ror_ids": [ + "https://ror.org/05jb9pq57" + ] + }, + { + "affiliation": "Radiation Oncology Department, Iridium Network, Antwerp, Belgium", + "ror_ids": [ + "https://ror.org/008x57b05" + ] + }, + { + "affiliation": "Department of Civil Engineering, Faculty of Engineering, Institute of Advanced Technology, Arak University, Arak, Iran", + "ror_ids": [ + "https://ror.org/00ngrq502" + ] + }, + { + "affiliation": "Zentrum für Augenheilkunde, Uniklinik Köln, Köln, Deutschland", + "ror_ids": [ + "https://ror.org/05mxhda18" + ] + }, + { + "affiliation": "Wastewater Technology Division, CSIR-National Environmental Engineering Research Institute, Nagpur Maharashtra, India", + "ror_ids": [ + "https://ror.org/021r5ns39" + ] + }, + { + "affiliation": "Tribology Research Institute, Key Laboratory for Advanced Technology of Materials of Ministry of Education, Southwest Jiaotong University, Chengdu, China", + "ror_ids": [ + "https://ror.org/00hn7w693" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Indian Institute of Information Technology, Kottayam, India", + "ror_ids": [ + "https://ror.org/02z8z1589" + ] + }, + { + "affiliation": "Department of Psychology, National Taiwan University, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05bqach95" + ] + }, + { + "affiliation": "Sabuncuoğlu Şerefeddin Training and Research Hospital, Medical Biochemistry, Amasya University, Amasya, Turkey", + "ror_ids": [ + "https://ror.org/00sbx0y13" + ] + }, + { + "affiliation": "Department of Occupational Therapy, College of S/W Digital Healthcare Convergence, Yonsei University, Wonju, South Korea", + "ror_ids": [ + "https://ror.org/01wjejq96" + ] + }, + { + "affiliation": "International Centre for Theoretical Sciences (ICTS-TIFR), Bangalore, India", + "ror_ids": [ + "https://ror.org/0015qa126" + ] + }, + { + "affiliation": "Department of Cell and Chemical Biology, Leiden University Medical Center, Leiden, the Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17" + ] + }, + { + "affiliation": "Experimental Physics Division, Atomic Energy Centre, Dhaka, Bangladesh", + "ror_ids": [ + "https://ror.org/01bw5rm87" + ] + }, + { + "affiliation": "Department of Plant Physiology, Institute of Agricultural Sciences, Banaras Hindu University, Varanasi, India", + "ror_ids": [ + "https://ror.org/04cdn2797" + ] + }, + { + "affiliation": "Department of Environmental Engineering, Gebze Technical University, Kocaeli, Turkey", + "ror_ids": [ + "https://ror.org/01sdnnq10" + ] + }, + { + "affiliation": "Klinik für Nuklearmedizin, Universitätsklinikum Ulm, Ulm, Deutschland", + "ror_ids": [ + "https://ror.org/05emabm63" + ] + }, + { + "affiliation": "Department of Psychiatry and Psychotherapy, University Hospital, LMU Munich, Munich, Germany", + "ror_ids": [ + "https://ror.org/02jet3w32" + ] + }, + { + "affiliation": "Van Swinderen Institute, University of Groningen, Groningen, Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Internal Medicine, Division of Electrophysiology, School of Medicine, Virginia Commonwealth University, Richmond, VA, USA", + "ror_ids": [ + "https://ror.org/02nkdxk79" + ] + }, + { + "affiliation": "Department of Radiology & Nuclear Medicine, Erasmus MC, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/018906e22" + ] + }, + { + "affiliation": "Iran University of Science and Technology (IUST), Tehran, Iran", + "ror_ids": [ + "https://ror.org/01jw2p796" + ] + }, + { + "affiliation": "Royal National Ear, Nose, Throat and Eastman Dental Hospital, University College Hospitals London, London, UK", + "ror_ids": [ + "https://ror.org/00wrevg56", + "https://ror.org/055jskg35" + ] + }, + { + "affiliation": "Discipline of Pharmacy, Faculty of Health, University of Canberra, Bruce, ACT, Australia", + "ror_ids": [ + "https://ror.org/04s1nv328" + ] + }, + { + "affiliation": "Louisiana State University School of Medicine, New Orleans, LA, USA", + "ror_ids": [ + "https://ror.org/05ect4e57" + ] + }, + { + "affiliation": "Bahrami Children Hospital, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Canadian Quantum Research Center, Vernon, Canada", + "ror_ids": [ + "https://ror.org/027axbt27" + ] + }, + { + "affiliation": "Faculty of Medicine, Saint Joseph University of Beirut, Beirut, Lebanon", + "ror_ids": [ + "https://ror.org/044fxjq88" + ] + }, + { + "affiliation": "Department of Science Education, University of Copenhagen, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/035b05819" + ] + }, + { + "affiliation": "Institute for Alpine Environment, Eurac Research, Bozen/Bolzano, Italy", + "ror_ids": [ + "https://ror.org/01xt1w755" + ] + }, + { + "affiliation": "School of Architecture and Planning, Hunan University, Changsha, China", + "ror_ids": [ + "https://ror.org/05htk5m33" + ] + }, + { + "affiliation": "Cancer Research Program, Rajiv Gandhi Centre for Biotechnology (RGCB), Thiruvananthapuram, India", + "ror_ids": [ + "https://ror.org/05sdqd547" + ] + }, + { + "affiliation": "Computer Science and Engineering, Indian Institute of Technology Indore, Indore, Madhya Pradesh, India", + "ror_ids": [ + "https://ror.org/01hhf7w52" + ] + }, + { + "affiliation": "Division of Emergency Medicine, Department of Pediatrics, Boston Children’s Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/00dvg7y05" + ] + }, + { + "affiliation": "Microsoft Spain & IE Business School – IE University, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02jjdwm75" + ] + }, + { + "affiliation": "MetroWest Medical Center, Framingham, MA, USA", + "ror_ids": [ + "https://ror.org/05bpnne23" + ] + }, + { + "affiliation": "University of California, Santa Cruz, USA", + "ror_ids": [ + "https://ror.org/03s65by71" + ] + }, + { + "affiliation": "Department of Botany, Government Degree College, Ramban, Jammu, India", + "ror_ids": [ + "https://ror.org/032xfst36" + ] + }, + { + "affiliation": "Department of Soil and Environmental Science, University of Agriculture Faisalabad, Faisalabad, Pakistan", + "ror_ids": [ + "https://ror.org/054d77k59" + ] + }, + { + "affiliation": "College of Civil and Transportation Engineering, Hohai University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01wd4xt90" + ] + }, + { + "affiliation": "Plant Biotechnology Department, Atta-ur-Rahman School of Applied Biosciences, National University of Sciences & Technology, Islamabad, Pakistan", + "ror_ids": [ + "https://ror.org/03w2j5y17" + ] + }, + { + "affiliation": "Shandong Provincial Key Laboratory of Animal Resistance Biology, Collaborative Innovation Center of Cell Biology in Universities of Shandong, Center for Cell Structure and Function, Institute of Biomedical Science, College of Life Sciences, Shandong Normal University, , China", + "ror_ids": [ + "https://ror.org/01wy3h363" + ] + }, + { + "affiliation": "Kellogg School of Management, Northwestern University, Evanston, IL, USA", + "ror_ids": [ + "https://ror.org/000e0be47" + ] + }, + { + "affiliation": "Copenhagen Center for Glycomics, Department of Cellular and Molecular Medicine, University of Copenhagen, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/035b05819" + ] + }, + { + "affiliation": "Division of Pulmonary Medicine, Lausanne University Hospital (CHUV), University of Lausanne, Lausanne, Switzerland", + "ror_ids": [ + "https://ror.org/019whta54" + ] + }, + { + "affiliation": "Children’s Hospital of Los Angeles, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/00412ts95" + ] + }, + { + "affiliation": "School of Health Sciences, University of Greenwich, London, UK", + "ror_ids": [ + "https://ror.org/00bmj0a71" + ] + }, + { + "affiliation": "Bernhard Nocht Institute for Tropical Medicine, Hamburg, Germany", + "ror_ids": [ + "https://ror.org/01evwfd48" + ] + }, + { + "affiliation": "Department of Biology and South Texas Center for Emerging Infectious Diseases, The University of Texas at San Antonio, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/01kd65564" + ] + }, + { + "affiliation": "Department of Biochemistry and Biophysics, Stockholm University, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/05f0yaq80" + ] + }, + { + "affiliation": "Computational Sciences and Engineering Division (CSED), Oak Ridge National Laboratory, Oak Ridge, TN, USA", + "ror_ids": [ + "https://ror.org/01qz5mb56" + ] + }, + { + "affiliation": "Laboratório de Biotecnologia de Microrganismos, Universidade Federal de São João Del-Rei, Divinópolis, MG, Brazil", + "ror_ids": [ + "https://ror.org/03vrj4p82" + ] + }, + { + "affiliation": "Department of Epidemiology, University of Colorado, Anschutz Medical Campus, Denver, CO, USA", + "ror_ids": [ + "https://ror.org/03wmf1y16" + ] + }, + { + "affiliation": "Emeritus Chaplain, Women’s and Children’s Hospital, Adelaide, Australia", + "ror_ids": [ + "https://ror.org/03kwrfk72" + ] + }, + { + "affiliation": "Department of Chemistry, University of the Free State, Bloemfontein, South Africa", + "ror_ids": [ + "https://ror.org/009xwd568" + ] + }, + { + "affiliation": "Division of Cardiology, Duke University Medical Center, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/03njmea73" + ] + }, + { + "affiliation": "School of Physical Education and Health, Hunan University of Technology and Business, Changsha, China", + "ror_ids": [ + "https://ror.org/04j3vr751" + ] + }, + { + "affiliation": "Integrative Community Therapy Methodology/Brazilian Association of Social Psychiatry, Professor Emeritus of the Federal University of Ceará, Fortaleza, Brazil", + "ror_ids": [ + "https://ror.org/03srtnf24" + ] + }, + { + "affiliation": "Fernandes Figueira Institute, Oswaldo Cruz Foundation - FIOCRUZ, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/04jhswv08" + ] + }, + { + "affiliation": "Inserm, UMR 1304, GETBO, Univ Brest, CHRU Brest, Brest, France", + "ror_ids": [ + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Department of Basic Science, Faculty of Computers and Informatics, Suez Canal University, Ismailia, Egypt", + "ror_ids": [ + "https://ror.org/02m82p074" + ] + }, + { + "affiliation": "Department of Breast and Thyroid Surgery, Sichuan Provincial Hospital for Women and Children (Affiliated Women and Children’s Hospital of Chengdu Medical College), Chengdu, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01c4jmp52" + ] + }, + { + "affiliation": "School of Energy and Power Engineering, Beihang University, Beijing, China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Institute of Psychological Medicine and Clinical Neuroscience, Cardiff University, University Hospital of Wales, Cardiff, UK", + "ror_ids": [ + "https://ror.org/04fgpet95" + ] + }, + { + "affiliation": "Gujarat Technological University, Chandkheda, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/059x8vm09" + ] + }, + { + "affiliation": "China Business Studies Initiative (CBSI), School of Management, University of San Francisco, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/029m7xn54" + ] + }, + { + "affiliation": "Division of Gastroenterology, Department of Medicine, University of Alberta, Edmonton, Canada", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Universitätsklinikum Essen, Essen, Deutschland", + "ror_ids": [ + "https://ror.org/02na8dn90" + ] + }, + { + "affiliation": "Department of Electronics and Communications Engineering, Thiagarajar College of Engineering, Madurai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/01rgfv364" + ] + }, + { + "affiliation": "Department of Internal Medicine-Oncology, Shandong Cancer Hospital and Institute, Shandong First Medical University, Shandong Academy of Medical Sciences, Jinan, China", + "ror_ids": [ + "https://ror.org/05jb9pq57" + ] + }, + { + "affiliation": "Shandong Provincial Key Laboratory of Eco-environmental Science for Yellow River Delta, Binzhou University, Binzhou, Shandong, China", + "ror_ids": [ + "https://ror.org/05frpfj73" + ] + }, + { + "affiliation": "Department of Molecular Microbiology, School of Biotechnology, Madurai Kamaraj University, Madurai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/04c8e9019" + ] + }, + { + "affiliation": "Hangzhou Institute of Innovative Medicine, College of Pharmaceutical Sciences, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "School of Business Management, Bandung Institute of Technology, Bandung, Indonesia", + "ror_ids": [ + "https://ror.org/00apj8t60" + ] + }, + { + "affiliation": "Sorbonne Université, CNRS, LIP6, Paris, France", + "ror_ids": [ + "https://ror.org/02en5vm52" + ] + }, + { + "affiliation": "Master of Islamic Study, Universitas Muhammadiyah Yogyakarta, Yogyakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03anrkt33" + ] + }, + { + "affiliation": "Vertebrate Biology Group, Zoology Department, Faculty of Science, Ain Shams University, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/00cb9w016" + ] + }, + { + "affiliation": "Computer Engineering and IT Department, Shiraz University of Technology, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/04bxa3v83" + ] + }, + { + "affiliation": "Department of Land Surveying and Geo-Informatics, The Hong Kong Polytechnic University, Hong Kong, China", + "ror_ids": [ + "https://ror.org/0030zas98" + ] + }, + { + "affiliation": "Silver School of Social Work, New York University, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "University of Lisbon (Centro Interuniversitário de História das Ciências e da Tecnologia), Lisbon, Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86", + "https://ror.org/03yhnhz23" + ] + }, + { + "affiliation": "Advanced Structural Engineering Laboratory, Department of Structural Engineering, Faculty of Civil Engineering, Ho Chi Minh City Open University, Ho Chi Minh City, Vietnam", + "ror_ids": [ + "https://ror.org/00tean533" + ] + }, + { + "affiliation": "Department of Biochemistry, University of Washington, Seattle, WA, USA", + "ror_ids": [ + "https://ror.org/00cvxb145" + ] + }, + { + "affiliation": "Post-graduate Program in Health and Nutrition, Nutrition School, Federal University of Ouro Preto, Ouro Preto, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/056s65p46" + ] + }, + { + "affiliation": "Be the Match, National Marrow Donor Program, Minneapolis, MN, USA", + "ror_ids": [ + "https://ror.org/016cke005" + ] + }, + { + "affiliation": "Department of Statistics, University of Pittsburgh, Pittsburgh, PA, USA", + "ror_ids": [ + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Emergency Medicine Department, Muhimbili National Hospital, Dar es Salaam, Tanzania", + "ror_ids": [ + "https://ror.org/02xvk2686" + ] + }, + { + "affiliation": "Department of Information Management and Electronic Commerce, Shanghai University of Finance and Economics, Shanghai, China", + "ror_ids": [ + "https://ror.org/00wtvfq62" + ] + }, + { + "affiliation": "CAS Center for Excellence in Comparative Planetology, Chinese Academy of Sciences, Hefei, China", + "ror_ids": [ + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "Institute of Mechanics, Technische Universität Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/03v4gjf40" + ] + }, + { + "affiliation": "S.P. Timoshenko Institute of Mechanics, National Academy of Science of Ukraine, Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/05fm1bt30", + "https://ror.org/00je4t102" + ] + }, + { + "affiliation": "Medical College of Georgia, Augusta University, Augusta, GA, USA", + "ror_ids": [ + "https://ror.org/012mef835" + ] + }, + { + "affiliation": "Department of Speech and Language Therapy, Faculty of Health Sciences, Biruni University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/01nkhmn89" + ] + }, + { + "affiliation": "Departments of Medicine and Physiology, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Department of Physics, Sri Malolan College of Arts and Science, University of Madras, Chengalpattu, India", + "ror_ids": [ + "https://ror.org/04jmt9361" + ] + }, + { + "affiliation": "School of Sciences, São Paulo State University – UNESP, Bauru, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Coordinación de Calidad de Insumos y Laboratorios Especializados, Instituto Mexicano del Seguro Social, Mexico City, Mexico", + "ror_ids": [ + "https://ror.org/03xddgg98" + ] + }, + { + "affiliation": "Department of Educational Administration and Policy, Faculty of Education, The Chinese University of Hong Kong, Hong Kong SAR, China", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Key Laboratory of Health Technology Assessment of National Health Commission, School of Public Health, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Institute of Biological, Environmental and Rural Sciences, Aberystwyth University, Aberystwyth, Ceredigion, UK", + "ror_ids": [ + "https://ror.org/015m2p889" + ] + }, + { + "affiliation": "Fishery Resources Assessment, Economics and Extension Division (FRAEED), ICAR-Central Marine Fisheries Research Institute, Kochi, Ernakulam North (P.O.), India", + "ror_ids": [ + "https://ror.org/02jw8vr54" + ] + }, + { + "affiliation": "Lerner Research and Glickman Urology and Kidney Institutes, Cleveland Clinic, Cleveland, OH, USA", + "ror_ids": [ + "https://ror.org/03xjacd83" + ] + }, + { + "affiliation": "Master of Business Administration Program, Brawijaya University, Malang, Indonesia", + "ror_ids": [ + "https://ror.org/01wk3d929" + ] + }, + { + "affiliation": "Malmö University, Malmö, Sweden", + "ror_ids": [ + "https://ror.org/05wp7an13" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, Montana State University, Bozeman, MT, USA", + "ror_ids": [ + "https://ror.org/02w0trx84" + ] + }, + { + "affiliation": "Department of Mathematics, New York University in Abu Dhabi, Saadiyat Island, Abu Dhabi, United Arab Emirates", + "ror_ids": [ + "https://ror.org/00e5k0821" + ] + }, + { + "affiliation": "Department of Medical Area, University of Udine, Udine, Italy", + "ror_ids": [ + "https://ror.org/05ht0mh31" + ] + }, + { + "affiliation": "Transportation Research Institute (IMOB) - Hasselt University, Hasselt, Belgium", + "ror_ids": [ + "https://ror.org/04nbhqj75" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Madhav Institute of Technology and Science, Gwalior, India", + "ror_ids": [ + "https://ror.org/01pj5v964" + ] + }, + { + "affiliation": "ECE, University of New Mexico, Albuquerque, NM, USA", + "ror_ids": [ + "https://ror.org/05fs6jp91" + ] + }, + { + "affiliation": "Peter Munk Cardiac Centre, University Health Network, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/042xt5161" + ] + }, + { + "affiliation": "Department of Economics, National University of Life and Environmental Sciences of Ukraine, Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/0441cbj57" + ] + }, + { + "affiliation": "Department of Pediatrics, National Taiwan University Hospital, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/03nteze27" + ] + }, + { + "affiliation": "Institut für Deutsche und Niederländische Philologie, Freie Universität Berlin, Berlin, Deutschland", + "ror_ids": [ + "https://ror.org/046ak2485" + ] + }, + { + "affiliation": "College of Computer Science and Technology, Nanjing University of Aeronautics and Astronautics, Nanjing, China", + "ror_ids": [ + "https://ror.org/01scyh794" + ] + }, + { + "affiliation": "Department of Applied Mathematics, USoVSAS, Gautam Buddha University, Greater Noida, India", + "ror_ids": [ + "https://ror.org/026cfwd52" + ] + }, + { + "affiliation": "Dipartimento di Medicina e Chirurgia, Università degli Studi di Milano Bicocca, Monza, Italia", + "ror_ids": [ + "https://ror.org/01ynf4891" + ] + }, + { + "affiliation": "Department of General Surgery, The First Affiliated Hospital of Zhejiang Chinese Medical University (Zhejiang Provincial Hospital of Chinese Medicine), Hangzhou, China", + "ror_ids": [ + "https://ror.org/04epb4p87" + ] + }, + { + "affiliation": "Department of Natural Resources and Desert Studies, Yazd University, Yazd, Iran", + "ror_ids": [ + "https://ror.org/02x99ac45" + ] + }, + { + "affiliation": "School of Physics, Peking University, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Department of Advanced Biomedical Sciences, University of Naples “Federico II”, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Department of Semiconductor and Electro-optical Technology, Minghsin University of Science and Technology, Hsinchu, Taiwan", + "ror_ids": [ + "https://ror.org/054etzm63" + ] + }, + { + "affiliation": "Penza State Agrarian University, Penza, Russia", + "ror_ids": [ + "https://ror.org/015jqsk41" + ] + }, + { + "affiliation": "Center of Pharmaceutical Engineering (PVZ), Technische Universität Braunschweig, Braunschweig, Germany", + "ror_ids": [ + "https://ror.org/010nsgg66" + ] + }, + { + "affiliation": "Program in Trauma, The R Adams Cowley Shock Trauma Center, University of Maryland School of Medicine, Baltimore, MD, USA", + "ror_ids": [ + "https://ror.org/04rq5mt64" + ] + }, + { + "affiliation": "Department of Biomedical Sciences for Health, Università degli Studi di Milano, Milan, Italy", + "ror_ids": [ + "https://ror.org/00wjc7c48" + ] + }, + { + "affiliation": "Department of Nutrition, University of North Carolina at Chapel Hill, Chapel Hill, NC, USA", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Division of General Internal Medicine, Department of Internal Medicine, University of Iowa, Iowa City, USA", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "University of Sciences Po Paris, Paris, France", + "ror_ids": [ + "https://ror.org/05fe7ax82" + ] + }, + { + "affiliation": "Microbiology, Queen’s Medical Centre, Nottingham, UK", + "ror_ids": [ + "https://ror.org/03ap6wx93" + ] + }, + { + "affiliation": "Epigenomics and Mechanisms Branch, International Agency for Research on Cancer, Lyon, France", + "ror_ids": [ + "https://ror.org/00v452281" + ] + }, + { + "affiliation": "Division of Cardiology, Department of Internal Medicine, Incheon St. Mary’s Hospital, The Catholic University of Korea, Seoul, Korea", + "ror_ids": [ + "https://ror.org/01fpnj063", + "https://ror.org/017gxrm85" + ] + }, + { + "affiliation": "Institute of Automation, University of Bremen, Bremen, Germany", + "ror_ids": [ + "https://ror.org/04ers2y35" + ] + }, + { + "affiliation": "Southampton Business School, University of Southampton, Southampton, UK", + "ror_ids": [ + "https://ror.org/01ryk1543" + ] + }, + { + "affiliation": "Department of Political Science, University of Pittsburgh, Pittsburgh, PA, USA", + "ror_ids": [ + "https://ror.org/01an3r305" + ] + }, + { + "affiliation": "Laboratory of Aquatic Organisms, Department of Biological Sciences, Universidade Estadual de Santa Cruz, Ilhéus, Bahia, Brazil", + "ror_ids": [ + "https://ror.org/01zwq4y59" + ] + }, + { + "affiliation": "School of Biomedical Engineering, Anhui Medical University, Hefei, China", + "ror_ids": [ + "https://ror.org/03xb04968" + ] + }, + { + "affiliation": "Department of Public Health, Sefako Makgatho Health Sciences University, Pretoria, South Africa", + "ror_ids": [ + "https://ror.org/003hsr719" + ] + }, + { + "affiliation": "Department of Neurosurgery, Xinhua Hospital Affiliated to Shanghai JiaoTong University School of Medicine, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04dzvks42", + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Department of Endoscopy, Respiratory Endoscopy Division, National Cancer Center Hospital, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/03rm3gk43" + ] + }, + { + "affiliation": "Faculty of Agriculture, Department of Field Crops, Tokat Gaziosmanpasa University, Tokat, Turkey", + "ror_ids": [ + "https://ror.org/01rpe9k96" + ] + }, + { + "affiliation": "Institute for Medical Microbiology, Immunology and Hygiene, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "Department of Computing and Numerical Analysis, University of Córdoba, Córdoba, Spain", + "ror_ids": [ + "https://ror.org/05yc77b46" + ] + }, + { + "affiliation": "College of Fisheries and Ocean Sciences, University of Alaska Fairbanks, Fairbanks, AK, USA", + "ror_ids": [ + "https://ror.org/01j7nq853" + ] + }, + { + "affiliation": "Safe Relationships and Communities Research Group, University of South Australia, Adelaide, South Australia, Australia", + "ror_ids": [ + "https://ror.org/01p93h210" + ] + }, + { + "affiliation": "E-Learning Department, Virtual School, Shiraz University of Medical Sciences, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/01n3s4692" + ] + }, + { + "affiliation": "Department of Oral Surgery and Pathology, School of Dentistry, Federal University of Minas Gerais, Belo Horizonte, MG, Brazil", + "ror_ids": [ + "https://ror.org/0176yjw32" + ] + }, + { + "affiliation": "Department of Chemistry, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Institut of Mathematics, University of Würzburg, Würzburg, Germany", + "ror_ids": [ + "https://ror.org/00fbnyb24" + ] + }, + { + "affiliation": "Department of Child and Adolescent Psychiatry, Charité Universitätsmedizin Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/001w7jn25" + ] + }, + { + "affiliation": "Nephrology Department, The First Affiliated Hospital of Jinan University, Jinan University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/05d5vvz89" + ] + }, + { + "affiliation": "Department of Neurology, Hope Center for Neurological Disorders, Knight Alzheimer Disease Research Center, Washington University School of Medicine, St. Louis, MO, USA", + "ror_ids": [ + "https://ror.org/01yc7t268", + "https://ror.org/035nzyk88" + ] + }, + { + "affiliation": "Computer Science Department, Engineering Research Institute of Aragon, Universidad de Zaragoza, Zaragoza, Spain", + "ror_ids": [ + "https://ror.org/012a91z28" + ] + }, + { + "affiliation": "Department of Biotechnology, Andhra University, Visakhapatnam, Andhra Pradesh, India", + "ror_ids": [ + "https://ror.org/049skhf47" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, Faculty of Applied Medical Sciences, Umm Al- Qura University, Makkah, Saudi Arabia", + "ror_ids": [ + "https://ror.org/01xjqrm90" + ] + }, + { + "affiliation": "Geriatric Perioperative Care, North Bristol NHS Trust, Bristol, UK", + "ror_ids": [ + "https://ror.org/036x6gt55" + ] + }, + { + "affiliation": "The First Clinical College, Wuhan University, Wuhan, China", + "ror_ids": [ + "https://ror.org/033vjfk17" + ] + }, + { + "affiliation": "Department of Electrical Engineering, Faculty of Engineering, Egyptian-Russian University, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/029me2q51" + ] + }, + { + "affiliation": "CSIRO Agriculture and Food, Canberra, ACT, Australia", + "ror_ids": [ + "https://ror.org/03fy7b149", + "https://ror.org/03n17ds51" + ] + }, + { + "affiliation": "Yale College, New Haven, CT, USA", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "Department of Radiology, Shengjing Hospital, China Medical University, Shenyang, China", + "ror_ids": [ + "https://ror.org/032d4f246" + ] + }, + { + "affiliation": "Department of Biostatistics and Bioinformatics, Emory University, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Department of Applied Mathematics, Israeli Institute for Biological Research, Ness-Ziona, Israel", + "ror_ids": [ + "https://ror.org/05atez085" + ] + }, + { + "affiliation": "Department of Physics, Advanced Teacher’s Training College, University of Yaoundé I, Yaoundé, Cameroon", + "ror_ids": [ + "https://ror.org/022zbs961" + ] + }, + { + "affiliation": "Department of Pediatric Surgery, Huai’an Maternal and Children Health Hospital, Huai’an, China", + "ror_ids": [ + "https://ror.org/000aph098" + ] + }, + { + "affiliation": "College of Korean Medicine, Dongshin University, Naju, Jeollanam-Do, Republic of Korea", + "ror_ids": [ + "https://ror.org/01thhk923" + ] + }, + { + "affiliation": "Department of Neurology, Mainz Comprehensive Epilepsy and Sleep Medicine Center, University Medical Center of the Johannes Gutenberg University Mainz, Mainz, Germany", + "ror_ids": [ + "https://ror.org/00q1fsf04" + ] + }, + { + "affiliation": "Deparment of Medical Biochemistry, Faculty of Medicine, Aksaray University, Aksaray, Türkiye", + "ror_ids": [ + "https://ror.org/026db3d50" + ] + }, + { + "affiliation": "Service Science and Software Engineering Lab, University of the Philippines Diliman, Quezon City, Metro Manila, Philippines", + "ror_ids": [ + "https://ror.org/03tbh6y23" + ] + }, + { + "affiliation": "Department of Civil and Environmental Engineering, Universidad de La Costa, Barranquilla, Colombia", + "ror_ids": [ + "https://ror.org/01v5nhr20" + ] + }, + { + "affiliation": "Central China Normal University, Wuhan, China", + "ror_ids": [ + "https://ror.org/03x1jna21" + ] + }, + { + "affiliation": "Aircraft and Propulsion Laboratory, Ningbo Institute of Technology, Beihang University, Ningbo, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Department of Cardiology, Beijing Anzhen Hospital, Capital Medical University, Beijing, China", + "ror_ids": [ + "https://ror.org/013xs5b60", + "https://ror.org/02h2j1586" + ] + }, + { + "affiliation": "School of Economy, Yunnan University, Kunming, China", + "ror_ids": [ + "https://ror.org/0040axw97" + ] + }, + { + "affiliation": "Division of Pediatric Cardiology, University of Southern California, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "Department of Chemistry, Wayne State University, Detroit, MI, USA", + "ror_ids": [ + "https://ror.org/01070mq45" + ] + }, + { + "affiliation": "Postgraduate Program in Agricultural Sciences, Federal University of Piauí, Bom Jesus, Brazil", + "ror_ids": [ + "https://ror.org/00kwnx126" + ] + }, + { + "affiliation": "Universidad Nacional del Altiplano, UNA, Escuela Profesional de Ingeniería Topográfica y Agrimensura, Puno, Peru", + "ror_ids": [ + "https://ror.org/03kqcyw85" + ] + }, + { + "affiliation": "Fundacion ConVida, Universidad Nacional Abierta y a Distancia, UNAD, Medellin, Colombia", + "ror_ids": [ + "https://ror.org/047179s14" + ] + }, + { + "affiliation": "Abteilung Präventiv- und Sportmedizin, Institut für Arbeits‑, Sozial- und Umweltmedizin, Goethe-Universität Frankfurt am Main, Frankfurt am Main, Deutschland", + "ror_ids": [ + "https://ror.org/04cvxnb49" + ] + }, + { + "affiliation": "Rīga Stradiņš University, Riga, Latvia", + "ror_ids": [ + "https://ror.org/03nadks56" + ] + }, + { + "affiliation": "Department of Pharmacology, University of Virginia, Charlottesville, VA, USA", + "ror_ids": [ + "https://ror.org/0153tk833" + ] + }, + { + "affiliation": "Faculty of Agriculture, Majoring in Biotechnology, Menoufia University, Shibin el Kom, Egypt", + "ror_ids": [ + "https://ror.org/05sjrb944" + ] + }, + { + "affiliation": "Faculty of Pharmacy, Universitas Indonesia, Depok, Indonesia", + "ror_ids": [ + "https://ror.org/0116zj450" + ] + }, + { + "affiliation": "Centro de Neumología Pediátrica, San Juan, PR, USA", + "ror_ids": [ + "https://ror.org/05at36m36" + ] + }, + { + "affiliation": "United States Naval Academy, Annapolis, Maryland, USA", + "ror_ids": [ + "https://ror.org/00znex860" + ] + }, + { + "affiliation": "Analysis and Testing Center of Nanjing Normal University, Nanjing Normal University, Nanjing, China", + "ror_ids": [ + "https://ror.org/036trcv74" + ] + }, + { + "affiliation": "Management Department, Sri Krishnadevaraya University, Anantapur, Andhra Pradesh, India", + "ror_ids": [ + "https://ror.org/02fyxjb45" + ] + }, + { + "affiliation": "Wolfson Institute of Population Health, Queen Mary University of London, London, England, UK", + "ror_ids": [ + "https://ror.org/026zzn846" + ] + }, + { + "affiliation": "Jiangsu Key Laboratory for Biomaterials and Devices, School of Biological Science and Medical Engineering, Southeast University, Nanjing, P. R. China", + "ror_ids": [ + "https://ror.org/04ct4d772" + ] + }, + { + "affiliation": "Fakultas Keguruan Dan Ilmu Pendidikan, Universitas Muhammadiyah Surakarta, Surakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03cnmz153" + ] + }, + { + "affiliation": "Department of Chemistry and Physics, Saint Mary’s College, Notre Dame, USA", + "ror_ids": [ + "https://ror.org/02r839n55" + ] + }, + { + "affiliation": "Resurrection Medical Center, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/029dttz57" + ] + }, + { + "affiliation": "Nanophotonics, Debye Institute for Nanomaterials Science, Utrecht University, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "Institute of Infection and Immunity, Translational Medicine Institute, Xi’an Jiaotong University Health Science Center, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/017zhmm22" + ] + }, + { + "affiliation": "School of Chemical Engineering, College of Engineering, Sungkyunkwan University, Suwon, Republic of Korea", + "ror_ids": [ + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Department of Statistical Sciences, University of Rome La Sapienza, Rome, Italy", + "ror_ids": [ + "https://ror.org/02be6w209" + ] + }, + { + "affiliation": "Department of Civil Engineering, National Central University, Jhongli, Taiwan (R.O.C.)", + "ror_ids": [ + "https://ror.org/00944ve71" + ] + }, + { + "affiliation": "School of Atmospheric Sciences and Key Laboratory of Mesoscale Severe Weather/Ministry of Education, Nanjing University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "Division of Health System Science, Department of Medicine, University of Massachusetts Chan Medical School, Worcester, MA, USA", + "ror_ids": [ + "https://ror.org/0464eyp60" + ] + }, + { + "affiliation": "NCR Biotech Science Cluster, Translational Health Science and Technology Institute, Faridabad, India", + "ror_ids": [ + "https://ror.org/01qjqvr92" + ] + }, + { + "affiliation": "Department of Dermatology, Chang Gung Memorial Hospital and College of Medicine, Chang Gung University, Taoyuan City, Taiwan", + "ror_ids": [ + "https://ror.org/00d80zx46", + "https://ror.org/00fk9d670" + ] + }, + { + "affiliation": "School of Biomedical Sciences, The University of Western Australia, Crawley, WA, Australia", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "Melbourne School of Psychological Sciences, Faculty of Medicine, Dentistry and Health Sciences, University of Melbourne, Parkville, VIC, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Department of Thoracic and Cardiovascular Surgery, University of Ulsan College of Medicine, Asan Medical Center, Seoul, Korea", + "ror_ids": [ + "https://ror.org/03s5q0090", + "https://ror.org/02c2f8975" + ] + }, + { + "affiliation": "DKFZ Hector Cancer Institute at the University Medical Center Mannheim, Mannheim, Germany", + "ror_ids": [ + "https://ror.org/05sxbyd35" + ] + }, + { + "affiliation": "Frailty and Cognitive Impairment Research Group (FROG), University of Valencia, Valencia, Spain", + "ror_ids": [ + "https://ror.org/043nxc105" + ] + }, + { + "affiliation": "Faculty of Economics and Business, KU Leuven, Louvain, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Division of Biostatistics, Institute for Health & Equity, and Cancer Center, Medical College of Wisconsin, Milwaukee, WI, USA", + "ror_ids": [ + "https://ror.org/00qqv6244" + ] + }, + { + "affiliation": "Materials Science Center, Indian Institute of Technology Kharagpur, Kharagpur, India", + "ror_ids": [ + "https://ror.org/03w5sq511" + ] + }, + { + "affiliation": "University of Maryland Medical Center, Baltimore, MD, USA", + "ror_ids": [ + "https://ror.org/00sde4n60" + ] + }, + { + "affiliation": "Department of Ophthalmology, Kangbuk Samsung Hospital, Sungkyunkwan University School of Medicine, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/04q78tk20", + "https://ror.org/013e76m06" + ] + }, + { + "affiliation": "Faculty of Allied Health Sciences, Thammasat University, Pathumthani, Thailand", + "ror_ids": [ + "https://ror.org/002yp7f20" + ] + }, + { + "affiliation": "Department of Sustainable Design Engineering, Delft University of Technology, Delft, The Netherlands", + "ror_ids": [ + "https://ror.org/02e2c7k09" + ] + }, + { + "affiliation": "L. N. Gumilyov Eurasian National University, Astana, Kazakhstan", + "ror_ids": [ + "https://ror.org/0242cby63" + ] + }, + { + "affiliation": "Skin Wounds and Trauma Research Centre, RCSI University of Medicine and Health Sciences, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/01hxy9878" + ] + }, + { + "affiliation": "Ludwig Boltzmann Inst. for Arthritis and Rehabilitation, Paracelsus Medical University Salzburg & Nuremberg, Salzburg, Austria", + "ror_ids": [ + "https://ror.org/03z3mg085" + ] + }, + { + "affiliation": "Centre for Vaccines and Immunity, The Abigail Wexner Research Institute at Nationwide Children’s Hospital, The Ohio State University College of Medicine, Columbus, OH, USA", + "ror_ids": [ + "https://ror.org/003rfsp33", + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Department of Ophthalmology, Ankara Güven Hospital, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/023e6jq80" + ] + }, + { + "affiliation": "Department of Chemistry, Aligarh Muslim University, Aligarh, UP, India", + "ror_ids": [ + "https://ror.org/03kw9gc02" + ] + }, + { + "affiliation": "State Key Laboratory for Geomechanics and Deep Underground Engineering, School of Mechanics and Civil Engineering, China University of Mining and Technology, Xuzhou, China", + "ror_ids": [ + "https://ror.org/01xt2dr21" + ] + }, + { + "affiliation": "Pneumology Service, Hospital Galdakao-Usansolo, Galdakao, Bizkaia, Spain", + "ror_ids": [ + "https://ror.org/025714n80" + ] + }, + { + "affiliation": "Department of Urology, Shanghai Children’s Medical Center, Shanghai Jiao Tong University School of Medicine, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/00cd9s024" + ] + }, + { + "affiliation": "Department of Neuropsychiatry, Seoul National University Hospital, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/01z4nnt86" + ] + }, + { + "affiliation": "Student Research Committee, School of Medicine, Isfahan University of Medical Sciences, Isfahan, Iran", + "ror_ids": [ + "https://ror.org/04waqzz56" + ] + }, + { + "affiliation": "College of Control Science and Engineering, China University of Petroleum (East China), Qingdao, China", + "ror_ids": [ + "https://ror.org/05gbn2817" + ] + }, + { + "affiliation": "University of Klagenfurt, Klagenfurt, Austria", + "ror_ids": [ + "https://ror.org/05q9m0937" + ] + }, + { + "affiliation": "Division of Biomedical Sciences, Research Center for Genomic Medicine, Saitama Medical University, Hidaka, Saitama, Japan", + "ror_ids": [ + "https://ror.org/04zb31v77" + ] + }, + { + "affiliation": "Department of General Surgery, The First Affiliated Hospital of Chongqing Medical and Pharmaceutical College, Chongqing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05gvw2741" + ] + }, + { + "affiliation": "TUBITAK National Observatory, Antalya, Turkey", + "ror_ids": [ + "https://ror.org/00xfgvj95" + ] + }, + { + "affiliation": "Ansteel Beijing Research Institute Co., Ltd, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00sgtyj59" + ] + }, + { + "affiliation": "Australian Institute of Marine Science, Townsville, QLD, Australia", + "ror_ids": [ + "https://ror.org/03x57gn41" + ] + }, + { + "affiliation": "INFN Laboratori Nazionali di Frascati, Frascati, Italy", + "ror_ids": [ + "https://ror.org/049jf1a25" + ] + }, + { + "affiliation": "Department of Food Science Industry, Faculty of Agriculture, Ferdowsi University of Mashhad, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/00g6ka752" + ] + }, + { + "affiliation": "Department of Endocrinology, Bharti Hospital, Karnal, India", + "ror_ids": [ + "https://ror.org/04vpecq51" + ] + }, + { + "affiliation": "Emergency Department, University Hospital of Patras, Patras, Greece", + "ror_ids": [ + "https://ror.org/03c3d1v10" + ] + }, + { + "affiliation": "Instituto de Alta Investigación, Universidad de Tarapacá, Arica, Chile", + "ror_ids": [ + "https://ror.org/04xe01d27" + ] + }, + { + "affiliation": "School of Information Science and Technology, Hainan Normal University, Haikou, China", + "ror_ids": [ + "https://ror.org/031dhcv14" + ] + }, + { + "affiliation": "Institute of Theoretical Computer Science, Graz University of Technology, Graz, Austria", + "ror_ids": [ + "https://ror.org/00d7xrm67" + ] + }, + { + "affiliation": "Digestive Surgery, Hôpital Universitaire St Pierre, ULB, Brussels, Belgium", + "ror_ids": [ + "https://ror.org/01r9htc13" + ] + }, + { + "affiliation": "Department of Pharmacology and Toxicology, Faculty of Pharmacy, Zagazig University, Zagazig, Egypt", + "ror_ids": [ + "https://ror.org/053g6we49" + ] + }, + { + "affiliation": "Department of Applied Chemistry, College of Science, China University of Petroleum (Beijing), Beijing, China", + "ror_ids": [ + "https://ror.org/041qf4r12" + ] + }, + { + "affiliation": "The Affiliated Qingdao Central Hospital of Qingdao University, The Second Affiliated Hospital of Medical College of Qingdao University, Qingdao, China", + "ror_ids": [ + "https://ror.org/021cj6z65", + "https://ror.org/026e9yy16" + ] + }, + { + "affiliation": "School of Computer, Electronics and Information, Guangxi University, Nanning, Guangxi, China", + "ror_ids": [ + "https://ror.org/02c9qn167" + ] + }, + { + "affiliation": "Department of Chemistry and Bioengineering, Faculty of Fundamental Sciences, Vilnius Gediminas Technical University, Vilnius-40, Lithuania", + "ror_ids": [ + "https://ror.org/02x3e4q36" + ] + }, + { + "affiliation": "Division of Radiology, German Cancer Research Center (DKFZ), Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/04cdgtt98" + ] + }, + { + "affiliation": "Servicio de Medicina Nuclear, Hospital Universitario Virgen de las Nieves, Granada, Spain", + "ror_ids": [ + "https://ror.org/02f01mz90" + ] + }, + { + "affiliation": "Department of Mathematics and Graduate Program in Geology, Federal University of Parana´, Curitiba, PR, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "Translational Health Sciences, University of Bristol, Bristol, UK", + "ror_ids": [ + "https://ror.org/0524sp257" + ] + }, + { + "affiliation": "Dipartimento di Matematica, Università degli Studi di Salerno, Fisciano, SA, Italy", + "ror_ids": [ + "https://ror.org/0192m2k53" + ] + }, + { + "affiliation": "Department of Obstetrics & Gynecology, Oregon Health & Sciences University, Portland, OR, USA", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Department of Plant Pathology, Faculty of Crop Sciences, Sari Agricultural Sciences and Natural Resources University, Sari, Iran", + "ror_ids": [ + "https://ror.org/0284vkq26" + ] + }, + { + "affiliation": "Materials Science Division, Argonne National Laboratory, Lemont, IL, USA", + "ror_ids": [ + "https://ror.org/05gvnxz63" + ] + }, + { + "affiliation": "Department of Biological Sciences, Florida Atlantic University, Davie, FL, USA", + "ror_ids": [ + "https://ror.org/05p8w6387" + ] + }, + { + "affiliation": "School of Energy Materials, Mahatma Gandhi University, Kottayam, Kerala, India", + "ror_ids": [ + "https://ror.org/00h4spn88" + ] + }, + { + "affiliation": "Service d’Ophtalmologie, Hôpital de la Croix-Rousse, Hospices Civils de Lyon, Lyon, France", + "ror_ids": [ + "https://ror.org/006evg656", + "https://ror.org/01502ca60" + ] + }, + { + "affiliation": "Helmholtz Institute for Metabolic, Obesity and Vascular Research (HI-MAG) of the Helmholtz Centrum München at the University of Munich and University Hospital Leipzig, Leipzig, Germany", + "ror_ids": [ + "https://ror.org/05591te55", + "https://ror.org/028hv5492", + "https://ror.org/00cfam450" + ] + }, + { + "affiliation": "Govindram Seksaria Institute of Dacryology, L.V. Prasad Eye Institute, Hyderabad, Telangana, India", + "ror_ids": [ + "https://ror.org/01w8z9742" + ] + }, + { + "affiliation": "Institute of Health and Society, Clinical Effectiveness Research Group, University of Oslo, Oslo, Norway", + "ror_ids": [ + "https://ror.org/01xtthb56" + ] + }, + { + "affiliation": "Department of Biomedical Data Sciences, Leiden University Medical Centre, Leiden, The Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17" + ] + }, + { + "affiliation": "Precision Metrology Laboratory, Department of Mechanical Engineering, Sant Longowal Institute of Engineering and Technology, Longowal, India", + "ror_ids": [ + "https://ror.org/01n15vy71" + ] + }, + { + "affiliation": "Kavli Institute for Systems Neuroscience, NTNU Norwegian University of Science and Technology, Trondheim, Norway", + "ror_ids": [ + "https://ror.org/05xg72x27" + ] + }, + { + "affiliation": "Department of Plant Biology and Biodiversity, Management, College of Natural and Computational Sciences, Addis Ababa University, Addis Ababa, Ethiopia", + "ror_ids": [ + "https://ror.org/038b8e254" + ] + }, + { + "affiliation": "Law School, Charles Darwin University, Darwin City, NT, Australia", + "ror_ids": [ + "https://ror.org/048zcaj52" + ] + }, + { + "affiliation": "Thompson School of Social Work and Public Health, University of Hawaiʻi – Mānoa, Honolulu, HI, USA", + "ror_ids": [ + "https://ror.org/01wspgy28" + ] + }, + { + "affiliation": "Department of Molecular Genetics, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Mechanical Department, Faculty of Technology and Education, Sohag University, Sohag, Egypt", + "ror_ids": [ + "https://ror.org/02wgx3e98" + ] + }, + { + "affiliation": "Department of Epidemiology and Environmental Health, School of Public Health and Health Professions, University at Buffalo, The State University of New York, Buffalo, NY, USA", + "ror_ids": [ + "https://ror.org/01y64my43" + ] + }, + { + "affiliation": "West China School of Nursing, Sichuan University, Chengdu, China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "Laboratory of Food Technology, Department of Microbial and Molecular Systems (M2S), Leuven Food Science and Nutrition Research Centre (LFoRCe), KU Leuven, Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Washington and Lee University, Lexington, VA, USA", + "ror_ids": [ + "https://ror.org/05r9xgf14" + ] + }, + { + "affiliation": "Department of Industrial, Manufacturing, and Systems Engineering, University of Texas at Arlington, Arlington, TX, USA", + "ror_ids": [ + "https://ror.org/019kgqr73" + ] + }, + { + "affiliation": "Eternal University, Baru Sahib, Himachal Pradesh, India", + "ror_ids": [ + "https://ror.org/05ch82e76" + ] + }, + { + "affiliation": "Musculoskeletal Tissue Engineering Group, Vall d’Hebron Research Institute (VHIR), Universitat Autònoma de Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/01d5vx451", + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Radiobiology Unit, Bhabha Atomic Research Center, Mumbai, Maharashtra, India", + "ror_ids": [ + "https://ror.org/05w6wfp17" + ] + }, + { + "affiliation": "Department of Pharmaceutics, Faculty of Pharmacy and Pharmaceutical Sciences, University of Karachi, Karachi, Pakistan", + "ror_ids": [ + "https://ror.org/05bbbc791" + ] + }, + { + "affiliation": "Computing Technologies, RMIT, Melbourne, VIC, Australia", + "ror_ids": [ + "https://ror.org/04ttjf776" + ] + }, + { + "affiliation": "Department of Respiratory Medicine, National Key Clinical Specialty, Branch of National Clinical Research Center for Respiratory Disease, Xiangya Hospital, Central South University, Changsha, China", + "ror_ids": [ + "https://ror.org/00f1zfq44", + "https://ror.org/05c1yfj14" + ] + }, + { + "affiliation": "Department of Cardiology, University and University Hospital of Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/01462r250" + ] + }, + { + "affiliation": "School of Management, Jiangsu University, Zhenjiang, China", + "ror_ids": [ + "https://ror.org/03jc41j30" + ] + }, + { + "affiliation": "Nikolaev Institute of Inorganic Chemistry, Siberian Branch of the Russian Academy of Sciences, Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/04zpmt351", + "https://ror.org/02frkq021" + ] + }, + { + "affiliation": "Nursing Department, University of Quebec in Outaouais, Qc, Canada", + "ror_ids": [ + "https://ror.org/011pqxa69" + ] + }, + { + "affiliation": "Department of Biochemistry and Medical Genetics, Rady Faculty of Health Sciences, University of Manitoba, Winnipeg, MB, Canada", + "ror_ids": [ + "https://ror.org/02gfys938" + ] + }, + { + "affiliation": "Moscow Scientific Research Television Institute, Moscow, Russia", + "ror_ids": [ + "https://ror.org/03mjn8x60" + ] + }, + { + "affiliation": "Dipartimento di Matematica ‘Tullio Levi-Civita’, Università degli Studi di Padova, Padova, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Engelhardt Institute of Molecular Biology, Moscow, Russia", + "ror_ids": [ + "https://ror.org/027hwkg23" + ] + }, + { + "affiliation": "Laboratory of Environmental Health and Ecotoxicology, Department of Environmental Sciences, Jahangirnagar University, Dhaka, Bangladesh", + "ror_ids": [ + "https://ror.org/04ywb0864" + ] + }, + { + "affiliation": "Faculty of Medicine, Institute of Pathology, University of Belgrade, Belgrade, Serbia", + "ror_ids": [ + "https://ror.org/02qsmb048" + ] + }, + { + "affiliation": "Net Zero and Resilient Farming, Rothamsted Research, Okehampton, Devon, UK", + "ror_ids": [ + "https://ror.org/0347fy350" + ] + }, + { + "affiliation": "Department of Cranial Maxillofacial Plastic Surgery, University Clinic Leipzig, Leipzig, Germany", + "ror_ids": [ + "https://ror.org/028hv5492" + ] + }, + { + "affiliation": "Guangxi Collaborative Innovation Center of Study on Functional Ingredients of Agricultural Residues, Guangxi University of Chinese Medicine, Nanning, China", + "ror_ids": [ + "https://ror.org/024v0gx67" + ] + }, + { + "affiliation": "Institute for Theoretical Physics I, University of Stuttgart, Stuttgart, Germany", + "ror_ids": [ + "https://ror.org/04vnq7t77" + ] + }, + { + "affiliation": "Department of Orthopaedics, University of Texas Southwestern Medical Center, Dallas, TX, USA", + "ror_ids": [ + "https://ror.org/05byvp690" + ] + }, + { + "affiliation": "Unit of Andrology and Reproductive Medicine, Department of Medicine, University of Padova, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Cooperative Institute for Marine and Atmospheric Research, Pacific Islands Fisheries Science Center NOAA-IRC, Honolulu, Hawaii, USA", + "ror_ids": [ + "https://ror.org/02apffz65" + ] + }, + { + "affiliation": "School of Management, Tianjin University of Technology, Tianjin, China", + "ror_ids": [ + "https://ror.org/00zbe0w13" + ] + }, + { + "affiliation": "School of Geography, Queen Mary University of London, London, UK", + "ror_ids": [ + "https://ror.org/026zzn846" + ] + }, + { + "affiliation": "Arab Academy for Science, Technology and Maritime Transport, Arab League, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/0004vyj87" + ] + }, + { + "affiliation": "Department of Otolaryngology-Head and Neck Surgery, University Hospital of Tours, Tours, France", + "ror_ids": [ + "https://ror.org/00jpq0w62" + ] + }, + { + "affiliation": "Animal Medicine and Surgery Department, Faculty of Veterinary Medicine, Complutense University, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Department of Basic Sciences, Faculty of Veterinary Medicine, Ferdowsi University of Mashhad, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/00g6ka752" + ] + }, + { + "affiliation": "Nanyang Business School, Nanyang Technological University, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/02e7b5302" + ] + }, + { + "affiliation": "Sussex Neuroscience, School of Life Sciences, University of Sussex, Brighton, UK", + "ror_ids": [ + "https://ror.org/00ayhx656" + ] + }, + { + "affiliation": "Division of Internal Medicine, European Reference Network for Hereditary Metabolic Disorders (MetabERN), University Clinical Hospital, Santiago de Compostela, Spain", + "ror_ids": [ + "https://ror.org/00mpdg388" + ] + }, + { + "affiliation": "PharmD Program, Faculty of Pharmacy, University of Tabuk, Tabuk, Saudi Arabia", + "ror_ids": [ + "https://ror.org/04yej8x59" + ] + }, + { + "affiliation": "University of South-Eastern Norway, Kongsberg, Norway", + "ror_ids": [ + "https://ror.org/05ecg5h20" + ] + }, + { + "affiliation": "Faculty of Art and Science, Department of Chemistry, Manisa Celal Bayar University, Manisa, Yunusemre, Turkey", + "ror_ids": [ + "https://ror.org/053f2w588" + ] + }, + { + "affiliation": "Department of Immunology, Institute of Translational Medicine, Medical College, Yangzhou University, Yangzhou, Jiangsu, China", + "ror_ids": [ + "https://ror.org/03tqb8s11" + ] + }, + { + "affiliation": "Cystic Fibrosis Research Laboratory, Department of Psychology, Stanford University, Stanford, CA, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "University of Science and Technology of China, Hefei, China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Department of Computer Science, University of Chile, Santiago, Chile", + "ror_ids": [ + "https://ror.org/047gc3g35" + ] + }, + { + "affiliation": "Institut d‘Investigació Sanitària Pere Virgili, Tarragona, Catalonia, Spain", + "ror_ids": [ + "https://ror.org/01av3a615" + ] + }, + { + "affiliation": "Univ. Littoral Côte d’Opale, Univ. Lille, CNRS, IRD, UMR 8187, LOG, Laboratoire d’Océanologie et de Géosciences, Wimereux, France", + "ror_ids": [ + "https://ror.org/05m14rs93" + ] + }, + { + "affiliation": "Veterinary Stem Cell and Bioengineering Research Unit, Faculty of Veterinary Science, Chulalongkorn University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Division of Gender, Sexuality and Health, New York State Psychiatric Institute, New York, NY, USA", + "ror_ids": [ + "https://ror.org/04aqjf708" + ] + }, + { + "affiliation": "College of Chemistry and Bioengineering, Guilin University of Technology, Guilin, China", + "ror_ids": [ + "https://ror.org/03z391397" + ] + }, + { + "affiliation": "The Novo Nordisk Foundation Center for Protein Research, Faculty of Health Sciences, University of Copenhagen, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/035b05819", + "https://ror.org/04txyc737" + ] + }, + { + "affiliation": "School of Animal Science and Technology, Guangxi University, Nanning, Guangxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02c9qn167" + ] + }, + { + "affiliation": "Department of Environmental Health Engineering, School of Public Health, Research Centre for Health Sciences, Hamadan University of Medical Sciences, Hamadan, Iran", + "ror_ids": [ + "https://ror.org/02ekfbp48" + ] + }, + { + "affiliation": "Campus Kerckhoff, Justus-Liebig-Universität Gießen, Bad Nauheim, Deutschland", + "ror_ids": [ + "https://ror.org/033eqas34" + ] + }, + { + "affiliation": "Department of Advanced Biomedical Sciences, University of Naples Federico II, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Clinical Hematology Department, Institut Català d’Oncologia-Hospitalet, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/01j1eb875" + ] + }, + { + "affiliation": "Department of Biomedicine and Prevention, Ph.D. in Immunology, Molecular Medicine and Applied Biotechnology, University of Rome Tor Vergata, Rome, Italy", + "ror_ids": [ + "https://ror.org/02p77k626" + ] + }, + { + "affiliation": "Department of Mathematics, University of Padua, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Center for Teacher Education Research, Faculty of Education, Beijing Normal University, Beijing, P. R. China", + "ror_ids": [ + "https://ror.org/022k4wk35" + ] + }, + { + "affiliation": "Univ Angers, INSERM, Immunology and New Concepts in Immunotherapy, INCIT, UMR 1302, Nantes Université, Nantes, France", + "ror_ids": [ + "https://ror.org/03gnr7b55", + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Fraunhofer Institute for Applied Information Technology FIT, Sankt Augustin, Germany", + "ror_ids": [ + "https://ror.org/01ak24c12" + ] + }, + { + "affiliation": "Shandong Energy Institute, Qingdao, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05h3vcy91" + ] + }, + { + "affiliation": "School of Pharmacy and Pharmaceutical Sciences, Trinity College, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/02tyrky19" + ] + }, + { + "affiliation": "School of Medical Information and Engineering, Guangdong Pharmaceutical University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/02vg7mz57" + ] + }, + { + "affiliation": "Department of Cardiac Surgery, Medical University of Silesia, Katowice, Poland", + "ror_ids": [ + "https://ror.org/005k7hp45" + ] + }, + { + "affiliation": "Department of Microbiology, Perelman School of Medicine, University of Pennsylvania, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "European Spallation Source ESS, Lund, Sweden", + "ror_ids": [ + "https://ror.org/01wv9cn34" + ] + }, + { + "affiliation": "Department of Clinical Research, Sorlandet Hospital, Kristiansand, Norway", + "ror_ids": [ + "https://ror.org/05yn9cj95" + ] + }, + { + "affiliation": "Pharmaceutical Science, Department of Health Sports and Bioscience, University of East London, London, UK", + "ror_ids": [ + "https://ror.org/057jrqr44" + ] + }, + { + "affiliation": "Ho Chi Minh City University of Technology (HCMUT), Ho Chi Minh City, Vietnam", + "ror_ids": [ + "https://ror.org/04qva2324" + ] + }, + { + "affiliation": "Hamdi Mango Center for Scientific Research, The University of Jordan, Amman, Jordan", + "ror_ids": [ + "https://ror.org/05k89ew48" + ] + }, + { + "affiliation": "Medical Research Center, Affiliated Hospital of North Sichuan Medical College, Nanchong, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01673gn35" + ] + }, + { + "affiliation": "School of Computer Science, University of Galway, Galway, Ireland", + "ror_ids": [ + "https://ror.org/03bea9k73" + ] + }, + { + "affiliation": "Department of Restorative Dentistry, Faculty of Dentistry, Gaziantep University, University Boulevard, Gaziantep, Turkey", + "ror_ids": [ + "https://ror.org/020vvc407" + ] + }, + { + "affiliation": "Imagine Optic, Orsay, France", + "ror_ids": [ + "https://ror.org/05s2h4a13" + ] + }, + { + "affiliation": "International Centre for Theoretical Physics (ICTP), Trieste, Italy", + "ror_ids": [ + "https://ror.org/009gyvm78" + ] + }, + { + "affiliation": "Amity International Business School, Amity University, Noida, U.P., India", + "ror_ids": [ + "https://ror.org/02n9z0v62" + ] + }, + { + "affiliation": "Institute of Molecular and Cellular Regulation, Gunma University, Maebashi, Gunma, Japan", + "ror_ids": [ + "https://ror.org/046fm7598" + ] + }, + { + "affiliation": "College of Resources and Environmental Sciences, National Academy of Agriculture Green Development, Key Laboratory of Plant-Soil Interactions, Ministry of Education, China Agricultural University, Beijing, China", + "ror_ids": [ + "https://ror.org/04v3ywz14" + ] + }, + { + "affiliation": "Department of Home Economics, Government College University Faisalabad, Faisalabad, Pakistan", + "ror_ids": [ + "https://ror.org/051zgra59" + ] + }, + { + "affiliation": "Faculty of Medical Laboratory Science, College of Health Science and Technology, Shanghai Jiao Tong University School of Medicine, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "II Physikalisches Institut, Justus Liebig University Giessen, Giessen, Germany", + "ror_ids": [ + "https://ror.org/033eqas34" + ] + }, + { + "affiliation": "Division of Geriatric Medicine, Department of Medicine, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Alibaba-Zhejiang University Joint Research Institute of Frontier Technologies, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Physics, Westmont College, Santa Barbara, USA", + "ror_ids": [ + "https://ror.org/00xhcz327" + ] + }, + { + "affiliation": "Beijing Institute of Radiation Medicine, Beijing, China", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "School of Biological Science, Seoul National University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Department of Physics, Liaoning University, Shenyang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03xpwj629" + ] + }, + { + "affiliation": "Department of Mathematics and Humanities, Sardar Vallabhbhai National Institute of Technology, Surat, India", + "ror_ids": [ + "https://ror.org/02y394t43" + ] + }, + { + "affiliation": "Graduiertenkolleg Literatur und Öffentlichkeit in differenten Gegenwartskulturen, Friedrich-Alexander-Universität Erlangen-Nürnberg, Nürnberg, Deutschland", + "ror_ids": [ + "https://ror.org/00f7hpc57" + ] + }, + { + "affiliation": "Azienda Ospedaliera Universitaria IRCCS Meyer, Florence, Italy", + "ror_ids": [ + "https://ror.org/01n2xwm51" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Bushehr Branch, Islamic Azad University, Bushehr, Iran", + "ror_ids": [ + "https://ror.org/03hhrzm12" + ] + }, + { + "affiliation": "Capital Normal University, Beijing, China", + "ror_ids": [ + "https://ror.org/005edt527" + ] + }, + { + "affiliation": "Department of Biostatistics and Clinical Research, CHU Rouen, Rouen, France", + "ror_ids": [ + "https://ror.org/04cdk4t75" + ] + }, + { + "affiliation": "Department of Microbiology and Virology, University Hospital of Brescia, Brescia, Italy", + "ror_ids": [ + "https://ror.org/015rhss58" + ] + }, + { + "affiliation": "Key Laboratory of Biomechanics and Mechanobiology, Ministry of Education, Beijing Advanced Innovation Center for Biomedical Engineering, School of Biological Science and Medical Engineering, Beihang University, Beijing, China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Program in Cellular and Molecular Medicine, Boston Children’s Hospital, Harvard Medical School, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52", + "https://ror.org/00dvg7y05" + ] + }, + { + "affiliation": "IRISA, CNRS, Univ Rennes, Rennes, France", + "ror_ids": [ + "https://ror.org/015m7wh34", + "https://ror.org/00myn0z94" + ] + }, + { + "affiliation": "Freie Universität Berlin, Institute of Biology, Berlin, Germany", + "ror_ids": [ + "https://ror.org/046ak2485" + ] + }, + { + "affiliation": "KU Leuven, Department of Biosystems, Division of Animal and Human Health Engineering, Geel, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Institute of Botany, Chinese Academy of Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/05hr3ch11" + ] + }, + { + "affiliation": "Department of Computer, Control and Management Engineering Antonio Ruberti, Sapienza University of Rome, Rome, Italy", + "ror_ids": [ + "https://ror.org/02be6w209" + ] + }, + { + "affiliation": "Tananaev Institute of Chemistry and Technology of Rare Elements and Mineral Raw Materials (separate subdivision), Kola Scientific Center (Federal Research Center), Russian Academy of Sciences, Akademgorodok, Apatity, Murmansk oblast, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25", + "https://ror.org/056wf8856" + ] + }, + { + "affiliation": "Amity University, Noida, Uttar Pradesh, India", + "ror_ids": [ + "https://ror.org/02n9z0v62" + ] + }, + { + "affiliation": "GIBI230 Research Group on Biomedical Imaging, Instituto de Investigación Sanitaria La Fe, Valencia, Spain", + "ror_ids": [ + "https://ror.org/05n7v5997" + ] + }, + { + "affiliation": "Expertise Centre for Digital Media, Hasselt University, Hasselt, Belgium", + "ror_ids": [ + "https://ror.org/04nbhqj75" + ] + }, + { + "affiliation": "University of Alberta, Edmonton, Canada", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "School of Psychology, Speech and Hearing, University of Canterbury, Christchurch, New Zealand", + "ror_ids": [ + "https://ror.org/03y7q9t39" + ] + }, + { + "affiliation": "Endocrinology and Nutrition Department, Hospital Universitari Parc Taulí, Sabadell, Spain", + "ror_ids": [ + "https://ror.org/02pg81z63" + ] + }, + { + "affiliation": "Research group on psychosocial risks, organization of work and health, Universitat Autònoma de Barcelona, Cerdanyola del Vallès, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "School of Business, State University of New York at Oswego, Oswego, NY, USA", + "ror_ids": [ + "https://ror.org/01597g643" + ] + }, + { + "affiliation": "Department of Statistics and Data Science, Faculty of Statistical Studies, Complutense University of Madrid, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Faculty of Process and Environmental Engineering, Lodz University of Technology, Lodz, Poland", + "ror_ids": [ + "https://ror.org/00s8fpf52" + ] + }, + { + "affiliation": "B. Verkin Institute for Low Temperature Physics and Engineering of the National Academy of Sciences of Ukraine, Kharkiv, Ukraine", + "ror_ids": [ + "https://ror.org/02nk5bh05", + "https://ror.org/00je4t102" + ] + }, + { + "affiliation": "Computational and Systems Biology, Massachusetts Institute of Technology, Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Paton Electric Welding Institute, NationalAcademyofSciences, Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/01gxrtw55" + ] + }, + { + "affiliation": "Department of Neurology, Amsterdam University Medical Centers Location Vrije Universiteit, Amsterdam, Netherlands", + "ror_ids": [ + "https://ror.org/05grdyy37" + ] + }, + { + "affiliation": "Department of Women’s and Children’s Health, Uppsala Universitet, Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/048a87296" + ] + }, + { + "affiliation": "Department of Population and Public Health Sciences, Keck School of Medicine of USC, University of Southern California, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/03taz7m60" + ] + }, + { + "affiliation": "School of Public Policy, University of California Riverside, Riverside, United States", + "ror_ids": [ + "https://ror.org/03nawhv43" + ] + }, + { + "affiliation": "Department of Medical Oncology, Jawaharlal Institute of Postgraduate Medical Education & Research (JIPMER), Puducherry, India", + "ror_ids": [ + "https://ror.org/02fq2px14" + ] + }, + { + "affiliation": "Penza State University, Penza, Russian Federation", + "ror_ids": [ + "https://ror.org/056r5vk88" + ] + }, + { + "affiliation": "Laboratory of Agro-Food, Biotechnologies and Valorization of Plant Bioresources, Faculty of Science Semlalia, Department of Biology, Cadi Ayyad University, Marrakech, Morocco", + "ror_ids": [ + "https://ror.org/04xf6nm78" + ] + }, + { + "affiliation": "Department of Physics, Faculty of Science, Chulalongkorn University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Department of Physics, Shaoxing University, Shaoxing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0435tej63" + ] + }, + { + "affiliation": "Department of Land Resources and Environmental Sciences, Montana State University, Bozeman, MT, USA", + "ror_ids": [ + "https://ror.org/02w0trx84" + ] + }, + { + "affiliation": "Department of Mathematical Sciences, Durham University, Durham, United Kingdom", + "ror_ids": [ + "https://ror.org/01v29qb04" + ] + }, + { + "affiliation": "Graduate School of Natural and Applied Sciences, Main Campus, Gazi University, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/054xkpr46" + ] + }, + { + "affiliation": "Department of Microbiology and Immunology, Yong Loo Lin School of Medicine, National University of Singapore, Singapore, Republic of Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Ruđer Bošković Institute, Zagreb, Croatia", + "ror_ids": [ + "https://ror.org/02mw21745" + ] + }, + { + "affiliation": "Section of Gastroenterology, Dartmouth-Hitchcock Medical Cancer, Lebanon, NH, USA", + "ror_ids": [ + "https://ror.org/00d1dhh09" + ] + }, + { + "affiliation": "Department of Informatics, Bioengineering, Robotics and Systems Engineering, University of Genova, Genova, Genova, Italy", + "ror_ids": [ + "https://ror.org/0107c5v14" + ] + }, + { + "affiliation": "Materials and Structural Engineering Department, Nanjing Hydraulic Research Institute, Nanjing, Jiangsu, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02403qw73" + ] + }, + { + "affiliation": "College of Computer Science and Engineering, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Klinik für Anästhesiologie und Intensivmedizin, Universitätsklinikum Jena, Jena, Deutschland", + "ror_ids": [ + "https://ror.org/035rzkx15" + ] + }, + { + "affiliation": "Bioethics Program, University Health Network, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/042xt5161" + ] + }, + { + "affiliation": "Department of Neurosurgery, Emory University School of Medicine, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Department of Basic Sciences, Middle East University, Amman, Jordan", + "ror_ids": [ + "https://ror.org/059bgad73" + ] + }, + { + "affiliation": "Institute of Agricultural Sciences, Federal Rural University of Amazonia - UFRA, Belém, PR, Brazil", + "ror_ids": [ + "https://ror.org/02j71c790" + ] + }, + { + "affiliation": "Center of Agrobiotechnology and Bioengineering, Research Unit Labelled CNRST (Centre AgroBiotech-URL-CNRST-05), Physiology of Abiotic Stresses Team, Cadi Ayyad University, Marrakesh, Morocco", + "ror_ids": [ + "https://ror.org/04xf6nm78" + ] + }, + { + "affiliation": "Department of Surgery, Division of Radiation Oncology, University of British Columbia, Faculty of Medicine, Vancouver, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Traditional Chinese Medicine, Guangzhou First People’s Hospital, School of Medicine, South China University of Technology, Guangzhou, Guangdong, China", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Department of Otorhinolaryngology and Head and Neck Surgery, Leiden University Medical Centre, Leiden, The Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17" + ] + }, + { + "affiliation": "Professor of Neurology, Center for Mind/Brain Studies, University of Trento, Trento, Italy", + "ror_ids": [ + "https://ror.org/05trd4x28" + ] + }, + { + "affiliation": "State Key Laboratory of Information Engineering in Surveying, Wuhan University, Wuhan, Hubei, China", + "ror_ids": [ + "https://ror.org/033vjfk17", + "https://ror.org/02bpap860" + ] + }, + { + "affiliation": "Institute of Oriental Studies, Russian Academy of Sciences, Moscow, Russia", + "ror_ids": [ + "https://ror.org/056635736", + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Department of Dermatology, Rasool Akram Medical Complex Clinical Research Development Center (RCRDC), School of Medicine, Iran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/03w04rv71" + ] + }, + { + "affiliation": "Graduate Program in System Health Science and Engineering, Ewha Womans University, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/053fp5c05" + ] + }, + { + "affiliation": "Economics Group, Indian Institute of Management Calcutta, Kolkata, India", + "ror_ids": [ + "https://ror.org/02zhewk16" + ] + }, + { + "affiliation": "Faculty of Medicine, University of Alberta, Edmonton, Canada", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "Department of Microbiology, Faculty of Science, Chulalongkorn University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Laboratoire des Méthodes de Conception des Systèmes (LMCS), Ecole nationale Supérieure d’Informatique, Oued Smar, Algeria", + "ror_ids": [ + "https://ror.org/04dj1dn66" + ] + }, + { + "affiliation": "Department of Chemistry and Biotechnology, Tallinn University of Technology, Tallinn, Estonia", + "ror_ids": [ + "https://ror.org/0443cwa12" + ] + }, + { + "affiliation": "Cancer Computational Biology Center, Erasmus MC Cancer Institute, Erasmus University Medical Center, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/03r4m3349" + ] + }, + { + "affiliation": "Department of Stem Cell and Regeneration Medicine, Translational Medicine Research Center, Naval Medical University, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04tavpn47" + ] + }, + { + "affiliation": "Department of Pharmacy, Tangdu Hospital, Fourth Military Medical University, Xi’an, Shaanxi Province, China", + "ror_ids": [ + "https://ror.org/00ms48f15" + ] + }, + { + "affiliation": "Center of Nanomaterials for Renewable Energy, State Key Laboratory of Electrical Insulation and Power Equipment, School of Electrical Engineering, Xi’an Jiaotong University, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/017zhmm22" + ] + }, + { + "affiliation": "Max-Planck-Institut für Entwicklungsbiologie, Tübingen, Deutschland", + "ror_ids": [ + "https://ror.org/022jc0g24" + ] + }, + { + "affiliation": "Bielefeld University, Bielefeld, Germany", + "ror_ids": [ + "https://ror.org/02hpadn98" + ] + }, + { + "affiliation": "Department of Gastroenterology and Hepatology, School of Medicine, Koç University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/00jzwgz36" + ] + }, + { + "affiliation": "Department of Epidemiology, Center for Public Health, Medical University of Vienna, Vienna, Austria", + "ror_ids": [ + "https://ror.org/05n3x4p02" + ] + }, + { + "affiliation": "Geestelijk verzorger, Elisabeth-TweeSteden Ziekenhuis, Tilburg, Netherlands", + "ror_ids": [ + "https://ror.org/04gpfvy81" + ] + }, + { + "affiliation": "Guangzhou University of Chinese Medicine, Guangzhou, P. R. China", + "ror_ids": [ + "https://ror.org/03qb7bg95" + ] + }, + { + "affiliation": "School of Aeronautics, Northwestern Polytechnical University, Xi’an, Shanxi, China", + "ror_ids": [ + "https://ror.org/01y0j0j86" + ] + }, + { + "affiliation": "St Vincent’s Clinical School, University of NSW, Sydney, New South Wales, Australia", + "ror_ids": [ + "https://ror.org/03r8z3t63" + ] + }, + { + "affiliation": "Social and Education Sciences Department, School of Arts and Sciences, Lebanese American University, Jbeil, Lebanon", + "ror_ids": [ + "https://ror.org/00hqkan37" + ] + }, + { + "affiliation": "National Pedagogical Dragomanov University, Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/00batt813" + ] + }, + { + "affiliation": "University of South Africa, Department of Physics, Pretoria, South Africa", + "ror_ids": [ + "https://ror.org/048cwvf49" + ] + }, + { + "affiliation": "Division of Gastroenterology and Hepatology, Department of Medicine, Taipei Veterans General Hospital, Taipei, Taiwan, Republic of China", + "ror_ids": [ + "https://ror.org/03ymy8z76" + ] + }, + { + "affiliation": "School of English for International Business, Guangdong University of Foreign Studies, Guangzhou, China", + "ror_ids": [ + "https://ror.org/00fhc9y79" + ] + }, + { + "affiliation": "Department of Immunology and Infection, John Curtin School of Medical Research, Australian National University, Canberra, ACT, Australia", + "ror_ids": [ + "https://ror.org/019wvm592" + ] + }, + { + "affiliation": "Stony Brook Institute, Anhui University, Hefei, China", + "ror_ids": [ + "https://ror.org/05th6yx34" + ] + }, + { + "affiliation": "Expanded Programme of Immunization (EPI), Ministry of Health, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/04f90ax67" + ] + }, + { + "affiliation": "Department of Chemistry, Federal University of Paraná, Curitiba, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "Process Research Center of Tecnológico Comfenalco (CIPTEC), Industrial Engineering Program., Fundación Universitaria Tecnológico Comfenalco, Cartagena, Colombia", + "ror_ids": [ + "https://ror.org/04z1myv13" + ] + }, + { + "affiliation": "Department of Biosciences and Biomedical Engineering, Indian Institute of Technology Indore, Indore, Madhya Pradesh, India", + "ror_ids": [ + "https://ror.org/01hhf7w52" + ] + }, + { + "affiliation": "College of Computer and Information Engineering, Henan Normal University, Xinxiang, China", + "ror_ids": [ + "https://ror.org/00s13br28" + ] + }, + { + "affiliation": "Biomedical Science and Technologies Unit, IRCCS Istituto Ortopedico Rizzoli, Bologna, Italy", + "ror_ids": [ + "https://ror.org/02ycyys66" + ] + }, + { + "affiliation": "University of Rennes, Rennes, France", + "ror_ids": [ + "https://ror.org/015m7wh34" + ] + }, + { + "affiliation": "Department of Public Administration, Universitas Padjadjaran, Bandung, Indonesia", + "ror_ids": [ + "https://ror.org/00xqf8t64" + ] + }, + { + "affiliation": "School of Mathematics and Statistics, Lanzhou University, Lanzhou, Gansu, China", + "ror_ids": [ + "https://ror.org/01mkqqe32" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Indian Institute of Technology, Kanpur, India", + "ror_ids": [ + "https://ror.org/05pjsgx75" + ] + }, + { + "affiliation": "Anatomy Department, College of Medicine, Umm Al-Qura University, Makkah, Saudi Arabia", + "ror_ids": [ + "https://ror.org/01xjqrm90" + ] + }, + { + "affiliation": "Department of Surgery, Vascular Division, Icahn School of Medicine at Mount Sinai, New York, NY, USA", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "Department of General Surgery and Minimal Access Surgical Sciences, Sir H.N. Reliance Foundation Hospital, Mumbai, India", + "ror_ids": [ + "https://ror.org/014ezkx63" + ] + }, + { + "affiliation": "Department of Geodesy and Geographical Information Sciences, Institute of Earth and Space Sciences, Eskişehir Technical University, Eskişehir, Türkiye", + "ror_ids": [ + "https://ror.org/00gcgqv39" + ] + }, + { + "affiliation": "Yellow River Laboratory, Zhengzhou University, Zhengzhou, Henan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Department of Information and Industrial Management, Accounting and Management Faculty, Shahid Beheshti University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/0091vmj44" + ] + }, + { + "affiliation": "Department of Geography Environmental Sustainability and Resilience Building, Midlands State University, Gweru, Zimbabwe", + "ror_ids": [ + "https://ror.org/02gv1gw80" + ] + }, + { + "affiliation": "National Key Laboratory of Crop Genetic Improvement, Huazhong Agricultural University, Wuhan, China", + "ror_ids": [ + "https://ror.org/023b72294" + ] + }, + { + "affiliation": "Department of General Surgery, Gusu School, The Affiliated Suzhou Hospital of Nanjing Medical University, Suzhou Municipal Hospital, Nanjing Medical University, Suzhou, China", + "ror_ids": [ + "https://ror.org/02cdyrc89", + "https://ror.org/059gcgy73" + ] + }, + { + "affiliation": "School of Material Science, Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Zhejiang Institute of Tianjin University, Ningbo, Zhejiang, China", + "ror_ids": [ + "https://ror.org/012tb2g32" + ] + }, + { + "affiliation": "Departamento de Patologia Veterinária, Faculdade de Ciências Agrárias e Veterinárias, Universidade Estadual Paulista, Jaboticabal, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Nuclear Medicine and Diagnostic Imaging, International Atomic Energy Agency, Vienna, Austria", + "ror_ids": [ + "https://ror.org/02zt1gg83" + ] + }, + { + "affiliation": "Department of Biology, The Gandhigram Rural Institute (Deemed to be University), Gandhigram, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/01abtgj51" + ] + }, + { + "affiliation": "Department of Neurosciences, Rehabilitation, Ophthalmology, Genetics, Maternal and Child Health (DINOGMI), University of Genoa, IRCCS Istituto Giannina Gaslini, Genoa, Italy", + "ror_ids": [ + "https://ror.org/0107c5v14", + "https://ror.org/0424g0k78" + ] + }, + { + "affiliation": "DMPK, Protagonist Therapeutics, Inc, Newark, CA, USA", + "ror_ids": [ + "https://ror.org/00bp7kt89" + ] + }, + { + "affiliation": "Suzhou Hospital of Anhui Medical University, Suzhou Municipal Hospital of Anhui Province, Suzhou, China", + "ror_ids": [ + "https://ror.org/03xb04968", + "https://ror.org/02cdyrc89" + ] + }, + { + "affiliation": "Department of Electronic Engineering, Faculty of Engineering, The Chinese University of Hong Kong, Hong Kong, China", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Department of General Practice, North China University of Science and Technology Affiliated Hospital, Tangshan, Hebei, China", + "ror_ids": [ + "https://ror.org/015kdfj59" + ] + }, + { + "affiliation": "Monash Medical Centre, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/036s9kg65" + ] + }, + { + "affiliation": "Division of Emergency Radiology, Department of Radiology and Imaging Sciences, Emory University School of Medicine, Atlanta, GA, USA", + "ror_ids": [ + "https://ror.org/03czfpz43" + ] + }, + { + "affiliation": "Institute for Materials Research (IMO-IMOMEC), Hasselt University, Diepenbeek, Belgium", + "ror_ids": [ + "https://ror.org/04nbhqj75" + ] + }, + { + "affiliation": "Radboud University Nijmegen, Nijmegen, The Netherlands", + "ror_ids": [ + "https://ror.org/016xsfp80" + ] + }, + { + "affiliation": "Switch Laboratory, VIB-KU Leuven Center for Brain & Disease Research, Leuven, Belgium", + "ror_ids": [ + "https://ror.org/045c7t348" + ] + }, + { + "affiliation": "Regional Water and Environmental Sanitation Centre, Civil Engineering Department, Kwame Nkrumah University of Science and Technology, Kumasi, Ghana", + "ror_ids": [ + "https://ror.org/00cb23x68" + ] + }, + { + "affiliation": "Department of Gastroenterology, The Second Affiliated Hospital of Chongqing Medical University, Chongqing, China", + "ror_ids": [ + "https://ror.org/00r67fz39" + ] + }, + { + "affiliation": "Department of Clinical Genetics, Central Hospital, Aichi Developmental Disability Center, Aichi, Japan", + "ror_ids": [ + "https://ror.org/05w4mbn40" + ] + }, + { + "affiliation": "Key Laboratory of Computing and Stochastic Mathematics (Ministry of Education), College of Mathematics and Statistics, Hunan Normal University, Changsha, China", + "ror_ids": [ + "https://ror.org/053w1zy07" + ] + }, + { + "affiliation": "Population Studies Center, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Department of Anesthesiology and Perioperative Medicine, Mayo Clinic, Rochester, MN, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "School of Mechanical Engineering and Automation, Harbin Institute of Technology, Shenzhen, China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Leibniz Institute of Photonic Technology e.V., Jena, Germany", + "ror_ids": [ + "https://ror.org/02se0t636" + ] + }, + { + "affiliation": "Department of Neurosurgery, Kyung Hee University Hospital, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/01vbmek33" + ] + }, + { + "affiliation": "Doctor of Business Administration Program, School of Business, University of Maryland Global Campus, Largo, MD, USA", + "ror_ids": [ + "https://ror.org/01w1pbe36" + ] + }, + { + "affiliation": "Higher Education Institute of Rab-Rashid, Tabriz, Iran", + "ror_ids": [] + }, + { + "affiliation": "Faculty of Economics, The University of Tokyo, Bunkyo-Ku, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Instituto de Investigaciones sobre los Recursos Naturales, Universidad Michoacana de San Nicolás de Hidalgo, Morelia, Michoacán, México", + "ror_ids": [ + "https://ror.org/00z0kq074" + ] + }, + { + "affiliation": "Neuroscience Center of Excellence, School of Medicine, Louisiana State University Health New Orleans, New Orleans, LA, USA", + "ror_ids": [ + "https://ror.org/01qv8fp92" + ] + }, + { + "affiliation": "Department of Physical Medicine and Rehabilitation, Faculty of Medicine, Cukurova University, Adana, Turkey", + "ror_ids": [ + "https://ror.org/05wxkj555" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Michigan State University College of Engineering, East Lansing, MI, USA", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "Zhejiang Chinese Medical University, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/04epb4p87" + ] + }, + { + "affiliation": "Department of Acupuncture, Dongzhimen Hospital Beijing University of Chinese Medicine, Beijing, China", + "ror_ids": [ + "https://ror.org/05damtm70" + ] + }, + { + "affiliation": "Medical Computer Vision and Robotics Lab, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Jiangsu Cancer Hospital & Jiangsu Institute of Cancer Control &, Nanjing Medical University Cancer Hospital, Nanjing, Jiangsu, China", + "ror_ids": [ + "https://ror.org/059gcgy73", + "https://ror.org/03108sf43" + ] + }, + { + "affiliation": "Reproductive and Genetic Hospital of CITIC-Xiangya, Changsha, China", + "ror_ids": [ + "https://ror.org/01ar3e651" + ] + }, + { + "affiliation": "Faculty of Chemistry and Chemical Engineering, Malek Ashtar University of Technology, Tehran, Iran", + "ror_ids": [ + "https://ror.org/0043ezw98" + ] + }, + { + "affiliation": "Nonlinear Analysis and Applied Mathematics (NAAM)-Research Group, Department of Mathematics, Faculty of Science, King Abdulaziz University, Jeddah, Saudi Arabia", + "ror_ids": [ + "https://ror.org/02ma4wv74" + ] + }, + { + "affiliation": "Faculty of Medicine, Nicolae Testemițanu State University of Medicine and Pharmacy, Chișinău, Moldova", + "ror_ids": [ + "https://ror.org/03xww6m08" + ] + }, + { + "affiliation": "Youz, Parnassia Psychiatric Institute, den Hague, The Netherlands", + "ror_ids": [ + "https://ror.org/002wh3v03" + ] + }, + { + "affiliation": "Clinical Cooperation Unit Nuclear Medicine, German Cancer Research Center, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/04cdgtt98" + ] + }, + { + "affiliation": "Scientific Officer RP&AD, Bhabha Atomic Research Centre, Mumbai, India", + "ror_ids": [ + "https://ror.org/05w6wfp17" + ] + }, + { + "affiliation": "Bioinformatics Program, Institute of Biological Sciences, Faculty of Science, Universiti Malaya, Kuala Lumpur, Malaysia", + "ror_ids": [ + "https://ror.org/00rzspn62" + ] + }, + { + "affiliation": "Department of Languages, Literature and Communication, Utrecht University, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "School of Artificial Intelligence and Automation, Huazhong University of Science and Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Corporate R&D Institute, Samsung Electro-Mechanics, Suwon, Korea", + "ror_ids": [ + "https://ror.org/04w3jy968" + ] + }, + { + "affiliation": "Centre for Machining and Material Testing, Department of Mechanical Engineering, KPR Institute of Engineering and Technology, Coimbatore, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/02q9f3a53" + ] + }, + { + "affiliation": "Department of Ophthalmology and Visual Sciences, University of Michigan Kellogg Eye Center, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Key Lab of Robotics, Shenyang Institute of Automation, Chinese Academy of Sciences, Shenyang, Liaoning, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/00ft6nj33" + ] + }, + { + "affiliation": "School of Population Health, University of Auckland, Auckland, New Zealand", + "ror_ids": [ + "https://ror.org/03b94tp07" + ] + }, + { + "affiliation": "Faculty of Mechanical Engineering, Institute of General Mechanics, RWTH Aachen University, Aachen, Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "Institute of Plasma Physics, Hefei Institutes of Physical Science, Chinese Academy of Sciences, Hefei, People’s Republic of China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/046n57345" + ] + }, + { + "affiliation": "Department of Biochemistry, Weill Cornell Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02r109517" + ] + }, + { + "affiliation": "Department of Physical Medicine and Rehabilitation, University of Colorado Anschutz Medical Campus, Aurora, CO, USA", + "ror_ids": [ + "https://ror.org/03wmf1y16" + ] + }, + { + "affiliation": "Institute of Pure and Applied Mathematics, UCLA, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "School of Materials and Energy, Yunnan University, Kunming, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0040axw97" + ] + }, + { + "affiliation": "Department of Pediatrics, National Cheng-Kung University Hospital, Tainan, Taiwan", + "ror_ids": [ + "https://ror.org/04zx3rq17" + ] + }, + { + "affiliation": "Department of Molecular and Human Genetics, Baylor College of Medicine, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/02pttbw34" + ] + }, + { + "affiliation": "Center for Translational Neuroscience, Isfahan University of Medical Sciences, Isfahan, Iran", + "ror_ids": [ + "https://ror.org/04waqzz56" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Dicle University, Diyarbakir, Turkey", + "ror_ids": [ + "https://ror.org/0257dtg16" + ] + }, + { + "affiliation": "Department of Internal Medicine, National Taiwan University Hospital Bei-Hu Branch, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/03nteze27" + ] + }, + { + "affiliation": "Tecnológico de Monterrey, Monterrey, Mexico", + "ror_ids": [ + "https://ror.org/03ayjn504" + ] + }, + { + "affiliation": "Bioinformation & DDBJ Center, National Institute of Genetics (NIG), Mishima, Japan", + "ror_ids": [ + "https://ror.org/02xg1m795" + ] + }, + { + "affiliation": "Beijing National Research Center for Information Science and Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Beijing University of Aeronautics and Astronautics, Beijing, China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Faculty of Agro-Industry, Chiang Mai University, Chiang Mai, Thailand", + "ror_ids": [ + "https://ror.org/05m2fqn25" + ] + }, + { + "affiliation": "School of Civil and Environmental Engineering, College of Engineering, Architecture and Technology, Oklahoma State University, Stillwater, OK, USA", + "ror_ids": [ + "https://ror.org/01g9vbr38" + ] + }, + { + "affiliation": "Pathology Unit, Department of Medicine and Technological Innovation, University of Insubria, Varese, Italy", + "ror_ids": [ + "https://ror.org/00s409261" + ] + }, + { + "affiliation": "Department of Conservative Dentistry, Faculty of Dentistry, Thamar University, Thamar, Yemen", + "ror_ids": [ + "https://ror.org/04tsbkh63" + ] + }, + { + "affiliation": "Instituto de Inmunología, Facultad de Medicina, Universidad Austral de Chile, Valdivia, Chile", + "ror_ids": [ + "https://ror.org/029ycp228" + ] + }, + { + "affiliation": "Personalized Genomic Medicine Research Center, Korea Research Institute of Bioscience and Biotechnology, Daejeon, Korea", + "ror_ids": [ + "https://ror.org/03ep23f07" + ] + }, + { + "affiliation": "Institute of Metallurgy, Ural Branch, Russian Academy of Sciences, Yekaterinburg, Russia", + "ror_ids": [ + "https://ror.org/04rb38388", + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Government of Canada, Statistics Canada, Ottawa, Canada", + "ror_ids": [ + "https://ror.org/05k71ja87", + "https://ror.org/010q4q527" + ] + }, + { + "affiliation": "Department of Internal Medicine, Skane University Hospital, Lund, Sweden", + "ror_ids": [ + "https://ror.org/02z31g829" + ] + }, + { + "affiliation": "GCAP-CASPER, Physics Department, Baylor University, Waco, TX, USA", + "ror_ids": [ + "https://ror.org/005781934" + ] + }, + { + "affiliation": "The Surgical Planning Laboratory, Department of Radiology, Brigham and Women’s Hospital, Harvard Medical School, Boston, USA", + "ror_ids": [ + "https://ror.org/03vek6s52", + "https://ror.org/04b6nzv94" + ] + }, + { + "affiliation": "Center for Spinal Surgery and Neurotraumatology, Berufsgenossenschaftliche Unfallklinik Frankfurt am Main, Frankfurt, Germany", + "ror_ids": [ + "https://ror.org/04kt7f841" + ] + }, + { + "affiliation": "School of Social & Cultural Studies, Victoria University of Wellington, Wellington, New Zealand", + "ror_ids": [ + "https://ror.org/0040r6f76" + ] + }, + { + "affiliation": "Faculty of Fine Arts, Department of Gastronomy and Culinary Arts, Munzur University, Tunceli, Turkey", + "ror_ids": [ + "https://ror.org/05v0p1f11" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Landmark University, Omu-Aran, Nigeria", + "ror_ids": [ + "https://ror.org/04gw4zv66" + ] + }, + { + "affiliation": "Laboratorio de Ingeniería Genética, Departamento de Biotecnología, Facultad de Ciencias Químicas, Universidad Autónoma de Coahuila, Saltillo, Coah, Mexico", + "ror_ids": [ + "https://ror.org/00dpnh189" + ] + }, + { + "affiliation": "Department of Biology, College of Science, University of Sulaimani, Sulaimani, Kurdistan Region, Iraq", + "ror_ids": [ + "https://ror.org/00saanr69" + ] + }, + { + "affiliation": "Department of Mathematics, Nalanda College, Patliputra University, Biharsharif, Patna, India", + "ror_ids": [ + "https://ror.org/04rjeh836" + ] + }, + { + "affiliation": "Department of Oncology, Danzhou People’s Hospital, Danzhou City, Hainan, Province, China", + "ror_ids": [ + "https://ror.org/00r398124" + ] + }, + { + "affiliation": "Escuela Nacional de Estudios Superiores (ENES) Unidad Morelia, Universidad Nacional Autónoma de México (UNAM), Morelia, Michoacán, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "College of Robotics, Beijing Union University, Beijing, China", + "ror_ids": [ + "https://ror.org/01hg31662" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Arts and Sciences, University of Kırklareli, Kırklareli, Turkey", + "ror_ids": [ + "https://ror.org/00jb0e673" + ] + }, + { + "affiliation": "Strength and Conditioning Center, Chengdu Sport University, Chengdu, China", + "ror_ids": [ + "https://ror.org/05580ht21" + ] + }, + { + "affiliation": "State Key Laboratory of Water Resource Protection and Utilization in Coal Mining, China Energy Investment Group, Beijing, China", + "ror_ids": [ + "https://ror.org/03x0rzg54" + ] + }, + { + "affiliation": "BJ Medical College, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/0408b4j80" + ] + }, + { + "affiliation": "Shihezi University, Shihezi City, Xinjiang Uygur Autonomous Region, China", + "ror_ids": [ + "https://ror.org/04x0kvm78" + ] + }, + { + "affiliation": "Medizinische Klinik, AGAPLESION Markus-Krankenhaus, Frankfurt am Main, Deutschland", + "ror_ids": [ + "https://ror.org/04hd04g86" + ] + }, + { + "affiliation": "Department of Pathology, Osaka City General Hospital, Osaka, Japan", + "ror_ids": [ + "https://ror.org/00v053551" + ] + }, + { + "affiliation": "Engineering Mathematics and Physics Department, Faculty of Engineering, Fayoum University, Fayoum, Egypt", + "ror_ids": [ + "https://ror.org/023gzwx10" + ] + }, + { + "affiliation": "Department of Industrial Electronics and Control Engineering, Faculty of Electronic Engineering, Menoufia University, Menouf, Egypt", + "ror_ids": [ + "https://ror.org/05sjrb944" + ] + }, + { + "affiliation": "Institute of Sport and Motion Science, University of Stuttgart, Stuttgart, Germany", + "ror_ids": [ + "https://ror.org/04vnq7t77" + ] + }, + { + "affiliation": "Faculty of Computer and Software, Huaiyin Institute of Technology, Huaian, Jiangsu, China", + "ror_ids": [ + "https://ror.org/0555ezg60" + ] + }, + { + "affiliation": "Committee on Immunology, University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of Pathology, the Affiliated Suqian Hospital of Xuzhou Medical University (Suqian Hospital of Nanjing Drum Tower Hospital Group), Suqian, China", + "ror_ids": [ + "https://ror.org/026axqv54" + ] + }, + { + "affiliation": "Huaqiao University, Huaqiao, China", + "ror_ids": [ + "https://ror.org/03frdh605" + ] + }, + { + "affiliation": "Department of Anesthesiology, Creighton University School of Medicine, Omaha, NE, USA", + "ror_ids": [ + "https://ror.org/05wf30g94" + ] + }, + { + "affiliation": "Department of Electronic Engineering, Chinese University of Hong Kong, Shatin, Hong Kong", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Department of Industrial Engineering, Central Tehran Branch, Islamic Azad University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01kzn7k21" + ] + }, + { + "affiliation": "Department of Mathematics, Texas A&M University-Kingsville, Kingsville, TX, USA", + "ror_ids": [ + "https://ror.org/05abs3w97" + ] + }, + { + "affiliation": "Graduate Program in Mechanical Engineering, Universidade Federal de Minas Gerais, Belo Horizonte, MG, Brazil", + "ror_ids": [ + "https://ror.org/0176yjw32" + ] + }, + { + "affiliation": "School of Physics Science and Engineering, Tongji University, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "Department of Physical and Biological Sciences, The College of Saint Rose, Albany, NY, USA", + "ror_ids": [ + "https://ror.org/00nv9r617" + ] + }, + { + "affiliation": "Department of Pathology, St. Olavs Hospital, Trondheim University Hospital, Trondheim, Norway", + "ror_ids": [ + "https://ror.org/01a4hbq44" + ] + }, + { + "affiliation": "Department of General Psychiatry, Taipei City Psychiatric Center, Taipei City Hospital, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/047n4ns40", + "https://ror.org/02gzfb532" + ] + }, + { + "affiliation": "Lombardi Comprehensive Cancer Center, Georgetown University, Washington, D.C., USA", + "ror_ids": [ + "https://ror.org/05vzafd60" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Birla Institute of Technology & Science-Pilani, Hyderabad, Telangana, India", + "ror_ids": [ + "https://ror.org/001p3jz28" + ] + }, + { + "affiliation": "LOEWE Centre for Translational Biodiversity Genomics, Frankfurt, Germany", + "ror_ids": [ + "https://ror.org/0396gab88" + ] + }, + { + "affiliation": "Department of Health Management and Policy, School of Health, Georgetown University, Washington DC, USA", + "ror_ids": [ + "https://ror.org/05vzafd60" + ] + }, + { + "affiliation": "CREST, Japan Science and Technology Agency, Kawaguchi, Japan", + "ror_ids": [ + "https://ror.org/00097mb19" + ] + }, + { + "affiliation": "College of Physical Education and Dance, Federal University of Goias, Goiania, Brazil", + "ror_ids": [ + "https://ror.org/0039d5757" + ] + }, + { + "affiliation": "Lero — The Irish Software Research Centre, University of Limerick, Limerick, Ireland", + "ror_ids": [ + "https://ror.org/00a0n9e72" + ] + }, + { + "affiliation": "Department of Biostatistics and Center for Statistical Genetics, University of Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "ICGM, Univ Montpellier, CNRS, ENSCM, Montpellier, France", + "ror_ids": [ + "https://ror.org/051escj72" + ] + }, + { + "affiliation": "Department of Mathematics, The Technion – Israel Institute of Technology, Haifa, Israel", + "ror_ids": [ + "https://ror.org/03qryx823" + ] + }, + { + "affiliation": "Department of Infrastructure Engineering & Melbourne Climate Futures Academy, University of Melbourne, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Instituto de Investigación en Informática de Albacete (I3A), Universidad de Castilla-La Mancha, Albacete, Spain", + "ror_ids": [ + "https://ror.org/05r78ng12" + ] + }, + { + "affiliation": "School of Science and Engineering, São Paulo State University, Tupã, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Key Laboratory of Advanced Manufacturing and Intelligent Technology of Ministry of Education, School of Mechanical Power Engineering, Harbin University of Science and Technology, Harbin, China", + "ror_ids": [ + "https://ror.org/04e6y1282" + ] + }, + { + "affiliation": "Department of Clinical Sciences, Danderyd University Hospital, Karolinska Institute, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/056d84691" + ] + }, + { + "affiliation": "Department of Cardiology, Carl-Thiem-Klinikum Cottbus, Cottbus, Germany", + "ror_ids": [ + "https://ror.org/044fhy270" + ] + }, + { + "affiliation": "School of Architecture, Xi’an University of Architecture and Technology, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/04v2j2k71" + ] + }, + { + "affiliation": "Department of Invertebrate Evolution, Institute of Zoology and Biomedical Research, Faculty of Biology, Jagiellonian University, Kraków, Poland", + "ror_ids": [ + "https://ror.org/03bqmcz70" + ] + }, + { + "affiliation": "Department of Psychiatry, University of Melbourne, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "Department of Oral and Maxillofacial Clinical Science, Faculty of Dentistry, Universiti Malaya, Kuala Lumpur, Malaysia", + "ror_ids": [ + "https://ror.org/00rzspn62" + ] + }, + { + "affiliation": "Rio de Janeiro State University, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/0198v2949" + ] + }, + { + "affiliation": "Department of Public health, Pontificia Universidad Católica de Chile, Santiago, Chile", + "ror_ids": [ + "https://ror.org/04teye511" + ] + }, + { + "affiliation": "Department of Plastic Surgery, Hospital Italiano de Buenos Aires, University of Buenos Aires School of Medicine (UBA) and Hospital Italiano de Buenos Aires University Institute (IUHIBA), Buenos Aires, Argentina", + "ror_ids": [ + "https://ror.org/00bq4rw46", + "https://ror.org/0081fs513" + ] + }, + { + "affiliation": "Department of Medicinal Chemistry, Faculty of Pharmacy, Minia University, Minia, Egypt", + "ror_ids": [ + "https://ror.org/02hcv4z63" + ] + }, + { + "affiliation": "Labcom - Comunicação e Artes, Universidade da Beira Interior, Covilhã, Portugal", + "ror_ids": [ + "https://ror.org/03nf36p02" + ] + }, + { + "affiliation": "Behavioral Science for Disease Prevention and Health Care, Technical University of Munich, Munich, Germany", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Department of Clinical Laboratory, Women’s Hospital, School of Medicine Zhejiang University, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/042t7yh44", + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "School of Management, Harbin Institute of Technology, Harbin, China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Institute of Physics, Bhubaneswar, India", + "ror_ids": [ + "https://ror.org/01741jv66" + ] + }, + { + "affiliation": "Institute of Applied Mathematics and Mechanics, Donetsk, Russia", + "ror_ids": [ + "https://ror.org/029fhmb28" + ] + }, + { + "affiliation": "Sustainability Research Cluster, Universitas Esa Unggul, Jakarta, Indonesia", + "ror_ids": [ + "https://ror.org/00cwwxh37" + ] + }, + { + "affiliation": "Department Biological, Geological and Environmental Sciences, University of Catania, Catania, Italy", + "ror_ids": [ + "https://ror.org/03a64bh57" + ] + }, + { + "affiliation": "Department of Ecology, College of Natural Resources and Environment, South China Agricultural University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/05v9jqt67" + ] + }, + { + "affiliation": "Department of Chemistry, College of Science, Oregon State University, Corvallis, OR, USA", + "ror_ids": [ + "https://ror.org/00ysfqy60" + ] + }, + { + "affiliation": "Department of Oncology, Guang’anmenHospital, China Academy of Chinese Medical Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/042pgcv68" + ] + }, + { + "affiliation": "UK Dementia Research Institute at UCL and Department of Neurodegenerative Disease, UCL Queen Square Institute of Neurology, London, UK", + "ror_ids": [ + "https://ror.org/02wedp412" + ] + }, + { + "affiliation": "Novosibirsk State University, Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/04t2ss102" + ] + }, + { + "affiliation": "Department of Thoracic Radiotherapy, Institute of Cancer and Basic Medicine, Chinese Academy of Sciences, Cancer Hospital of the University of Chinese Academy of Sciences, Zhejiang Cancer Hospital, Hangzhou, China", + "ror_ids": [ + "https://ror.org/0144s0951", + "https://ror.org/05qbk4x57" + ] + }, + { + "affiliation": "Department of Rehabilitation Medicine, Seoul National University Hospital, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/01z4nnt86" + ] + }, + { + "affiliation": "Occupational Health and Safety Program, Graduate School of Natural and Applied Sciences, Middle East Technical Univ., Ankara, Turkey", + "ror_ids": [ + "https://ror.org/014weej12" + ] + }, + { + "affiliation": "Institute of Nanoscience and Applications, Southern University of Science and Technology, Shenzhen, China", + "ror_ids": [ + "https://ror.org/049tv2d57" + ] + }, + { + "affiliation": "Department of Neurological Surgery, Chang Gung Memorial Hospital Chiayi Branch, Chia-Yi, Taiwan", + "ror_ids": [ + "https://ror.org/04gy6pv35" + ] + }, + { + "affiliation": "Institute of Health Research, University of Notre Dame Australia, Fremantle, WA, Australia", + "ror_ids": [ + "https://ror.org/02stey378" + ] + }, + { + "affiliation": "Radboud University Medical Center, Nijmegen, The Netherlands", + "ror_ids": [ + "https://ror.org/05wg1m734" + ] + }, + { + "affiliation": "Agriculture Victoria, Ellinbank Dairy Centre, Ellinbank, VIC, Australia", + "ror_ids": [ + "https://ror.org/01mqx8q10" + ] + }, + { + "affiliation": "Laboratório de Instrumentação e Física Experimental de Partículas — LIP, Lisboa, Portugal", + "ror_ids": [ + "https://ror.org/01hys1667" + ] + }, + { + "affiliation": "Department of Computer Technology, Kongu Engineering College, Perundurai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Department of Clinical Anatomy, College of Health Sciences, University of KwaZulu-Natal, Durban, South Africa", + "ror_ids": [ + "https://ror.org/04qzfn040" + ] + }, + { + "affiliation": "School of Electronic and Optical Engineering, Nanjing University of Science and Technology, Nanjing, China", + "ror_ids": [ + "https://ror.org/00xp9wg62" + ] + }, + { + "affiliation": "Department of Mathematics, Niagara University, Lewiston, NY, USA", + "ror_ids": [ + "https://ror.org/05309tf52" + ] + }, + { + "affiliation": "Department of Engineering Management, College of Engineering, Prince Sultan University, Riyadh, Kingdom of Saudi Arabia", + "ror_ids": [ + "https://ror.org/053mqrf26" + ] + }, + { + "affiliation": "Department of Earth Sciences, Southern Methodist University, Dallas, TX, USA", + "ror_ids": [ + "https://ror.org/042tdr378" + ] + }, + { + "affiliation": "School of Ecology and Environment, Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Department of Neuroscience, University of Montreal, Montreal, QC, Canada", + "ror_ids": [ + "https://ror.org/0161xgx34" + ] + }, + { + "affiliation": "Department of Computer Science and Software Engineering, College of Information Technology, United Arab Emirates University, Al Ain, United Arab Emirates", + "ror_ids": [ + "https://ror.org/01km6p862" + ] + }, + { + "affiliation": "Chair of Vegetative Anatomy, Faculty of Medicine, Institute of Anatomy, Ludwig-Maximilians-University (LMU) Munich, Munich, Germany", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "The Department of Anesthesiology, Perioperative Care, and Pain Medicine, NYU Grossman School of Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "Department of Electrophysics, National Yang Ming Chiao Tung University, Hsinchu, Taiwan, R.O.C.", + "ror_ids": [ + "https://ror.org/00se2k293" + ] + }, + { + "affiliation": "Departamento de Ingeniería Aeroespacial y Mecánica de Fluidos, ETSI, Universidad de Sevilla, Seville, Spain", + "ror_ids": [ + "https://ror.org/03yxnpp24" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, DMI College of Engineering, Chennai, Tamilnadu, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Department of Metallurgical Engineering, Andhra University, Visakhapatnam, Andhra Pradesh, India", + "ror_ids": [ + "https://ror.org/049skhf47" + ] + }, + { + "affiliation": "Physics Department, Marquette University, Milwaukee, WI, USA", + "ror_ids": [ + "https://ror.org/04gr4te78" + ] + }, + { + "affiliation": "Department of Gastrointestinal Surgery, Saitama City Hospital, Saitama, Japan", + "ror_ids": [ + "https://ror.org/0378e9394" + ] + }, + { + "affiliation": "Institute of Polymer and Dye Technology, Faculty of Chemistry, Lodz University of Technology, Lodz, Poland", + "ror_ids": [ + "https://ror.org/00s8fpf52" + ] + }, + { + "affiliation": "Department of Language and Communication Studies, University of Jyväskylä, Jyväskylä, Finland", + "ror_ids": [ + "https://ror.org/05n3dz165" + ] + }, + { + "affiliation": "The Rural Development Academy & Agricultural Experiment Station, Zhejiang University, Huzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Animal Model Research Group, Korea Institute of Toxicology, Jeongeup, Jellabuk-do, Republic of Korea", + "ror_ids": [ + "https://ror.org/0159w2913" + ] + }, + { + "affiliation": "Department of Educational Technology, Wenzhou University, Wenzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/020hxh324" + ] + }, + { + "affiliation": "Institute of Critical Materials for Integrated Circuits, Shenzhen Polytechnic, Shenzhen, China", + "ror_ids": [ + "https://ror.org/00d2w9g53" + ] + }, + { + "affiliation": "Department of Family Medicine and Primary Care, School of Clinical Medicine, Li Ka Shing Faculty of Medicine, The University of Hong Kong, Hong Kong SAR, China", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "K G Jebsen Centre for Genetic Epdiemiology, Department of Public Health and General Practice, Norwegian University of Science and Technology, Trondheim, Norway", + "ror_ids": [ + "https://ror.org/05xg72x27" + ] + }, + { + "affiliation": "Department of Pathology, Fox Chase Cancer Center, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/0567t7073" + ] + }, + { + "affiliation": "Zhejiang Provincial Key Laboratory of Plant Evolutionary Ecology and Conservation, Taizhou University, Taizhou, China", + "ror_ids": [ + "https://ror.org/04fzhyx73" + ] + }, + { + "affiliation": "Southern Marine Science and Engineering Guangdong Laboratory (Zhuhai), Zhuhai, China", + "ror_ids": [ + "https://ror.org/03swgqh13" + ] + }, + { + "affiliation": "Department of Dermatology, Institute of Dermatology, Jiangxi Academy of Clinical Medical Sciences, The First Affiliated Hospital of Nanchang University, Nanchang, Jiangxi, China", + "ror_ids": [ + "https://ror.org/05gbwr869" + ] + }, + { + "affiliation": "Department of Prosthodontics, Saveetha Dental College and Hospital, Saveetha Institute of Medical and Technical Sciences (SIMATS), Saveetha University, Chennai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/0034me914" + ] + }, + { + "affiliation": "Business Decisions and Data Science, University of Passau, Passau, Germany", + "ror_ids": [ + "https://ror.org/05ydjnb78" + ] + }, + { + "affiliation": "Programa de Posgrado en Biología, Universidad de Costa Rica, San Pedro, San José, Costa Rica", + "ror_ids": [ + "https://ror.org/02yzgww51" + ] + }, + { + "affiliation": "Grassland Science and Renewable Plant Resources, Universität Kassel, Witzenhausen, Germany", + "ror_ids": [ + "https://ror.org/04zc7p361" + ] + }, + { + "affiliation": "Department of Pharmacology and Toxicology, and the Cardiovascular Center, Medical College of Wisconsin, Milwaukee, WI, USA", + "ror_ids": [ + "https://ror.org/00qqv6244" + ] + }, + { + "affiliation": "School of Engineering and Technology, Pondicherry University, Puducherry, India", + "ror_ids": [ + "https://ror.org/01a3mef16" + ] + }, + { + "affiliation": "Department of Advanced Convergence, Handong Global University, Pohang, Republic of Korea", + "ror_ids": [ + "https://ror.org/00txhkt32" + ] + }, + { + "affiliation": "Department of Geography, University of Cambridge, Cambridge, UK", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Meteorological Research Division, Environment and Climate Change Canada, Dorval, Canada", + "ror_ids": [ + "https://ror.org/026ny0e17" + ] + }, + { + "affiliation": "Ethox Centre, Nuffield Department of Population Health, University of Oxford, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Institute for Human Health & Disease Intervention and Department of Chemistry & Biochemistry, Florida Atlantic University, Jupiter, FL, USA", + "ror_ids": [ + "https://ror.org/05p8w6387" + ] + }, + { + "affiliation": "Department of Biology, Trent University, Peterborough, ON, Canada", + "ror_ids": [ + "https://ror.org/03ygmq230" + ] + }, + { + "affiliation": "Graduate School of ISEE, Kyushu University, Fukuoka, Japan", + "ror_ids": [ + "https://ror.org/00p4k0j84" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Faculty of Engineering and Architectural Sciences, Eskisehir Osmangazi University, Eskisehir, Turkey", + "ror_ids": [ + "https://ror.org/01dzjez04" + ] + }, + { + "affiliation": "Peking University-Yunnan Baiyao International Medical Research Center, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Global Alliance for Mental Health and Sport, School of Psychology, University of Wollongong, Wollongong, Australia", + "ror_ids": [ + "https://ror.org/00jtmb277" + ] + }, + { + "affiliation": "Department of Diabetes and Endocrinology, Salford Royal NHS Foundation Trust, Salford, UK", + "ror_ids": [ + "https://ror.org/019j78370" + ] + }, + { + "affiliation": "Division of Molecular Genetics, The Netherlands Cancer Institute, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/03xqtf034" + ] + }, + { + "affiliation": "Department of Surgery, Hospital Alemán of Buenos Aires, Buenos Aires, Argentina", + "ror_ids": [ + "https://ror.org/03ydmxb41" + ] + }, + { + "affiliation": "Key Laboratory of Forest Ecology and Environment of National Forestry and Grassland Administration, Ecology and Nature Conservation Institute, Chinese Academy of Forestry, Beijing, China", + "ror_ids": [ + "https://ror.org/0360dkv71" + ] + }, + { + "affiliation": "Construction Research Institute, National Water Research Center, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/04320xd69" + ] + }, + { + "affiliation": "Respiratory Diseases Unit, Department of Medical and Surgical Sciences & Neurosciences, University of Siena, Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "Department of Radiology, Beijing Shijitan Hospital, Capital Medical University, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0569k1630", + "https://ror.org/013xs5b60" + ] + }, + { + "affiliation": "Department of Biophysics, University of Texas Southwestern Medical Center, Dallas, TX, USA", + "ror_ids": [ + "https://ror.org/05byvp690" + ] + }, + { + "affiliation": "Department of Mathematics, Heritage Institute of Technology, Kolkata, West Bengal, India", + "ror_ids": [ + "https://ror.org/030tcae29" + ] + }, + { + "affiliation": "Tilganga Institute of Ophthalmology, Kathmandu, Nepal", + "ror_ids": [ + "https://ror.org/03m8b9646" + ] + }, + { + "affiliation": "Eunice Kennedy Shriver National Institute of Child Health and Human Development, Bethesda, MD, USA", + "ror_ids": [ + "https://ror.org/04byxyr05" + ] + }, + { + "affiliation": "Department of Cardiology, Royal Prince Alfred Hospital, Camperdown, NSW, Australia", + "ror_ids": [ + "https://ror.org/05gpvde20" + ] + }, + { + "affiliation": "School of Life and Environmental Sciences, Shaoxing University, Shaoxing, Zhejiang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0435tej63" + ] + }, + { + "affiliation": "Rehabilitation and Prevention Center, Heart Vascular Stroke Institute, Samsung Medical Center, Sungkyunkwan University School of Medicine, Seoul, Korea", + "ror_ids": [ + "https://ror.org/05a15z872", + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Department of Cellular and Molecular Biology, Faculty of Advanced Science and Technology, Tehran Medical Sciences, Islamic Azad University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01kzn7k21" + ] + }, + { + "affiliation": "College of Food Science, Sichuan Agricultural University, Ya’an, Sichuan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0388c3403" + ] + }, + { + "affiliation": "Section of Endocrinology and Metabolism of Organ and Cellular Transplantation, AOUP Cisanello University Hospital, Pisa, Italy", + "ror_ids": [ + "https://ror.org/05xrcj819" + ] + }, + { + "affiliation": "Institute of Education, University of London, London, UK", + "ror_ids": [ + "https://ror.org/04cw6st05" + ] + }, + { + "affiliation": "Civil and Environmental Engineering, University of Waterloo, Waterloo, Ontario, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "University of Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/021018s57" + ] + }, + { + "affiliation": "Department of Urology, NTT Medical Center Tokyo, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/0285prp25" + ] + }, + { + "affiliation": "Distinguished Visiting Professor at the College of Pharmaceutical Sciences, Dayananda Sagar University, Bengaluru, Karnataka, India", + "ror_ids": [ + "https://ror.org/01xapxe37" + ] + }, + { + "affiliation": "Oklahoma State University Department of Orthopedic Surgery, Tulsa, OK, USA", + "ror_ids": [ + "https://ror.org/01g9vbr38" + ] + }, + { + "affiliation": "Laboratory of Ichthyology, Department of Zoology, School of Biology, Aristotle University of Thessaloniki, Thessaloniki, Greece", + "ror_ids": [ + "https://ror.org/02j61yw88" + ] + }, + { + "affiliation": "Translational Genomics and Targeted Therapeutics in Solid Tumors Lab – IDIBAPS, Hospital Clinic Barcelona, Universidad de Barcelona, Barcelona, España", + "ror_ids": [ + "https://ror.org/021018s57", + "https://ror.org/02a2kzf50" + ] + }, + { + "affiliation": "National Key Laboratory of Medical Immunology, Institute of Immunology, Naval Medical University, Shanghai, China", + "ror_ids": [ + "https://ror.org/01caehj63" + ] + }, + { + "affiliation": "Aerospace and Mechanical Engineering Group, Ronin Institute, Montclair, NJ, USA", + "ror_ids": [ + "https://ror.org/04awze035" + ] + }, + { + "affiliation": "School of Nursing and Midwifery, Faculty of Health, University of Technology Sydney, Ultimo, NSW, Australia", + "ror_ids": [ + "https://ror.org/03f0f6041" + ] + }, + { + "affiliation": "Instituto de Investigaciones sobre los Recursos Naturales-Universidad Michoacana de San Nicolás de Hidalgo, Morelia, Michoacán, México", + "ror_ids": [ + "https://ror.org/00z0kq074" + ] + }, + { + "affiliation": "Department of Textile Engineering, University of Minho, Guimarães, Portugal", + "ror_ids": [ + "https://ror.org/037wpkx04" + ] + }, + { + "affiliation": "Department of Dermatology, School of Medicine, University of Patras, Rio-Patras, Greece", + "ror_ids": [ + "https://ror.org/017wvtq80" + ] + }, + { + "affiliation": "Departamento de Matemáticas Fundamentales, Facultad de Ciencias, UNED, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02msb5n36" + ] + }, + { + "affiliation": "Ecole Nationale d’Ingénieurs de Carthage, Université de Carthage, Tunis, Tunisia", + "ror_ids": [ + "https://ror.org/057x6za15" + ] + }, + { + "affiliation": "Department of Cardiac Surgery, The First Affiliated Hospital of Third Military Medical University (Army Medical University), Chongqing, China", + "ror_ids": [ + "https://ror.org/05w21nn13" + ] + }, + { + "affiliation": "State Key Laboratory of Biogeology and Environmental Geology, China University of Geosciences, Beijing, China and Department of Geology and Environmental Earth Science, Miami University, Oxford, OH, USA", + "ror_ids": [ + "https://ror.org/05nbqxr67", + "https://ror.org/04q6c7p66" + ] + }, + { + "affiliation": "University of Kent, Canterbury, UK", + "ror_ids": [ + "https://ror.org/00xkeyj56" + ] + }, + { + "affiliation": "Department of Economics and Statistics, CELPE, University of Salerno, Fisciano, SA, Italy", + "ror_ids": [ + "https://ror.org/0192m2k53" + ] + }, + { + "affiliation": "Department of Neurology, Cooper Medical School at Rowan University, Camden, USA", + "ror_ids": [ + "https://ror.org/049v69k10", + "https://ror.org/007evha27" + ] + }, + { + "affiliation": "Department of Education Studies, University of California, San Diego, USA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Department of Food Engineering, Faculty of Engineering, Ege University, İzmir, Bornova, Türkiye", + "ror_ids": [ + "https://ror.org/02eaafc18" + ] + }, + { + "affiliation": "Department of Radiation Oncology, Medical Center – University of Freiburg, Faculty of Medicine, University of Freiburg, German Cancer Consortium (DKTK), partner site DKTK-Freiburg, Freiburg, Germany", + "ror_ids": [ + "https://ror.org/0245cg223", + "https://ror.org/02pqn3g31" + ] + }, + { + "affiliation": "Osnabrück University, Osnabrück, Germany", + "ror_ids": [ + "https://ror.org/04qmmjx98" + ] + }, + { + "affiliation": "Faculty of Technology, Department of Electrical Engineering, University of Brasília, Brasília, Brazil", + "ror_ids": [ + "https://ror.org/02xfp8v59" + ] + }, + { + "affiliation": "Zibo Maternal and Child Health Hospital, Zibo, China", + "ror_ids": [ + "https://ror.org/00zsezt30" + ] + }, + { + "affiliation": "Department of Emergency Medicine, University of British Columbia, Vancouver, BC, Canada", + "ror_ids": [ + "https://ror.org/03rmrcq20" + ] + }, + { + "affiliation": "Department of Triglyceride Science, Graduate School of Medicine, Osaka University, Osaka, Japan", + "ror_ids": [ + "https://ror.org/035t8zc32" + ] + }, + { + "affiliation": "College of Science, Guilin University of Technology, Guilin, Guangxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03z391397" + ] + }, + { + "affiliation": "Institute of Medical Sciences, Department of Surgery, Banaras Hindu University, Varanasi, India", + "ror_ids": [ + "https://ror.org/04cdn2797", + "https://ror.org/04y75dx46" + ] + }, + { + "affiliation": "National Institute of Technology Uttarakhand, Srinagar Garhwal, Uttarakhand, India", + "ror_ids": [] + }, + { + "affiliation": "School of chemical engineering, State Key Lab of Polymer Materials Engineering, Sichuan University, Chengdu, PR China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "Department of Civil Engineering, Aalto University, Espoo, Finland", + "ror_ids": [ + "https://ror.org/020hwjq30" + ] + }, + { + "affiliation": "Department of Sports Medicine, Medical Clinic VII, University Hospital Heidelberg, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/013czdx64" + ] + }, + { + "affiliation": "Institute of High Performance Computing (IHPC), Agency for Science, Technology and Research (A*STAR), Singapore, Republic of Singapore", + "ror_ids": [ + "https://ror.org/02n0ejh50", + "https://ror.org/036wvzt09" + ] + }, + { + "affiliation": "Center for Individualized Medicine and Department of Clinical Genomics, Mayo Clinic, Rochester, MN, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Sri Ramakrishna Engineering College, Coimbatore, India", + "ror_ids": [ + "https://ror.org/056nttx82" + ] + }, + { + "affiliation": "Sektion Berufsdermatologie, Zentrum Hautklinik, Universitätsklinikum Heidelberg, Heidelberg, Deutschland", + "ror_ids": [ + "https://ror.org/013czdx64" + ] + }, + { + "affiliation": "Department of Rehabilitation and Human Performance, Icahn School of Medicine at Mount Sinai, New York, NY, USA", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "CBIOS-Universidade Lusófona’s Research Center for Biosciences and Health Technologies, Lisbon, Portugal", + "ror_ids": [ + "https://ror.org/05xxfer42" + ] + }, + { + "affiliation": "Department of Physics, Faculty of Science, University of Gujrat, Hafiz Hayat Campus, Gujrat, Pakistan", + "ror_ids": [ + "https://ror.org/01xe5fb92" + ] + }, + { + "affiliation": "Department of Medical Oncology, The Sixth Affiliated Hospital of Sun-Yat Sen University, Guangzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/005pe1772" + ] + }, + { + "affiliation": "Jockey Club School of Public Health and Primary Care, The Chinese University of Hong Kong, Hong Kong, China", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Department of Civil Engineering, Universiti Putra Malaysia, Serdang, Malaysia", + "ror_ids": [ + "https://ror.org/02e91jd64" + ] + }, + { + "affiliation": "Range Cattle Research and Education Center, University of Florida, Ona, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Civil and Environmental Engineering, Michigan State University, East Lansing, MI, USA", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "ONIRIS-UMR GEPEA CNRS 6144, Nantes, France", + "ror_ids": [ + "https://ror.org/05q0ncs32" + ] + }, + { + "affiliation": "Faculty of Architecture, Eastern Mediterranean University, Famagusta, Cyprus", + "ror_ids": [ + "https://ror.org/00excyz84" + ] + }, + { + "affiliation": "The Wharton School, University of Pennsylvania, Philadelphia, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "The School of Computer Science & Data Engineering, NingboTech University, Ningbo, China", + "ror_ids": [] + }, + { + "affiliation": "Department of Geological Sciences, New Mexico State University, Las Cruces, NM, USA", + "ror_ids": [ + "https://ror.org/00hpz7z43" + ] + }, + { + "affiliation": "RWTH Aachen University, Digital Additive Production (DAP), Aachen, Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "CHU de Québec-Université Laval Research Centre, Québec, Québec, Canada", + "ror_ids": [ + "https://ror.org/006a7pj43", + "https://ror.org/04sjchr03" + ] + }, + { + "affiliation": "Skövde Artificial Intelligence Lab, School of Informatics, University of Skövde, Skövde, Sweden", + "ror_ids": [ + "https://ror.org/051mrsz47" + ] + }, + { + "affiliation": "Donald and Barbara Zucker School of Medicine, Hofstra/Northwell, Hempstead, New York, NY, USA", + "ror_ids": [ + "https://ror.org/01ff5td15" + ] + }, + { + "affiliation": "PG Department of Mathematics, GDC, Baramulla, India", + "ror_ids": [ + "https://ror.org/028qd3f30" + ] + }, + { + "affiliation": "Department of Non-Viral Delivery, RNA & Gene Therapies, Novo Nordisk A/S, Måløv, Denmark", + "ror_ids": [ + "https://ror.org/0435rc536" + ] + }, + { + "affiliation": "Psychology, University of Cyprus, Nicosia, Cyprus", + "ror_ids": [ + "https://ror.org/02qjrjx09" + ] + }, + { + "affiliation": "Department of Chemical Engineering, School of Engineering, The University of Manchester, Manchester, UK", + "ror_ids": [ + "https://ror.org/027m9bs27" + ] + }, + { + "affiliation": "Department of Medicine, Vanderbilt University Medical Center, Nashville, TN, USA", + "ror_ids": [ + "https://ror.org/05dq2gs74" + ] + }, + { + "affiliation": "Forestry Faculty, Bauman Moscow State Technical University, Mytischi, Russia", + "ror_ids": [ + "https://ror.org/00pb8h375" + ] + }, + { + "affiliation": "Department of Radiology and Magnetic Resonance, UZ Brussel, Brussels, Belgium", + "ror_ids": [ + "https://ror.org/038f7y939" + ] + }, + { + "affiliation": "Chair of Engineering Geology and Hydrogeology, RWTH-Aachen University, Aachen, Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "Acharya Narendra Dev College, University of Delhi, New Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Victoria University of Wellington, Wellington, New Zealand", + "ror_ids": [ + "https://ror.org/0040r6f76" + ] + }, + { + "affiliation": "School of Natural Sciences, Macquarie University, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/01sf06y89" + ] + }, + { + "affiliation": "Swiss Data Science Center, ETH Zürich and EPFL, Zürich, Switzerland", + "ror_ids": [ + "https://ror.org/02hdt9m26", + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Department of Global Development and Planning, University of Agder, Kristiansand, Norway", + "ror_ids": [ + "https://ror.org/03x297z98" + ] + }, + { + "affiliation": "Department of Internal Medicine, Amsterdam UMC Location University of Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463" + ] + }, + { + "affiliation": "Medical faculty, University of Geneva, Geneva, Switzerland", + "ror_ids": [ + "https://ror.org/01swzsf04" + ] + }, + { + "affiliation": "Department of Ocean Science, Hong Kong University of Science and Technology, Kowloon, Hong Kong, China", + "ror_ids": [ + "https://ror.org/00q4vv597" + ] + }, + { + "affiliation": "Machine Learning Group, Technische Universität Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/03v4gjf40" + ] + }, + { + "affiliation": "Division of Human Nutrition and Health, Wageningen University & Research, Wageningen, The Netherlands", + "ror_ids": [ + "https://ror.org/04qw24q55" + ] + }, + { + "affiliation": "Department of Pharmacy, Beijing Youan Hospital, Capital Medical University, Beijing, China", + "ror_ids": [ + "https://ror.org/04etaja30", + "https://ror.org/013xs5b60" + ] + }, + { + "affiliation": "The European Mobile Laboratory Consortium, Bernhard-Nocht-Institute for Tropical Medicine, Hamburg, Germany", + "ror_ids": [ + "https://ror.org/01evwfd48" + ] + }, + { + "affiliation": "Institute of Clinical Medicine, College of Medicine, National Cheng Kung University, Tainan, Taiwan", + "ror_ids": [ + "https://ror.org/01b8kcc49" + ] + }, + { + "affiliation": "Department of Urology, Haukeland University Hospital, Bergen, Norway", + "ror_ids": [ + "https://ror.org/03np4e098" + ] + }, + { + "affiliation": "Environmental Microbiology Laboratory, Water Pollution Research Department, Environmental Research and Climate Change Institute, National Research Centre, Giza, Egypt", + "ror_ids": [ + "https://ror.org/02n85j827" + ] + }, + { + "affiliation": "Purdue University, West Lafayette, Indiana, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Institut de Cancérologie Strasbourg Europe, Strasbourg, France", + "ror_ids": [ + "https://ror.org/008fdbn61" + ] + }, + { + "affiliation": "Division of Medical Physics, Department of Diagnostic and Interventional Radiology, Medical Center – University of Freiburg, Faculty of Medicine, University of Freiburg, Freiburg, Deutschland", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "Centro de Investigación y Desarrollo em Criotecnologia de Alimentos (CIDCA), Facultad de Ciencias Exactas, Universidad Nacional de La Plata, La Plata, Argentina", + "ror_ids": [ + "https://ror.org/01tjs6929", + "https://ror.org/04v30e006" + ] + }, + { + "affiliation": "Departament of Computer Engineering, Faculty of Information Technology, Polytechnic University of Tirana, Tirane, Albania", + "ror_ids": [ + "https://ror.org/05aec4025" + ] + }, + { + "affiliation": "Department of Geography – Research Group for Earth Observation (rgeo), Heidelberg University of Education, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/0044w3h23" + ] + }, + { + "affiliation": "Uniformed Services University of the Health Sciences, Bethesda, MD, USA", + "ror_ids": [ + "https://ror.org/04r3kq386" + ] + }, + { + "affiliation": "Suzhou Institute for Advanced Research, University of Science and Technology of China, Suzhou, P. R. China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Division of Gastroenterology and Hepatology, Department of Internal Medicine, Hyogo Medical University, Nishinomiya, Hyogo, Japan", + "ror_ids": [ + "https://ror.org/001yc7927" + ] + }, + { + "affiliation": "BGI-Shenzhen, Shenzhen, China", + "ror_ids": [ + "https://ror.org/045pn2j94" + ] + }, + { + "affiliation": "Centre for Climate-Resilient and Low-Carbon Cities, School of Architecture and Urban Planning, Chongqing University, Chongqing, China", + "ror_ids": [ + "https://ror.org/023rhb549" + ] + }, + { + "affiliation": "Institute for Clinical and Experimental Surgery, Saarland University, Homburg, Germany", + "ror_ids": [ + "https://ror.org/01jdpyv68" + ] + }, + { + "affiliation": "Department of General Surgery, School of Clinical Medicine, Weifang Medical University, Weifang, Shandong, China", + "ror_ids": [ + "https://ror.org/03tmp6662" + ] + }, + { + "affiliation": "Immunology Center of Georgia, Augusta University, Augusta, GA, USA", + "ror_ids": [ + "https://ror.org/012mef835" + ] + }, + { + "affiliation": "Division of Pediatric Nephrology, University Children’s Hospital, Belgrade, Serbia", + "ror_ids": [ + "https://ror.org/05422jd13" + ] + }, + { + "affiliation": "Icahn School of Medicine at Mount Sinai, Department of Surgery, Mount Sinai Hospital, New York, NY, USA", + "ror_ids": [ + "https://ror.org/01zkyz108" + ] + }, + { + "affiliation": "College of Computer and Information Engineering, Hubei University, Wuhan, Hubei Province, China", + "ror_ids": [ + "https://ror.org/03a60m280" + ] + }, + { + "affiliation": "Songshan Lake Materials Laboratory, Dongguan, P. R. China", + "ror_ids": [ + "https://ror.org/020vtf184" + ] + }, + { + "affiliation": "Mass Spectrometry Laboratory/Organic Pollutants, Institute of Environmental Assessment and Water Research, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/056yktd04" + ] + }, + { + "affiliation": "Guangdong Provincial Key Laboratory of Computer Integrated Manufacturing System, State Key Laboratory of Precision Electronic Manufacturing Technology and Equipment, Guangdong University of Technology, Guangzhou, China", + "ror_ids": [ + "https://ror.org/04azbjn80" + ] + }, + { + "affiliation": "Department of Clinical Laboratory, Xinhua Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/04dzvks42" + ] + }, + { + "affiliation": "Department of Surgery, Open NBI Convergence Technology Research Laboratory, Yonsei University College of Medicine, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/01wjejq96" + ] + }, + { + "affiliation": "Department of General Surgery, Shaanxi Provincial People’s Hospital, Xi’an, China", + "ror_ids": [ + "https://ror.org/009czp143" + ] + }, + { + "affiliation": "Far Eastern Federal University, Vladivostok, Russian Federation", + "ror_ids": [ + "https://ror.org/0412y9z21" + ] + }, + { + "affiliation": "School of Mechanical Engineering, Hubei University of Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/02d3fj342" + ] + }, + { + "affiliation": "Department of Physics, University of Wisconsin, Madison, WI, USA", + "ror_ids": [ + "https://ror.org/01y2jtd41" + ] + }, + { + "affiliation": "Electrical Engineering Department, Colorado School of Mines, Golden, CO, USA", + "ror_ids": [ + "https://ror.org/04raf6v53" + ] + }, + { + "affiliation": "Department of Economics, Loyola University Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/04b6x2g63" + ] + }, + { + "affiliation": "Department of Hematology, All India Institute of Medical Sciences, New Delhi, India", + "ror_ids": [ + "https://ror.org/02dwcqs71" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Southern University of Science and Technology, Shenzhen, China", + "ror_ids": [ + "https://ror.org/049tv2d57" + ] + }, + { + "affiliation": "Department of Thoracic Surgery and State Key Laboratory of Genetic Engineering, Fudan University Shanghai Cancer Center, Shanghai, China", + "ror_ids": [ + "https://ror.org/00my25942" + ] + }, + { + "affiliation": "Office of the Dean of Teaching and Learning, Maynooth University, Maynooth, Ireland", + "ror_ids": [ + "https://ror.org/048nfjm95" + ] + }, + { + "affiliation": "CHEP, Indian Institute of Science, Bangalore, India", + "ror_ids": [ + "https://ror.org/04dese585" + ] + }, + { + "affiliation": "Department of Physics, University of Buenos Aires, Buenos Aires, Argentina", + "ror_ids": [ + "https://ror.org/0081fs513" + ] + }, + { + "affiliation": "Department of Vascular Surgery, MedStar Georgetown University Hospital, Washington, DC, USA", + "ror_ids": [ + "https://ror.org/03ja1ak26" + ] + }, + { + "affiliation": "New York City College of Technology, The City University of New York, Brooklyn, NY, USA", + "ror_ids": [ + "https://ror.org/021a7pw18", + "https://ror.org/00453a208" + ] + }, + { + "affiliation": "Clinical Laboratory, Shunde Hospital, Southern Medical University (The First People’s Hospital of Shunde Foshan), Foshan, Guangdong, China", + "ror_ids": [ + "https://ror.org/00wwb2b69", + "https://ror.org/01vjw4z39" + ] + }, + { + "affiliation": "Northeast Medical Group, Yale New Haven Health, New Haven, CT, USA", + "ror_ids": [ + "https://ror.org/01s1hsq14" + ] + }, + { + "affiliation": "Educational Psychology, Counseling, and Special Education (EPCSE), The Pennsylvania State University, University Park, PA, USA", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Medizinische Klinik und Poliklinik 2 – Onkologie, Gastroenterologie, Hepatologie, Pneumologie, Universitätsklinikum Leipzig, Leipzig, Deutschland", + "ror_ids": [ + "https://ror.org/028hv5492" + ] + }, + { + "affiliation": "Hunan Provincial Key Laboratory of High Efficiency and Precision Machining of Difficult-to-Cut Material, Hunan University of Science and Technology, Xiangtan, Hunan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02m9vrb24" + ] + }, + { + "affiliation": "Department of Surgery, Atrium Health, Charlotte, NC, USA", + "ror_ids": [ + "https://ror.org/0594s0e67" + ] + }, + { + "affiliation": "Computer Graphics and Geomatics Group, EPS Jaén, University of Jaén, Jaén, Jaén, Spain", + "ror_ids": [ + "https://ror.org/0122p5f64" + ] + }, + { + "affiliation": "Department of Clinical Sciences and Nutrition, University of Chester, Chester, UK", + "ror_ids": [ + "https://ror.org/01drpwb22" + ] + }, + { + "affiliation": "The Critical Illness, Brain Dysfunction, Survivorship (CIBS) Center at Vanderbilt University Medical Center and the Veteran’s Affairs Tennessee Valley Geriatric Research Education Clinical Center (GRECC), Nashville, TN, USA", + "ror_ids": [ + "https://ror.org/01nh3sx96", + "https://ror.org/05dq2gs74" + ] + }, + { + "affiliation": "College of Pharmacy, Woosuk University, Wanju-Gun, Republic of Korea", + "ror_ids": [ + "https://ror.org/00emz0366" + ] + }, + { + "affiliation": "School of Mathematical Science, Sichuan Normal University, Chengdu, China", + "ror_ids": [ + "https://ror.org/043dxc061" + ] + }, + { + "affiliation": "Isfahan University of Medical Sciences, Isfahan, Iran", + "ror_ids": [ + "https://ror.org/04waqzz56" + ] + }, + { + "affiliation": "Jiangsu Key Laboratory for Molecular Medicine, Medical School of Nanjing University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "Department of Physiological Chemistry, LMU Biomedical Center Munich, Ludwig-Maximilians-University, Munich, Germany", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "School of Materials and Physics, China University of Mining and Technology, Xuzhou, China", + "ror_ids": [ + "https://ror.org/01xt2dr21" + ] + }, + { + "affiliation": "Department of Hematology, Wuhu City Second People’s Hospital, Wuhu, Anhui, People’s Republic of China", + "ror_ids": [ + "https://ror.org/042g3qa69" + ] + }, + { + "affiliation": "Department of Chemical and Biomolecular Engineering, University of Connecticut, Storrs, CT, USA", + "ror_ids": [ + "https://ror.org/02der9h97" + ] + }, + { + "affiliation": "Department of EEE, Sri Ramakrishna Engineering College, Coimbatore, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/056nttx82" + ] + }, + { + "affiliation": "Ahmanson Translational Theranostics Division, Department of Molecular and Medical Pharmacology, David Geffen School of Medicine at UCLA, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "The Swedish School of Sport and Health Sciences, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/046hach49" + ] + }, + { + "affiliation": "Observation and Research Station of Wetland Ecosystem in the Beibu Gulf, Ministry of Natural Resources, Beihai, China", + "ror_ids": [ + "https://ror.org/02kxqx159" + ] + }, + { + "affiliation": "Sheffield Childrens NHS Foundation Trust, Sheffield, England, UK", + "ror_ids": [ + "https://ror.org/02md8hv62" + ] + }, + { + "affiliation": "School of Nursing, Guangzhou University of Chinese Medicine, Guangzhou, Guangdong, China", + "ror_ids": [ + "https://ror.org/03qb7bg95" + ] + }, + { + "affiliation": "Math and CS Department, Drake University, Des Moines, IA, USA", + "ror_ids": [ + "https://ror.org/001skmk61" + ] + }, + { + "affiliation": "Department of Biology, Dalhousie University, Halifax, NS, Canada", + "ror_ids": [ + "https://ror.org/01e6qks80" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, Kochi Medical School, Kochi University, Nankoku, Kochi, Japan", + "ror_ids": [ + "https://ror.org/01xxp6985" + ] + }, + { + "affiliation": "Institute of Pathology, University of Würzburg and Comprehensive Cancer Center Main, Würzburg, Germany", + "ror_ids": [ + "https://ror.org/00fbnyb24", + "https://ror.org/013tmk464" + ] + }, + { + "affiliation": "MOE Key Laboratory of Metabolism and Molecular Medicine, Department of Biochemistry and Molecular Biology, School of Basic Medical Sciences, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Faculty of Technology, Policy and Management, Delft University of Technology, Delft, The Netherlands", + "ror_ids": [ + "https://ror.org/02e2c7k09" + ] + }, + { + "affiliation": "Department of Remote Sensing and GIS, University of Tehran, Tehran, Iran", + "ror_ids": [ + "https://ror.org/05vf56z40" + ] + }, + { + "affiliation": "School of Pharmaceutical Sciences, Sun Yat-Sen University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/0064kty71" + ] + }, + { + "affiliation": "School of Finance and Business, Shanghai Normal University, Shanghai, China", + "ror_ids": [ + "https://ror.org/01cxqmw89" + ] + }, + { + "affiliation": "Proteomics and Signal Transduction, Max Planck Institute of Biochemistry, #N/A, #N/A, Germany", + "ror_ids": [ + "https://ror.org/04py35477" + ] + }, + { + "affiliation": "School of Business, Law, and Entrepreneurship, Swinburne University of Technology, Hawthorn, VIC, Australia", + "ror_ids": [ + "https://ror.org/031rekg67" + ] + }, + { + "affiliation": "Faculty of Medicine, University of Benghazi, Benghazi, Libya", + "ror_ids": [ + "https://ror.org/03fh7t044" + ] + }, + { + "affiliation": "Immunology and Molecular Oncology Unit, Veneto Institute of Oncology IOV-IRCCS, Padova, Italy", + "ror_ids": [ + "https://ror.org/01xcjmy57" + ] + }, + { + "affiliation": "Department of General Surgery, Sakarya University Training and Research Hospital, Sakarya, Turkey", + "ror_ids": [ + "https://ror.org/04ttnw109" + ] + }, + { + "affiliation": "Facultad de Ciencias Empresariales y Turismo. Campus de “La Merced”, Universidad de Huelva, Huelva, Spain", + "ror_ids": [ + "https://ror.org/03a1kt624" + ] + }, + { + "affiliation": "State Key Labortaory for Fine Exploration and Intelligent Development of Coal Resources, China University of Mining and Technology (Beijing), Beijing, China", + "ror_ids": [ + "https://ror.org/01xt2dr21" + ] + }, + { + "affiliation": "Center for Petroleum Energy Economics and Law (CPEEL), University of Ibadan, Ibadan, Oyo State, Nigeria", + "ror_ids": [ + "https://ror.org/03wx2rr30" + ] + }, + { + "affiliation": "Department of Mathematics, Indian Institute of Technology, Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/049tgcd06" + ] + }, + { + "affiliation": "Department of Statistical Sciences - University of Bologna, Bologna, Italy", + "ror_ids": [ + "https://ror.org/01111rn36" + ] + }, + { + "affiliation": "Research Unit for Metabolic Bone Disease in CKD patients, Faculty of Medicine, Chulalongkorn University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Department of Anatomy and Histology, School of Medicine, Sefako Makgatho Health Sciences University, Ga-Rankuwa, South Africa", + "ror_ids": [ + "https://ror.org/003hsr719" + ] + }, + { + "affiliation": "Department of Physics and Astronomy, Macquarie University, Sydney, New South Wales, Australia", + "ror_ids": [ + "https://ror.org/01sf06y89" + ] + }, + { + "affiliation": "Department of Artificial Intelligence, College of Software, Jeju National University, Jeju, Republic of Korea", + "ror_ids": [ + "https://ror.org/05hnb4n85" + ] + }, + { + "affiliation": "Department of Pharmacy, Renmin Hospital of Wuhan University, Wuhan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03ekhbz91" + ] + }, + { + "affiliation": "Dipartimento Gestionale di Ricerca e Sviluppo Clinico, Direzione Scientifica, Fondazione IRCCS Istituto Neurologico Carlo Besta, Milan, Italy", + "ror_ids": [ + "https://ror.org/05rbx8m02" + ] + }, + { + "affiliation": "Department of Environmental Science, iClimate Center, Aarhus University, Roskilde, Denmark", + "ror_ids": [ + "https://ror.org/01aj84f44" + ] + }, + { + "affiliation": "Department of Life, Light and Matter, University of Rostock, Rostock, Germany", + "ror_ids": [ + "https://ror.org/03zdwsf69" + ] + }, + { + "affiliation": "Department of Agriculture, Food, Environment and Forestry (DAGRI), University of Florence, Florence, Italy", + "ror_ids": [ + "https://ror.org/04jr1s763" + ] + }, + { + "affiliation": "UCL Brain Sciences, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Viet Nam National University Ho Chi Minh City, Ho Chi Minh City, Vietnam", + "ror_ids": [ + "https://ror.org/00waaqh38" + ] + }, + { + "affiliation": "Emergency Medicine Department, Muhimbili University of Health and Allied Sciences, Dar es Salaam, Tanzania", + "ror_ids": [ + "https://ror.org/027pr6c67" + ] + }, + { + "affiliation": "Faculty of Mining and Geology, Department of Hydrogeology, University of Belgrade, Belgrade, Serbia", + "ror_ids": [ + "https://ror.org/02qsmb048" + ] + }, + { + "affiliation": "Department of Food and Nutrition, BioNanocomposite Research Center, Kyung Hee University, Dongdaemun-Gu, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/01zqcg218" + ] + }, + { + "affiliation": "Centro de Variabilidad y Cambio Climático (CEVARCAM), Facultad de Ingeniería y Ciencias Hídricas (FICH), Universidad Nacional del Litoral (UNL), Santa Fe, Argentina", + "ror_ids": [ + "https://ror.org/00pt8r998" + ] + }, + { + "affiliation": "Orthopaedic and Traumatology Department, Reims University Hospital, Reims, France", + "ror_ids": [ + "https://ror.org/03hypw319" + ] + }, + { + "affiliation": "Faculty of Veterinary Medicine, Universidade Norte do Paraná, Arapongas, Paraná, Brazil", + "ror_ids": [ + "https://ror.org/00vvm7f23" + ] + }, + { + "affiliation": "Emerging Pathogen Serology group, UK Health Security Agency, Porton Down, Wiltshire, UK", + "ror_ids": [ + "https://ror.org/018h10037" + ] + }, + { + "affiliation": "College of Engineering, Florida A&M University, Tallahassee, FL, USA", + "ror_ids": [ + "https://ror.org/00c4wc133" + ] + }, + { + "affiliation": "Department of Handicraft Design and Production, Faculty of Fine Arts, Kütahya Dumlupınar University, Kütahya, Turkey", + "ror_ids": [ + "https://ror.org/03jtrja12" + ] + }, + { + "affiliation": "Département de Mathématiques, Université de Fribourg, Fribourg, Switzerland", + "ror_ids": [ + "https://ror.org/022fs9h90" + ] + }, + { + "affiliation": "Department of Educational Psychology, University of Utah, Salt Lake City, UT, USA", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "Faculté des Sciences de Bizerte, Université de Carthage & LR Analysis and Control of PDEs, University of Monastir, Monastir, Tunisia", + "ror_ids": [ + "https://ror.org/00nhtcg76", + "https://ror.org/057x6za15" + ] + }, + { + "affiliation": "Graduate Program in Civil Engineering, Engineering Center, Federal University of Pelotas, Pelotas, Brazil", + "ror_ids": [ + "https://ror.org/05msy9z54" + ] + }, + { + "affiliation": "Rohrer College of Business, Rowan University, Glassboro, NJ, USA", + "ror_ids": [ + "https://ror.org/049v69k10" + ] + }, + { + "affiliation": "Department of Computer Science, Faculty of Science, Srinakharinwirot University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/04718hx42" + ] + }, + { + "affiliation": "Johann Bernoulli Institute for Mathematics and Computer Science, University of Groningen, Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Federal University of Amazonas (UFAM), Manaus, Brazil", + "ror_ids": [ + "https://ror.org/02263ky35" + ] + }, + { + "affiliation": "Department of Spinal Surgery, The Affiliated Hospital of Qingdao University, Qingdao, Shandong, China", + "ror_ids": [ + "https://ror.org/026e9yy16" + ] + }, + { + "affiliation": "Technical University of Dresden, Dresden, Germany", + "ror_ids": [ + "https://ror.org/042aqky30" + ] + }, + { + "affiliation": "Department of Neuroscience, Biomedicine and Movement Sciences, University of Verona, Verona, Italy", + "ror_ids": [ + "https://ror.org/039bp8j42" + ] + }, + { + "affiliation": "African Centre of Excellence for Public Health and Toxicological Research (ACE-PUTOR), University of Port Harcourt, PMB, Port Harcourt, Choba, Nigeria", + "ror_ids": [ + "https://ror.org/005bw2d06" + ] + }, + { + "affiliation": "Guangdong Provincial Key Laboratory of Semiconductor Optoelectronic Materials and Intelligent Photonic Systems, Shenzhen Engineering Lab for Supercapacitor Materials, School of Material Science and Engineering, Harbin Institute of Technology, , China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Department of Special Needs Education & Rehabilitation, Carl von Ossietzky Universität of Oldenburg, Oldenburg, Germany", + "ror_ids": [ + "https://ror.org/033n9gh91" + ] + }, + { + "affiliation": "Climate and Ecosystem Sciences Division, Lawrence Berkeley National Laboratory, Berkeley, USA", + "ror_ids": [ + "https://ror.org/02jbv0t02" + ] + }, + { + "affiliation": "Università Cattolica, Milan, Italy, and Accademia Nazionale dei Lincei, Rome, Italy", + "ror_ids": [ + "https://ror.org/05wfehw39" + ] + }, + { + "affiliation": "Dr. Panjwani Center for Molecular Medicine, International Center for Chemical and Biological Sciences (ICCBS-PCMD), University of Karachi, Karachi, Pakistan", + "ror_ids": [ + "https://ror.org/05bbbc791", + "https://ror.org/024ghrf67" + ] + }, + { + "affiliation": "National Institute of Nutrition, Hyderabad, India", + "ror_ids": [ + "https://ror.org/04970qw83" + ] + }, + { + "affiliation": "Division of Cancer Epidemiology, Department of Epidemiology and Public Health, University of Maryland School of Medicine, Baltimore, MD, USA", + "ror_ids": [ + "https://ror.org/04rq5mt64" + ] + }, + { + "affiliation": "World Class Research Program, Universitas Diponegoro, Semarang, Indonesia", + "ror_ids": [ + "https://ror.org/056bjta22" + ] + }, + { + "affiliation": "Department of Medical Sciences, Cardiovascular Epidemiology, Uppsala University Hospital, Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/01apvbh93" + ] + }, + { + "affiliation": "Department of Botany, Jangipur College, University of Kalyani, West Bengal, India", + "ror_ids": [ + "https://ror.org/03v783k16" + ] + }, + { + "affiliation": "International School of Information Science and Engineering, Dalian University of Technology, Dalian, China", + "ror_ids": [ + "https://ror.org/023hj5876" + ] + }, + { + "affiliation": "Clem Jones Centre for Regenerative Medicine, Faculty of Health Sciences and Medicine, Bond University, Gold Coast, QLD, Australia", + "ror_ids": [ + "https://ror.org/006jxzx88" + ] + }, + { + "affiliation": "Department of Physics, College of Science, Imam Mohammad Ibn Saud Islamic University (IMSIU), Riyadh, Saudi Arabia", + "ror_ids": [ + "https://ror.org/05gxjyb39" + ] + }, + { + "affiliation": "Master Program in Food Safety, College of Nutrition, Taipei Medical University, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05031qk94" + ] + }, + { + "affiliation": "MRC Centre for Global Infectious Disease Analysis, School of Public Health, Imperial College London, London, UK", + "ror_ids": [ + "https://ror.org/041kmwe10" + ] + }, + { + "affiliation": "Department of Nephrology, Tokyo Women’s Medical University, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/03kjjhe36" + ] + }, + { + "affiliation": "Higher Institute of Computer Science and Management, University of Kairouan, Kairouan, Tunisia", + "ror_ids": [ + "https://ror.org/024mpte60" + ] + }, + { + "affiliation": "Government Pharmacy College, BRD Medical College Campus, Gorakhpur, India", + "ror_ids": [ + "https://ror.org/05br52903" + ] + }, + { + "affiliation": "School of Chemistry and Environment, Faculty of Applied Sciences, Universiti Teknologi MARA (UiTM), Shah Alam, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/05n8tts92" + ] + }, + { + "affiliation": "Energy and Environment Institute, University of São Paulo, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Universität Bonn - Helmholtz-Institut für Strahlen und Kernphysik, Bonn, Germany", + "ror_ids": [ + "https://ror.org/041nas322" + ] + }, + { + "affiliation": "School of Economics and Management, Communication University of China, Beijing, China", + "ror_ids": [ + "https://ror.org/04facbs33" + ] + }, + { + "affiliation": "The Warren Alpert Medical School of Brown University, Providence, RI, USA", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Yildiz Technical University, Beşiktaş, Istanbul, Türkiye", + "ror_ids": [ + "https://ror.org/0547yzj13" + ] + }, + { + "affiliation": "Institute of Technology and Business in České Budějovice, České Budějovice, Czech Republic", + "ror_ids": [ + "https://ror.org/05a70k539" + ] + }, + { + "affiliation": "School of Electrical Engineering and Information, Southwest Petroleum University, Chengdu, Sichuan, China", + "ror_ids": [ + "https://ror.org/03h17x602" + ] + }, + { + "affiliation": "College of Foreign Languages, Chongqing Medical University, Chongqing, China", + "ror_ids": [ + "https://ror.org/017z00e58" + ] + }, + { + "affiliation": "Department of Urology, Miyagi Cancer Center, Natori, Miyagi, Japan", + "ror_ids": [ + "https://ror.org/01qt7mp11" + ] + }, + { + "affiliation": "Zhangjiang Fudan International Innovation Centre, Human Phenome Institute, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Bahcesehir University, Faculty of Engineering and Natural Sciences, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/00yze4d93" + ] + }, + { + "affiliation": "MagicX (Media and Games Center of Excellence), Universiti Teknologi Malaysia, Johor, Malaysia", + "ror_ids": [ + "https://ror.org/026w31v75" + ] + }, + { + "affiliation": "Department of Agricultural, Guru Nanak Dev University, Amritsar, Punjab, India", + "ror_ids": [ + "https://ror.org/05ghzpa93" + ] + }, + { + "affiliation": "Division of Pediatric Neurology, Department of Pediatrics, University of Michigan and C.S. Mott Children’s Hospital, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291", + "https://ror.org/05h0f1d70" + ] + }, + { + "affiliation": "Adult Learning Disability Service, Leicestershire Partnership NHS Trust, Leicester, UK", + "ror_ids": [ + "https://ror.org/045wcpc71" + ] + }, + { + "affiliation": "State Key Laboratory of Optoelectronic Materials and Technologies, Sun Yat-Sen University, Guangzhou, Guangdong, China", + "ror_ids": [ + "https://ror.org/0064kty71", + "https://ror.org/010fszt18" + ] + }, + { + "affiliation": "Environmental Engineering and Earth Sciences, Clemson University, Anderson, SC, USA", + "ror_ids": [ + "https://ror.org/037s24f05" + ] + }, + { + "affiliation": "Department of Biology and Biochemistry, South Kazakhstan Medical Academy, Shymkent, Kazakhstan", + "ror_ids": [ + "https://ror.org/025hwk980" + ] + }, + { + "affiliation": "Biotechnology and Bioinformatics Division, Jawaharlal Nehru Tropical Botanic Garden & Research Institute, Palode, Thiruvananthapuram, Kerala, India", + "ror_ids": [ + "https://ror.org/05w47ap08" + ] + }, + { + "affiliation": "Department of Clinical Nutrition, Institute of Public Health and Clinical Nutrition, University of Eastern Finland, Kuopio, Finland", + "ror_ids": [ + "https://ror.org/00cyydd11" + ] + }, + { + "affiliation": "Department of Rehabilitation Medicine, School of Medicine, Kyungpook National University, Daegu, South Korea", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "Nikhef, Theory Group, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/00f9tz983" + ] + }, + { + "affiliation": "Department of Surgery, Stamford Hospital, Stamford, CT, USA", + "ror_ids": [ + "https://ror.org/05jr4qt09" + ] + }, + { + "affiliation": "Epidemiology and Population Health Research Group (GESP), School of Public Health, Universidad del Valle, Cali, Colombia", + "ror_ids": [ + "https://ror.org/00jb9vg53" + ] + }, + { + "affiliation": "Department of Organic and Biochemistry, Faculty of Chemistry, University of Tabriz, Tabriz, Iran", + "ror_ids": [ + "https://ror.org/01papkj44" + ] + }, + { + "affiliation": "Department of Family Medicine, Lehigh Valley Health Network, Allentown, PA, USA", + "ror_ids": [ + "https://ror.org/00sf92s91" + ] + }, + { + "affiliation": "School of Astronomy and Space Science, University of Science and Technology of China, Hefei, China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "College of Civil Engineering, Chongqing Jiaotong University, Chongqing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01t001k65" + ] + }, + { + "affiliation": "School of Electronics and Information Engineering, Lanzhou Jiaotong University, Lanzhou, China", + "ror_ids": [ + "https://ror.org/03144pv92" + ] + }, + { + "affiliation": "Department of Cardiology, Ankara City Hospital, Ankara, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Pediatric Movement Disorders Program, Division of Pediatric Neurology, Barrow Neurological Institute, Phoenix Children’s Hospital, Phoenix, AZ, USA", + "ror_ids": [ + "https://ror.org/01fwrsq33", + "https://ror.org/03ae6qy41" + ] + }, + { + "affiliation": "Beijing Frontier Research Center for Biological Structures, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Department of Horticultural Sciences, Texas A&M University, College Station, TX, USA", + "ror_ids": [ + "https://ror.org/01f5ytq51" + ] + }, + { + "affiliation": "Black Dog Institute and School of Psychology, University of New South Wales, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/03r8z3t63", + "https://ror.org/04rfr1008" + ] + }, + { + "affiliation": "Electrical and Electronics Engineering, AMET University, Chennai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/05dpv4c71" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, University of California San Diego, La Jolla, CA, USA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "SHU Center of Green Urban Mining & Industry Ecology, School of Environmental and Chemical Engineering, Shanghai University, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/006teas31" + ] + }, + { + "affiliation": "Department of Zoology, Kirori Mal College, University of Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Department of Nursing, Bucak School of Health, Burdur Mehmet Akif Ersoy University, Burdur, Turkey", + "ror_ids": [ + "https://ror.org/04xk0dc21" + ] + }, + { + "affiliation": "UR 4360 APEMAC (Health Adjustment, Measurement and Assessment, Interdisciplinary Approaches), University of Lorraine, Nancy, France", + "ror_ids": [ + "https://ror.org/04vfs2w97" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, College of Medicine, Seoul St. Mary’s Hospital, The Catholic University of Korea, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/056cn0e37", + "https://ror.org/01fpnj063" + ] + }, + { + "affiliation": "Department of Mathematics and Statistics, University of Nebraska, Lincoln, NE, ", + "ror_ids": [ + "https://ror.org/043mer456" + ] + }, + { + "affiliation": "Department of Medical Oncology, Ospedale degli Infermi, Biella, Italy", + "ror_ids": [ + "https://ror.org/00edt5124" + ] + }, + { + "affiliation": "PRINCE Laboratory Research, ISITcom, University of Sousse, Hammam Sousse, Tunisia", + "ror_ids": [ + "https://ror.org/00dmpgj58" + ] + }, + { + "affiliation": "Division of Health Services Research, University of Iowa College of Pharmacy, Iowa City, IA, USA", + "ror_ids": [ + "https://ror.org/036jqmy94" + ] + }, + { + "affiliation": "IRCCS - Istituto Ortopedico Rizzoli, Bologna, Italy", + "ror_ids": [ + "https://ror.org/02ycyys66" + ] + }, + { + "affiliation": "Department of Colorectal Surgery, the First Affiliated Hospital, School of Medicine, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Immunology, St. Jude Children’s Research Hospital, Memphis, TN, USA", + "ror_ids": [ + "https://ror.org/02r3e0967" + ] + }, + { + "affiliation": "Centre de Recherche du Centre Hospitalier de l’Université de Montréal, Montreal, QC, Canada", + "ror_ids": [ + "https://ror.org/0410a8y51" + ] + }, + { + "affiliation": "Department of Paediatrics, Royal College of Surgeons in Ireland, Dublin, 2, Ireland", + "ror_ids": [ + "https://ror.org/01hxy9878" + ] + }, + { + "affiliation": "Institute of Laser Physics, Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/00b5qjr76" + ] + }, + { + "affiliation": "Key Laboratory of Mountain Hazards and Earth Surface Processes, Institute of Mountain Hazards and Environment, Chinese Academy of Sciences, Chengdu, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/02z0nsb22" + ] + }, + { + "affiliation": "School of Education and Engineering and Physical Sciences, University of Birmingham, Birmingham, UK", + "ror_ids": [ + "https://ror.org/03angcq70" + ] + }, + { + "affiliation": "Department of Medical Microbiology, Galway University Hospitals, Galway, Ireland", + "ror_ids": [ + "https://ror.org/04scgfz75" + ] + }, + { + "affiliation": "Department of Government and Politics, University of Maryland, College Park, MD, USA", + "ror_ids": [ + "https://ror.org/047s2c258" + ] + }, + { + "affiliation": "School of Rehabilitation Therapy, Queen’s University, Kingston, ON, Canada", + "ror_ids": [ + "https://ror.org/02y72wh86" + ] + }, + { + "affiliation": "University Centre of the Westfjords, Isafjordur, Iceland", + "ror_ids": [ + "https://ror.org/00z2vfv58" + ] + }, + { + "affiliation": "Department of Food and Nutrition, Punjab Agricultural University, Ludhiana, India", + "ror_ids": [ + "https://ror.org/02qbzdk74" + ] + }, + { + "affiliation": "Department of Media, Communication and Journalism, California State University, Fresno, CA, USA", + "ror_ids": [ + "https://ror.org/03enmdz06" + ] + }, + { + "affiliation": "Department of Oral and Maxillofacial-Head & Neck Oncology, Shanghai Ninth People’s Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/010826a91" + ] + }, + { + "affiliation": "Ghent University, Ghent, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Department of Diagnostic and Interventional Radiology, Leipzig University Medical Center, Leipzig, Germany", + "ror_ids": [ + "https://ror.org/03s7gtk40" + ] + }, + { + "affiliation": "Department of Internal Medicine, Chi Mei Medical Center, Tainan, Taiwan", + "ror_ids": [ + "https://ror.org/02y2htg06" + ] + }, + { + "affiliation": "Key Laboratory of Neuropharmacology and Translational Medicine of Zhejiang Province, School of Pharmaceutical Sciences, Zhejiang Chinese Medical University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/04epb4p87" + ] + }, + { + "affiliation": "Energy Transformation Research Laboratory, Central Research Institute of Electric Power Industry (CRIEPI), Yokosuka, Kanagawa, Japan", + "ror_ids": [ + "https://ror.org/041jswc25" + ] + }, + { + "affiliation": "University of Miskolc, Miskolc-Egyetemváros, Hungary", + "ror_ids": [ + "https://ror.org/038g7dk46" + ] + }, + { + "affiliation": "Laboratory of Theoretical Physics, Institute of Physics, University of Tartu, Tartu, Estonia", + "ror_ids": [ + "https://ror.org/03z77qz90" + ] + }, + { + "affiliation": "Department of Hematology and Oncology, Brookdale University Hospital Medical Center, Brooklyn, NY, USA", + "ror_ids": [ + "https://ror.org/0065vkd37" + ] + }, + { + "affiliation": "State Key Laboratory of Membrane Biology, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549", + "https://ror.org/03mq8q210" + ] + }, + { + "affiliation": "Instituto Nacional de Câncer, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/055n68305" + ] + }, + { + "affiliation": "Laboratory of Ocean and Coast Geology, Third Institute of Oceanography, Ministry of Natural Resources, Xiamen, China", + "ror_ids": [ + "https://ror.org/02kxqx159" + ] + }, + { + "affiliation": "Department of Pharmaceutical and Pharmacological Sciences, Molecular Modeling Section (MMS), University of Padova, Padova, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Department of Biotechnology, Persian Gulf Research Institute, Persian Gulf University, Bushehr, Iran", + "ror_ids": [ + "https://ror.org/03n2mgj60" + ] + }, + { + "affiliation": "The Azrieli Faculty of Medicine, Bar-Ilan University, Safed, Israel", + "ror_ids": [ + "https://ror.org/03kgsv495" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Amity School of Engineering and Technology, Amity University Madhya Pradesh, Gwalior, Madhya Pradesh, India", + "ror_ids": [ + "https://ror.org/02n9z0v62" + ] + }, + { + "affiliation": "University of Vienna, Center for Molecular Biology, Department of Structural and Computational Biology, Vienna, Austria", + "ror_ids": [ + "https://ror.org/03prydq77" + ] + }, + { + "affiliation": "Department of Pediatric Dentistry, West China Hospital of Stomatology, Sichuan University, Chengdu, China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "Department of Anesthesia, University of Iowa Hospitals and Clinics, Iowa City, IA, USA", + "ror_ids": [ + "https://ror.org/04g2swc55" + ] + }, + { + "affiliation": "Centre for Veterinary Wildlife Research, Faculty of Veterinary Science, University of Pretoria, Tshwane, Onderstepoort, South Africa", + "ror_ids": [ + "https://ror.org/00g0p6g84" + ] + }, + { + "affiliation": "Klinikum Bamberg, Sozialstiftung Bamberg, Bamberg, Deutschland", + "ror_ids": [ + "https://ror.org/04pa5pz64" + ] + }, + { + "affiliation": "Department of Chemistry ‘‘Ugo Schiff”, University of Florence, Florence, Italy", + "ror_ids": [ + "https://ror.org/04jr1s763" + ] + }, + { + "affiliation": "Department of Paediatric Surgery, Royal Manchester Children’s Hospital, Manchester, UK", + "ror_ids": [ + "https://ror.org/052vjje65" + ] + }, + { + "affiliation": "Department of Textile System Engineering, Kyungpook National University, Daegu, Republic of Korea", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "College of Mathematics and Statistics, Chongqing Jiaotong University, Chongqing, China", + "ror_ids": [ + "https://ror.org/01t001k65" + ] + }, + { + "affiliation": "Molecular Neurobiology Laboratory, Massachusetts General Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "CISUC, Coimbra, Portugal", + "ror_ids": [ + "https://ror.org/04z8k9a98" + ] + }, + { + "affiliation": "Department of Biomedical Data Sciences, Leiden University Medical Center, Leiden, The Netherlands", + "ror_ids": [ + "https://ror.org/05xvt9f17" + ] + }, + { + "affiliation": "Department of Plastic Surgery, Zagazig University Hospital, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/053g6we49" + ] + }, + { + "affiliation": "Section of Surgical Sciences, Epithelial Biology Center, Vanderbilt University Medical Center, Nashville, TN, USA", + "ror_ids": [ + "https://ror.org/05dq2gs74" + ] + }, + { + "affiliation": "College of Economics and Management, Economics and Management building, Yunnan Agriculture University, Helongtan, Kunming, Panlong District, China", + "ror_ids": [ + "https://ror.org/04dpa3g90" + ] + }, + { + "affiliation": "Department of Applied Mathematics, University of Calcutta, Kolkata, India", + "ror_ids": [ + "https://ror.org/01e7v7w47" + ] + }, + { + "affiliation": "MTA-DE Biodiversity and Ecosystem Services Research Group, University of Debrecen, Debrecen, Hungary", + "ror_ids": [ + "https://ror.org/02xf66n48" + ] + }, + { + "affiliation": "Department of Plant Pathology, Federal University of Lavras, Lavras, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0122bmm03" + ] + }, + { + "affiliation": "Faculté d’administration, Université de Moncton, Moncton, Canada", + "ror_ids": [ + "https://ror.org/029tnqt29" + ] + }, + { + "affiliation": "Geographisches Institut, Universität Bern, Bern, Schweiz", + "ror_ids": [ + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "János Szentágothai Research Centre, Bioinformatics Research Group, University of Pécs, Pécs, Hungary", + "ror_ids": [ + "https://ror.org/037b5pv06" + ] + }, + { + "affiliation": "Department of Biological Sciences, Faculty of Science, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": " Key Laboratory of Smart Drug Delivery of MOE, School of Pharmacy, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Division of Nephrology and Hypertension, Department of Medicine, Mayo Clinic, Rochester, MN, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "Department of Neuroradiology, University Hospital of Southampton, Southampton, UK", + "ror_ids": [ + "https://ror.org/0485axj58" + ] + }, + { + "affiliation": "Van Swinderen Institute, University of Groningen, Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Division of Entomology, Indian Agricultural Research Institute, New Delhi, India", + "ror_ids": [ + "https://ror.org/01bzgdw81" + ] + }, + { + "affiliation": "Parkville Familial Cancer Centre, Peter MacCallum Cancer Centre and Royal Melbourne Hospital, Melbourne, VIC, Australia", + "ror_ids": [ + "https://ror.org/02a8bt934", + "https://ror.org/005bvs909" + ] + }, + { + "affiliation": "Department of Anesthesiology, The Affiliated Traditional Chinese Medical Hospital of Southwest Medical University, Luzhou, China", + "ror_ids": [ + "https://ror.org/00g2rqs52" + ] + }, + { + "affiliation": "Department of Medical, Surgical and Neuroscience Sciences, University of Siena, Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "Department of Orthodontics and Dentofacial Orthopedics, School of Dental Medicine, University of Bern, Bern, Switzerland", + "ror_ids": [ + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "Szentágothai Research Centre, University of Pécs, Pécs, Hungary", + "ror_ids": [ + "https://ror.org/037b5pv06" + ] + }, + { + "affiliation": "Addiction Biology Unit, Department of Psychiatry and Neurochemistry, Institute of Neuroscience and Physiology, Sahlgrenska Academy, University of Gothenburg, Gothenburg, SE, Sweden", + "ror_ids": [ + "https://ror.org/01tm6cn81" + ] + }, + { + "affiliation": "Shanghai Institute of Nutrition and Health, Shanghai, China", + "ror_ids": [ + "https://ror.org/00rytkh49" + ] + }, + { + "affiliation": "Student Research Committee, College of Medicine, Mashhad University of Medical Sciences, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/04sfka033" + ] + }, + { + "affiliation": "Centre for Biomedical Ethics, Yong Loo Lin School of Medicine, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Department of Molecular Genetics, Weizmann Institute of Science, Rehovot, Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "Faculty of Agriculture and Life Sciences, Lincoln University, Lincoln, New Zealand", + "ror_ids": [ + "https://ror.org/04ps1r162" + ] + }, + { + "affiliation": "Department of Epidemiology and Data Science, Amsterdam Public Health, Amsterdam University Medical Centers, University of Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/04dkp9463", + "https://ror.org/05grdyy37" + ] + }, + { + "affiliation": "Department of Neurology, Baoding No.1 Central Hospital, Baoding, China", + "ror_ids": [ + "https://ror.org/022nvaw58" + ] + }, + { + "affiliation": "Laboratory of Chemical Physics, National Institute of Diabetes and Digestive and Kidney Diseases, National Institutes of Health, Bethesda, MD, USA", + "ror_ids": [ + "https://ror.org/00adh9b73" + ] + }, + { + "affiliation": "Faculty of Science and Technology, Oita University, Oita, Japan", + "ror_ids": [ + "https://ror.org/01nyv7k26" + ] + }, + { + "affiliation": "University Women’s Polytechnic, Z. H. College of Engineering and Technology, Aligarh Muslim University, Aligarh, India", + "ror_ids": [ + "https://ror.org/03kw9gc02" + ] + }, + { + "affiliation": "Department of Plant Protection, Faculty of Agriculture, Ferdowsi University of Mashhad, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/00g6ka752" + ] + }, + { + "affiliation": "Population Health and Policy Research Unit, Graduate School of Medicine, Medical Education Center/International Education Section, Kyoto University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Max Planck Institute for Biological Intelligence, Department Genes – Circuits – Behavior, Martinsried, Germany", + "ror_ids": [ + "https://ror.org/03g267s60" + ] + }, + { + "affiliation": "Syngenta, Jealott’s Hill International Research Centre, Bracknell, UK", + "ror_ids": [ + "https://ror.org/000bdn450" + ] + }, + { + "affiliation": "Universitas Negeri Yogyakarta, Yogyakarta, Indonesia", + "ror_ids": [ + "https://ror.org/05fryw881" + ] + }, + { + "affiliation": "Science and Technology on Antennas and Microwave Laboratory, Xidian University, Xi’an, China", + "ror_ids": [ + "https://ror.org/05s92vm98" + ] + }, + { + "affiliation": "Department of Health Sciences, University of Genoa, Genoa, Italy", + "ror_ids": [ + "https://ror.org/0107c5v14" + ] + }, + { + "affiliation": "Department of Mathematics, Universidade Federal de Santa Catarina, Blumenau, Santa Catarina, Brazil", + "ror_ids": [ + "https://ror.org/041akq887" + ] + }, + { + "affiliation": "Management Department, Sunway Business School, Sunway University, Petaling Jaya, Malaysia", + "ror_ids": [ + "https://ror.org/04mjt7f73" + ] + }, + { + "affiliation": "Immunology and Genetics Unit, Complejo Hospitalario Universitario de Cáceres, Cáceres, Spain", + "ror_ids": [ + "https://ror.org/01mhgyv56" + ] + }, + { + "affiliation": "Department of Applied Social Sciences, Munich University of Applied Sciences, Munich, Germany", + "ror_ids": [ + "https://ror.org/012k1v959" + ] + }, + { + "affiliation": "Laboratory for Neural Circuits and Behavior, RIKEN Center for Brain Science, Wako, Saitama, Japan", + "ror_ids": [ + "https://ror.org/04j1n1c04" + ] + }, + { + "affiliation": "Universitäres Centrum für Tumorerkrankungen (UCT) Mainz, Universitätsmedizin der Johannes Gutenberg-Universität Mainz, Mainz, Deutschland", + "ror_ids": [ + "https://ror.org/00q1fsf04", + "https://ror.org/023b0x485" + ] + }, + { + "affiliation": "Departments of Chemical and Biomolecular Engineering, and Biomedical Engineering, Faculty of Engineering, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Mathematical Engineering Academy of Chinese Medicine, Guangzhou University of Chinese Medicine, Guangzhou, China", + "ror_ids": [ + "https://ror.org/03qb7bg95" + ] + }, + { + "affiliation": "Department of Nephrology, Dialysis and Transplantation, San Bortolo Hospital, Vicenza, Italy", + "ror_ids": [ + "https://ror.org/05wd86d64" + ] + }, + { + "affiliation": "Zentrale Interdisziplinäre Notaufnahme, Klinikum rechts der Isar, Technische Universität München, München, Deutschland", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Nutrition and Endocrine Research Center, Research Institute for Endocrine Sciences, Shahid Beheshti University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/034m2b326", + "https://ror.org/01kpm1136" + ] + }, + { + "affiliation": "Preventive Treatment of Disease Center, The First Affiliated Hospital of Guangxi University of Chinese Medicine, Nanning, Guangxi Zhuang Autonomous Region, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01qh7se39", + "https://ror.org/024v0gx67" + ] + }, + { + "affiliation": "Departments of Child Health, Neurology, and Cellular & Molecular Medicine, and Program in Genetics, University of Arizona College of Medicine-Phoenix, Phoenix, AZ, USA", + "ror_ids": [ + "https://ror.org/03m2x1q45" + ] + }, + { + "affiliation": "Department of Mathematics and Computer sciences, University of Oum El Bouaghi, Oum El Bouaghi, Algeria", + "ror_ids": [ + "https://ror.org/0034tbg85" + ] + }, + { + "affiliation": "Department of Cardiovascular Medicine, Tokai University Hachioji Hospital, Hachioji, Japan", + "ror_ids": [ + "https://ror.org/00gr1q288" + ] + }, + { + "affiliation": "Division of Gastroenterology, Hepatology and Nutrition, NYU Long Island School of Medicine, NYU Langone—Long Island Hospital, Mineola, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "EIEF, Rome, Italy", + "ror_ids": [ + "https://ror.org/04e874t64" + ] + }, + { + "affiliation": "Department of Plant Breeding and Biotechnology, College of Agriculture, Shahrekord University, Shahrekord, Iran", + "ror_ids": [ + "https://ror.org/051rngw70" + ] + }, + { + "affiliation": "Department of Maternal and Fetal Medicine, Miyagi Children’s Hospital, Sendai, Japan", + "ror_ids": [ + "https://ror.org/007e71662" + ] + }, + { + "affiliation": "Department of Pharmaceutics, Faculty of Pharmacy, Minia University, Minia, Egypt", + "ror_ids": [ + "https://ror.org/02hcv4z63" + ] + }, + { + "affiliation": "Sustainable Transportation Lab, Department of Logistics and Transport Technology, Federal University of Technology, Akure, Nigeria", + "ror_ids": [ + "https://ror.org/01pvx8v81" + ] + }, + { + "affiliation": "Department of Mathematics, Dr. B.C. Roy Engineering College, Makaut, West Bengal, India", + "ror_ids": [ + "https://ror.org/030tcae29" + ] + }, + { + "affiliation": "State Key Laboratory of Superlattices and Microstructures, Institute of Semiconductors, Chinese Academy of Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/048dd0611" + ] + }, + { + "affiliation": "Department of Social and Human Research, Romanian Academy, Cluj-Napoca, Romania", + "ror_ids": [ + "https://ror.org/0561n6946" + ] + }, + { + "affiliation": "Department of Trauma Surgery, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Mansfield College, Oxford University, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Institute for Molecular Medicine Finland–FIMM, University of Helsinki, Helsinki, Finland", + "ror_ids": [ + "https://ror.org/040af2s02", + "https://ror.org/030sbze61" + ] + }, + { + "affiliation": "Center for Women and Work, University of Massachusetts Lowell, Lowell, MA, USA", + "ror_ids": [ + "https://ror.org/03hamhx47" + ] + }, + { + "affiliation": "Institute of Pathology, Friedrich-Alexander University, Erlangen, Germany", + "ror_ids": [ + "https://ror.org/00f7hpc57" + ] + }, + { + "affiliation": "Department of Radiology, Cancer Hospital of Shantou University Medical College, Shantou, Guangdong, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00a53nq42" + ] + }, + { + "affiliation": "Universidad San Sebastian, Providencia, Chile", + "ror_ids": [ + "https://ror.org/04jrwm652" + ] + }, + { + "affiliation": "Department of Computer Science, Virginia Tech, Blacksburg, VA, USA", + "ror_ids": [ + "https://ror.org/02smfhw86" + ] + }, + { + "affiliation": "Laboratory for Drug Discovery, Pharmaceuticals Research Center, Asahi Kasei Pharma Corporation, Izunokuni-shi, Japan", + "ror_ids": [ + "https://ror.org/018wp0236" + ] + }, + { + "affiliation": "Nursing, Midwifery and Allied Health Professions Research Unit (NMAHP-RU), Faculty of Health Sciences and Sport, University of Stirling, Stirling, UK", + "ror_ids": [ + "https://ror.org/045wgfr59" + ] + }, + { + "affiliation": "Universidad de Alcalá, Departamento de Educación, Madrid, Alcalá de Henares, España", + "ror_ids": [ + "https://ror.org/04pmn0e78" + ] + }, + { + "affiliation": "Beijing Engineering Research Center of 3D Printing for Digital Medical Health, Beijing University of Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/037b1pp87" + ] + }, + { + "affiliation": "Energy Research and Technology Group, CSIR-Central Mechanical Engineering Research Institute (CMERI), Durgapur, India", + "ror_ids": [ + "https://ror.org/059h0ng81" + ] + }, + { + "affiliation": "George Washington University, Washington, DC, USA", + "ror_ids": [ + "https://ror.org/00y4zzh67" + ] + }, + { + "affiliation": "Division of Nephrology, Department of Medicine, Faculty of Medicine, Chulalongkorn University, Bangkok, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Department of Medicine, Autonomous University of Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Department of Molecular Imaging, Royal Prince Alfred Hospital, Sydney, Australia", + "ror_ids": [ + "https://ror.org/05gpvde20" + ] + }, + { + "affiliation": "School of Agricultural Science and Engineering, Liaocheng University, Liaocheng, China", + "ror_ids": [ + "https://ror.org/03yh0n709" + ] + }, + { + "affiliation": "INSERM LNC UMR1231, University of Burgundy, Dijon, France", + "ror_ids": [ + "https://ror.org/03k1bsr36" + ] + }, + { + "affiliation": "Department of Metallurgical and Materials Engineering, National Institute of Technology, Durgapur, West Bengal, India", + "ror_ids": [ + "https://ror.org/04ds0jm32" + ] + }, + { + "affiliation": "Wellcome Sanger Institute, Wellcome Genome Campus, Hinxton, UK", + "ror_ids": [ + "https://ror.org/05cy4wa09" + ] + }, + { + "affiliation": "Department of Economics, University of Wuppertal, Wuppertal, Nordrhein-Westfalen, Germany", + "ror_ids": [ + "https://ror.org/00613ak93" + ] + }, + { + "affiliation": "Department of Life Sciences, University of Siena, Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "Department of Pharmacology, Weill Medical College, Cornell University, New York, NY, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Physics, Faculty of Science and Health, Koya University, Koya, Kurdistan Region, Iraq", + "ror_ids": [ + "https://ror.org/017pq0w72" + ] + }, + { + "affiliation": "Zoology Department, Faculty of Science, Minia University, El-Minia, Egypt", + "ror_ids": [ + "https://ror.org/02hcv4z63" + ] + }, + { + "affiliation": "Cardiac Electrophysiology Section, Department of Cardiovascular Medicine, Cleveland Clinic, Cleveland, OH, USA", + "ror_ids": [ + "https://ror.org/03xjacd83" + ] + }, + { + "affiliation": "Department of Pharmacology and Toxicology, Ruhr-Universität Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Department of Land Resources and Agricultural Technology, College of Agriculture and Veterinary Sciences, University of Nairobi, Nairobi, Kenya", + "ror_ids": [ + "https://ror.org/02y9nww90" + ] + }, + { + "affiliation": "Department of Hematology, Postgraduate Institute of Medical Education and Research, Chandigarh, India", + "ror_ids": [ + "https://ror.org/009nfym65" + ] + }, + { + "affiliation": "Laboratory of Biochemistry, Clínica Universidad de Navarra, Pamplona, Spain", + "ror_ids": [ + "https://ror.org/03phm3r45" + ] + }, + { + "affiliation": "Instituto de Ecología, A.C., Red Biodiversidad y Sistemática, Xalapa, Veracruz, México", + "ror_ids": [ + "https://ror.org/03yvabt26" + ] + }, + { + "affiliation": "Energy Conversion Science, Kyoto University, Sakyo-ku, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Desertification Research Centre (CIDE) (CSIC-UV-GV), University of Valencia, Valencia, Spain", + "ror_ids": [ + "https://ror.org/043nxc105" + ] + }, + { + "affiliation": "Department of Neurosurgery, Central Hospital of Jing’an District, The Affiliated Central Hospital of Jing’an District, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Nuclear Controls and Planning Wing, Department of Atomic Energy, Mumbai, India", + "ror_ids": [ + "https://ror.org/02m388s04" + ] + }, + { + "affiliation": "Department of Mathematical and Physical Sciences, Concordia University of Edmonton, Edmonton, Canada", + "ror_ids": [ + "https://ror.org/04013rx15" + ] + }, + { + "affiliation": "Department of Oral and Maxillofacial Surgery, Houston Methodist Research Institute, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/027zt9171" + ] + }, + { + "affiliation": "Instituto de Investigaciones Bioquímicas de Bahía Blanca (INIBIBB-CONICET), Bahía Blanca, Argentina", + "ror_ids": [ + "https://ror.org/021rr7t48" + ] + }, + { + "affiliation": "Department of Head and Neck and Urogenital Neoplasm, Harbin Medical University Cancer Hospital, Harbin, China", + "ror_ids": [ + "https://ror.org/01f77gp95", + "https://ror.org/05jscf583" + ] + }, + { + "affiliation": "Department of Systems Biotechnology, Chung-Ang University, Anseong, Gyeonggi, Korea", + "ror_ids": [ + "https://ror.org/01r024a98" + ] + }, + { + "affiliation": "Department of Commerce, University of Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Department of Economics, University of Western Macedonia, Kastoria, Greece", + "ror_ids": [ + "https://ror.org/00a5pe906" + ] + }, + { + "affiliation": "School of Psychology, Bond University, Robina, Australia", + "ror_ids": [ + "https://ror.org/006jxzx88" + ] + }, + { + "affiliation": "Nutritional Epidemiology Research Team (EREN), Centre of Research in Epidemiology and Statistics Sorbonne Paris Cité, Inserm (U1153), Inra (U1125), Cnam, Paris 13 University, COMUE Sorbonne Paris Cité, Bobigny, France", + "ror_ids": [ + "https://ror.org/0199hds37", + "https://ror.org/00t9egj41" + ] + }, + { + "affiliation": "College of Computer Science and Engineering, Teerthanker Mahaver University, Moradabad, India", + "ror_ids": [ + "https://ror.org/04vkd2013" + ] + }, + { + "affiliation": "Hepatobiliary Surgery Department, Guangxi Medical University Cancer Hospital, Nanning, China", + "ror_ids": [ + "https://ror.org/03dveyr97" + ] + }, + { + "affiliation": "Service de Neurochirurgie, Hôpital Fondation Adolphe de Rothschild, Paris, France", + "ror_ids": [ + "https://ror.org/02mdxv534" + ] + }, + { + "affiliation": "School of Architecture and Art Design, Hebei University of Technology, Tianjin, China", + "ror_ids": [ + "https://ror.org/018hded08" + ] + }, + { + "affiliation": "IRCCS Ospedale Policlinico San Martino, Genova, Italy", + "ror_ids": [ + "https://ror.org/04d7es448" + ] + }, + { + "affiliation": "Medical Laboratory Technology Department, College of Applied Medical Sciences, Jazan University, Jazan, Saudi Arabia", + "ror_ids": [ + "https://ror.org/02bjnq803" + ] + }, + { + "affiliation": "Department of Radiological Technology, Radiological Diagnosis, National Cancer Center Hospital, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/03rm3gk43" + ] + }, + { + "affiliation": "School of Computer Science, Academic College of Tel-Aviv Yaffo, Tel Aviv, Israel", + "ror_ids": [ + "https://ror.org/04cg6c004" + ] + }, + { + "affiliation": "Department of Clinical Pharmacology and Toxicology, University Hospital Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/01462r250" + ] + }, + { + "affiliation": "Henan University of Technology, Zhengzhou, Henan, China", + "ror_ids": [ + "https://ror.org/05sbgwt55" + ] + }, + { + "affiliation": "An-Najah National University, Nablus, Palestine", + "ror_ids": [ + "https://ror.org/0046mja08" + ] + }, + { + "affiliation": "School of Artificial Intelligence and Big Data, Hefei University, Hefei, Anhui, China", + "ror_ids": [ + "https://ror.org/01f5rdf64" + ] + }, + { + "affiliation": "Department of Psychological & Brain Sciences, Boston University, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/05qwgg493" + ] + }, + { + "affiliation": "Department of Urology, Policlinico San Martino Hospital, University of Genova, Genova, Italy", + "ror_ids": [ + "https://ror.org/0107c5v14", + "https://ror.org/04d7es448" + ] + }, + { + "affiliation": "University of Nova Gorica, Vipava, Slovenia", + "ror_ids": [ + "https://ror.org/00mw0tw28" + ] + }, + { + "affiliation": "Department of Chemistry, Washington University in St. Louis, St. Louis, MO, USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Department of Thoracic Surgery, Suzhou Kowloon Hospital, Shanghai Jiao Tong University School of Medicine, Suzhou, China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/00kkxne40" + ] + }, + { + "affiliation": "Department of Physiology, Yong Loo Lin School of Medicine, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Service d’Immunologie Clinique, CHU Saint-Louis, Université de Paris, Paris, France", + "ror_ids": [ + "https://ror.org/05f82e368" + ] + }, + { + "affiliation": "School of Nursing, McMaster University, Hamilton, ON, Canada", + "ror_ids": [ + "https://ror.org/02fa3aq29" + ] + }, + { + "affiliation": "Departamento de Ingeniería Eléctrica, Facultad de Ingeniería, Universidad de Antioquia (UdeA), Medellín, Colombia", + "ror_ids": [ + "https://ror.org/03bp5hc83" + ] + }, + { + "affiliation": "School of Mathematics, University of Bristol, Bristol, UK", + "ror_ids": [ + "https://ror.org/0524sp257" + ] + }, + { + "affiliation": "The Key Laboratory of Big Data Intelligent Computing of Zhejiang Province, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Diagnostic and Interventional Radiology, University Hospital Marburg, Philipps-University Marburg, Marburg, Germany", + "ror_ids": [ + "https://ror.org/01rdrb571" + ] + }, + { + "affiliation": "MOE International Joint Research Laboratory on Synthetic Biology and Medicines, School of Biology and Biological Engineering, South China University of Technology, Guangzhou, China", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Glorious Sun School of Business & Management, Donghua University, Shanghai, China", + "ror_ids": [ + "https://ror.org/035psfh38" + ] + }, + { + "affiliation": "Department of Pathology and Laboratory Medicine, Larner College of Medicine, University of Vermont, Burlington, VT, USA", + "ror_ids": [ + "https://ror.org/0155zta11" + ] + }, + { + "affiliation": "Department of Health Science, Global Health, University Medical Center Groningen, Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/03cv38k47" + ] + }, + { + "affiliation": "All-Russia Research Institute for Agricultural Microbiology, Petersburg, Russia", + "ror_ids": [ + "https://ror.org/01f02ww36" + ] + }, + { + "affiliation": "Brain Tumor Center at Siteman Cancer Center, Washington University School of Medicine, St. Louis, MO, USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "New Children’s Hospital and Clinical Nutrition Unit, Internal Medicine and Rehabilitation, University of Helsinki and Helsinki University Hospital, Helsinki, Finland", + "ror_ids": [ + "https://ror.org/02e8hzf44", + "https://ror.org/040af2s02" + ] + }, + { + "affiliation": "Centro de Física Aplicada y Tecnología Avanzada, Universidad Nacional Autónoma de México, Juriquilla, Querétaro, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "Mechanical Engineering Faculty, VIT University, Vellore, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/00qzypv28" + ] + }, + { + "affiliation": "Theoretical Computer Science Group, Goethe-Universität Frankfurt, Frankfurt, Germany", + "ror_ids": [ + "https://ror.org/04cvxnb49" + ] + }, + { + "affiliation": "Faculty of Science, Academic Assembly, University of Toyama, Toyama, Toyama, Japan", + "ror_ids": [ + "https://ror.org/0445phv87" + ] + }, + { + "affiliation": "Department of Plant Pathology, University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Wellcome Centre for Integrative Neuroimaging, University of Oxford, Oxford, United Kingdom", + "ror_ids": [ + "https://ror.org/052gg0110", + "https://ror.org/0172mzb45" + ] + }, + { + "affiliation": "Department of Tissue Engineering and Applied cell Sciences, School of Medicine ,Semnan University of Medical Science, Semnan, Iran", + "ror_ids": [ + "https://ror.org/05y44as61" + ] + }, + { + "affiliation": "Centre for Learning Analytics, Faculty of Information Technology, Monash University, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/02bfwt286" + ] + }, + { + "affiliation": "Department of Computer Science & Engineering, Indian Institute of Information Technology Bhagalpur, Bhagalpur, Bihar, India", + "ror_ids": [] + }, + { + "affiliation": "Department of Environmental Health Engineering, School of Health, Ahvaz Jundishapur University of Medical Sciences, Ahvaz, Iran", + "ror_ids": [ + "https://ror.org/01rws6r75" + ] + }, + { + "affiliation": "Department of Physics, Central Institute of Technology Kokrajhar (Deemed to be University, MoE, Govt. of India), Kokrajhar, Assam, India", + "ror_ids": [ + "https://ror.org/0329af416" + ] + }, + { + "affiliation": "Institute for Genetics, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "College of Humanities, Xi’an Shiyou University, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/040c7js64" + ] + }, + { + "affiliation": "Human Sciences Research Council, HSRC Building, Pretoria, South Africa", + "ror_ids": [ + "https://ror.org/056206b04" + ] + }, + { + "affiliation": "College of Animal Science and Technology, Northwest A&F University, Yangling, China", + "ror_ids": [ + "https://ror.org/0051rme32" + ] + }, + { + "affiliation": "Yildiz Technical University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/0547yzj13" + ] + }, + { + "affiliation": "Indian Council of Forestry Research and Education (ICFRE), Dehra Dun, India", + "ror_ids": [ + "https://ror.org/04r2bgz73" + ] + }, + { + "affiliation": "State and Local Joint Engineering Laboratory for Novel Functional Polymeric Materials, College of Chemistry, Chemical Engineering and Materials Science, Soochow University, Suzhou, China", + "ror_ids": [ + "https://ror.org/05t8y2r12" + ] + }, + { + "affiliation": "Department of Urology, Center for Reproductive Medicine, Peking University Third Hospital, Beijing, China", + "ror_ids": [ + "https://ror.org/04wwqze12" + ] + }, + { + "affiliation": "Stark Neurosciences Research Institute, Indiana University School of Medicine, Indianapolis, IN, USA", + "ror_ids": [ + "https://ror.org/02ets8c94" + ] + }, + { + "affiliation": "Student Research Committee, School of Medicine, Shahroud University of Medical Sciences, Shahroud, Iran", + "ror_ids": [ + "https://ror.org/023crty50" + ] + }, + { + "affiliation": "Department of Medical Imaging and Image-guided Therapy, Sun Yat-Sen University Cancer Center, State Key Laboratory of Oncology in South China, Collaborative Innovation Center for Cancer Medicine, Guangzhou, China", + "ror_ids": [ + "https://ror.org/0400g8r85", + "https://ror.org/04dn2ax39" + ] + }, + { + "affiliation": "Tetrad Graduate Program, University of California, San Francisco, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Department of Epidemiology and Biostatistics, University of California, San Francisco School of Medicine, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Department of Mathematics, Amity School of Applied Sciences, Amity University Haryana, Gurugram, Manesar, India", + "ror_ids": [ + "https://ror.org/02n9z0v62" + ] + }, + { + "affiliation": "Department of Anaesthesia and Perioperative Care, Division of Critical Care Medicine, University of California San Francisco, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Purdue University Northwest, Hammond, IN, USA", + "ror_ids": [ + "https://ror.org/04keq6987" + ] + }, + { + "affiliation": "National Demonstration Center for Experimental Mechanical and Electrical Engineering Education (Tianjin University of Technology), Tianjin, China", + "ror_ids": [ + "https://ror.org/00zbe0w13" + ] + }, + { + "affiliation": "Psychology and Counseling Department, An-Najah National University, Nablus, Palestine", + "ror_ids": [ + "https://ror.org/0046mja08" + ] + }, + { + "affiliation": "Chongqing Key Laboratory of Child Infection and Immunity, Ministry of Education Key Laboratory of Child Development and Disorders, National Clinical Research Center for Child Health and Disorders, China International Science and Technology Cooperation Base of Child Development and Critical Disorders, Children’s Hospital of Chongqing Medical University, , China", + "ror_ids": [ + "https://ror.org/05pz4ws32", + "https://ror.org/00bsdxt65" + ] + }, + { + "affiliation": "Research and Study Group in Clinical Simulation and Obstetric Practices (GPESPO), School of Arts, Sciences and Humanities of University of Sao Paulo, São Paulo, SP, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Chemistry, Annamalai University, Tamil Nadu, Annamalainagar, India", + "ror_ids": [ + "https://ror.org/01x24z140" + ] + }, + { + "affiliation": "East Suffolk and North Essex NHS Foundation Trust, Essex, UK", + "ror_ids": [ + "https://ror.org/019g08z42" + ] + }, + { + "affiliation": "Department of Sciences, Nirma University, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/05qkq7x38" + ] + }, + { + "affiliation": "Department of Water Engineering, School of Agriculture, Shiraz University, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/028qtbk54" + ] + }, + { + "affiliation": "Osmaniye Korkut Ata University, Duzici Vocational High School, Motor Vehicles and Transport Technology, Osmaniye, Türkiye", + "ror_ids": [ + "https://ror.org/03h8sa373" + ] + }, + { + "affiliation": "Med-X Engineering Center for Medical Equipment and Technology, School of Biomedical Engineering, Shanghai Jiao Tong University, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Department of Clinical Engineering, Otemae Hospital, Osaka, Japan", + "ror_ids": [ + "https://ror.org/05m7r3n78" + ] + }, + { + "affiliation": "Department of Product Design, Sanming University, Sanming, Fujian, China", + "ror_ids": [ + "https://ror.org/044pany34" + ] + }, + { + "affiliation": "Institute of Basic and Applied Sciences, Faculty of Engineering, Arab Academy for Science, Technology and Maritime Transport, Alexandria, Egypt", + "ror_ids": [ + "https://ror.org/0004vyj87" + ] + }, + { + "affiliation": "Department of Environmental Science, Sri Pratap College, Cluster University Srinagar, Srinagar, Kashmir, India", + "ror_ids": [ + "https://ror.org/0127tex41" + ] + }, + { + "affiliation": "Department of Mathematics, University of Illinois, Urbana, IL, USA", + "ror_ids": [ + "https://ror.org/047426m28" + ] + }, + { + "affiliation": "Institute of Environmental Sciences, Jagiellonian University, Kraków, Poland", + "ror_ids": [ + "https://ror.org/03bqmcz70" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Jülich-UNIST Joint Leading Institute for Advanced Energy Research, Ulsan National Institute of Science and Technology (UNIST), Ulsan, Republic of Korea", + "ror_ids": [ + "https://ror.org/017cjz748" + ] + }, + { + "affiliation": "The Second Affiliated Hospital of Harbin Medical University, Harbin, China", + "ror_ids": [ + "https://ror.org/03s8txj32" + ] + }, + { + "affiliation": "University of Applied Sciences & Arts Hannover, Hannover, Germany", + "ror_ids": [ + "https://ror.org/03m2kj587" + ] + }, + { + "affiliation": "Biostatistics and Research Method Center, University Hospital of Liege, Liege, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "State Key Laboratory of Southwestern Chinese Medicine Resources, Innovative Institute of Chinese Medicine and Pharmacy, Chengdu University of Traditional Chinese Medicine, Chengdu, China", + "ror_ids": [ + "https://ror.org/00pcrz470" + ] + }, + { + "affiliation": "School of Nuclear Science and Technology, University of Chinese Academy of Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/05qbk4x57" + ] + }, + { + "affiliation": "Sorbonne Université, CNRS IMJ-PRG, Paris Cedex 05, France", + "ror_ids": [ + "https://ror.org/02en5vm52" + ] + }, + { + "affiliation": "Department of Epidemiology and Medical Statistics, College of Medinec, University of Ibadan, Ibadan, Nigeria", + "ror_ids": [ + "https://ror.org/03wx2rr30" + ] + }, + { + "affiliation": "Department of Pathology and Laboratory Medicine, Warren Alpert Medical School & Legorreta Cancer Center, Brown University, Providence, USA", + "ror_ids": [ + "https://ror.org/05gq02987" + ] + }, + { + "affiliation": "Division of Genetics and Cell Biology, San Raffaele Scientific Institute, Milan, Italy", + "ror_ids": [ + "https://ror.org/039zxt351" + ] + }, + { + "affiliation": "School of Mathematics, East China University of Science and Technology, Shanghai, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01vyrm377" + ] + }, + { + "affiliation": "Department of Electrical Engineering, Pandit Deendayal Energy University, Gandhinagar, Gujarat, India", + "ror_ids": [ + "https://ror.org/02nsv5p42" + ] + }, + { + "affiliation": "Dalian Ocean University, Dalian, Liaoning, China", + "ror_ids": [ + "https://ror.org/0523b6g79" + ] + }, + { + "affiliation": "National Centre for Microbial Resource (NCMR), National Centre for Cell Science, Pune, Maharashtra, India", + "ror_ids": [ + "https://ror.org/01bp81r18" + ] + }, + { + "affiliation": "School of Chemistry, University of Nottingham, University Park, Nottingham, UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Health Evaluation, Technology, and Economics Group, Federal University of Espírito Santo, Alegre, Brazil", + "ror_ids": [ + "https://ror.org/05sxf4h28" + ] + }, + { + "affiliation": "Università della Basilicata, Potenza, Italy", + "ror_ids": [ + "https://ror.org/03tc05689" + ] + }, + { + "affiliation": "Institute of Horticultural Biotechnology, Fujian Agriculture and Forestry University, Fuzhou, China", + "ror_ids": [ + "https://ror.org/04kx2sy84" + ] + }, + { + "affiliation": "Novosibirsk State Technical University (NSTU), Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/01b2f6h61" + ] + }, + { + "affiliation": "Princess Margaret Cancer Centre, University Health Network, Toronto, Canada", + "ror_ids": [ + "https://ror.org/042xt5161", + "https://ror.org/03zayce58" + ] + }, + { + "affiliation": "Department of Engineering Sciences, Izmir Katip Celebi University, Izmir, Turkey", + "ror_ids": [ + "https://ror.org/024nx4843" + ] + }, + { + "affiliation": "Department of Health Services Research and Policy, London School of Hygiene and Tropical Medicine, London, UK", + "ror_ids": [ + "https://ror.org/00a0jsq62" + ] + }, + { + "affiliation": "Institut für Technische Optik, University of Stuttgart, Stuttgart, Germany", + "ror_ids": [ + "https://ror.org/04vnq7t77" + ] + }, + { + "affiliation": "Brisol Myers Squibb, Montreal, Québec, Canada", + "ror_ids": [ + "https://ror.org/01r00g076" + ] + }, + { + "affiliation": "Department of Pathology, University Hospital of Pitié-salpêtrière-Charles Foix, Paris, France", + "ror_ids": [ + "https://ror.org/02mh9a093" + ] + }, + { + "affiliation": "Réanimation Médicale, CHU Rennes, Rennes, France", + "ror_ids": [ + "https://ror.org/05qec5a53" + ] + }, + { + "affiliation": "Dokuz Eylül University, Faculty of Engineering, Department of Metallurgical and Materials Engineering, Buca, İzmir, Turkey", + "ror_ids": [ + "https://ror.org/00dbd8b73" + ] + }, + { + "affiliation": "Department of Biology (Biotechnology), Faculty of Science, Hacettepe University, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/04kwvgz42" + ] + }, + { + "affiliation": "Department of Business and Management Science, NHH Norwegian School of Economics, Bergen, Norway", + "ror_ids": [ + "https://ror.org/04v53s997" + ] + }, + { + "affiliation": "School of Rural Medicine, Charles Sturt University, Orange, NSW, Australia", + "ror_ids": [ + "https://ror.org/00wfvh315" + ] + }, + { + "affiliation": "Green Technology Group, Faculty of Science, Alexandria University, Alexandria, Egypt", + "ror_ids": [ + "https://ror.org/00mzz1w90" + ] + }, + { + "affiliation": "Surgical Pathology Department, Hospital Clínico San Carlos, IdiSSC, Universidad Complutense de Madrid, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045", + "https://ror.org/04d0ybj29" + ] + }, + { + "affiliation": "Service of Obstetrics and Prenatal Medecine, Universitair Ziekenhuis Brussel, Brussels, Belgium", + "ror_ids": [ + "https://ror.org/038f7y939" + ] + }, + { + "affiliation": "College of Ecology and Environment, Xinjiang University, Urumqi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/059gw8r13" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Faculty of Engineering, Shahid Chamran University of Ahvaz, Ahvaz, Iran", + "ror_ids": [ + "https://ror.org/01k3mbs15" + ] + }, + { + "affiliation": "State Key Laboratory of Mountain Bridge and Tunnel Engineering, Chongqing Jiaotong University, Chongqing, P.R. China", + "ror_ids": [ + "https://ror.org/01t001k65" + ] + }, + { + "affiliation": "Department of Software Engineering, CITIC, University of Granada, Granada, Spain", + "ror_ids": [ + "https://ror.org/04njjy449" + ] + }, + { + "affiliation": "Key Laboratory of Tumor Microenvironment and Immune Therapy of Zhejiang Province, Second Affiliated Hospital, Zhejiang University School of Medicine, Hangzhou, P.R. China", + "ror_ids": [ + "https://ror.org/059cjpv64", + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "The State Key Lab of Explosion Science and Technology, Beijing Institute of Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "Klinik für Neurologie, Friedrich-Ebert-Krankenhaus Neumünster GmbH, Neumünster, Deutschland", + "ror_ids": [ + "https://ror.org/0257syp95" + ] + }, + { + "affiliation": "Division of Public Health Sciences, Department of Surgery, Washington University School of Medicine, Saint Louis, MO, USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Departiment of Culture and Languages, University of Modena and Reggio Emilia, Modena, Italy", + "ror_ids": [ + "https://ror.org/02d4c4y02" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, Maternal and Perinatal Care Center, Seirei Hamamatsu General Hospital, Hamamatsu, Japan", + "ror_ids": [ + "https://ror.org/036pfyf12" + ] + }, + { + "affiliation": "Department of English, The High School Affiliated to Jiangxi Normal University, Jiangxi, China", + "ror_ids": [ + "https://ror.org/05nkgk822" + ] + }, + { + "affiliation": "University of Greenwich, London, UK", + "ror_ids": [ + "https://ror.org/00bmj0a71" + ] + }, + { + "affiliation": "Department of CS & IT (MCA), Central University of Haryana, Jant, India", + "ror_ids": [ + "https://ror.org/03mtwkv54" + ] + }, + { + "affiliation": "Department of Ophthalmology, Asan Medical Center, Seoul, Korea", + "ror_ids": [ + "https://ror.org/03s5q0090" + ] + }, + { + "affiliation": "College of Horticulture, Odisha University of Agriculture and Technology, Chiplima, India", + "ror_ids": [ + "https://ror.org/03tg0z446" + ] + }, + { + "affiliation": "Dental Research Center, School of dentistry, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Black Hole Initiative at Harvard University, Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Weierstrass Institute for Applied Analysis and Stochastics (WIAS), Berlin, Germany", + "ror_ids": [ + "https://ror.org/00h1x4t21" + ] + }, + { + "affiliation": "Division of Transfusion Medicine, Cell Therapeutics and Haemostaseology, University Hospital, Ludwig-Maximilians-Universität München, Munich, Germany", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "Department of Intensive Care, School of Medicine, University of São Paulo, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Leibniz Institute of Freshwater Ecology and Inland Fisheries, Berlin, Germany", + "ror_ids": [ + "https://ror.org/01nftxb06" + ] + }, + { + "affiliation": "McGill University Health Centre, Montreal, QC, Canada", + "ror_ids": [ + "https://ror.org/04cpxjv19" + ] + }, + { + "affiliation": "Nano-Biotech Research Group, Post Graduate and Research, Department of Biotechnology & Microbiology National College Trichy, Tiruchirappalli, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/03tjsyq23" + ] + }, + { + "affiliation": "Department of Medicine, Surgery and Neurosciences, Rheumatology Unit, University of Siena, Siena, Italy", + "ror_ids": [ + "https://ror.org/01tevnk56" + ] + }, + { + "affiliation": "Department of Biological Models, Institute of Biochemistry, Life Science Center, Vilnius University, Vilnius, Lithuania", + "ror_ids": [ + "https://ror.org/03nadee84" + ] + }, + { + "affiliation": "Hitit University Faculty of Science and Letters, Department of Anthropology, Çorum, Türkiye", + "ror_ids": [ + "https://ror.org/01x8m3269" + ] + }, + { + "affiliation": "Fergana State University, Fergana, Uzbekistan", + "ror_ids": [ + "https://ror.org/0190ze463" + ] + }, + { + "affiliation": "University of South China, Hengyang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03mqfn238" + ] + }, + { + "affiliation": "Department of Applied Sciences, Haldia Institute of Technology, Purba Midnapore, West Bengal, India", + "ror_ids": [ + "https://ror.org/0211bs523" + ] + }, + { + "affiliation": "Intelligent Manufacturing Institute of HFUT, Hefei, China", + "ror_ids": [ + "https://ror.org/02czkny70" + ] + }, + { + "affiliation": "National Gastroenterology and Hepatology Program, Veterans Health Administration, Department of Veterans Affairs, Washington, DC, USA", + "ror_ids": [ + "https://ror.org/05eq41471", + "https://ror.org/05rsv9s98" + ] + }, + { + "affiliation": "Unidad Territorial Infección Nosocomial y Política Antibiòtica (UTIN), Hospital Universitari Arnau de Vilanova, Lleida, Spain", + "ror_ids": [ + "https://ror.org/01p3tpn79" + ] + }, + { + "affiliation": "Department of Applied Physics, Science for Life Laboratory, KTH Royal Institute of Technology, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/026vcq606", + "https://ror.org/04ev03g22" + ] + }, + { + "affiliation": "High Energy Physics Division, Argonne National Laboratory, Argonne, IL, United States of America", + "ror_ids": [ + "https://ror.org/05gvnxz63" + ] + }, + { + "affiliation": "University of Groningen, CAMA and CIRANO, Groningen, The Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Biotechnology, Faculty of Advanced Science and Technology, Tehran Medical Sciences, Islamic Azad University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01kzn7k21" + ] + }, + { + "affiliation": "Department of Cardiology, Renji Hospital, School of Medicine, Shanghai Jiaotong University, Shanghai, China", + "ror_ids": [ + "https://ror.org/03ypbx660", + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Trauma and Transfusion Medicine Research Center, Department of Surgery, University of Pittsburgh Medical Center, Pittsburgh, PA, USA", + "ror_ids": [ + "https://ror.org/04ehecz88" + ] + }, + { + "affiliation": "Department of Thoracic Surgery and Lung Transplantation, Hôpital Foch, Suresnes, France", + "ror_ids": [ + "https://ror.org/058td2q88" + ] + }, + { + "affiliation": "Reproductive and Maternal Health Research Group, Public Health Department, Institute of Tropical Medicine Antwerp, Antwerp, Belgium", + "ror_ids": [ + "https://ror.org/03xq4x896" + ] + }, + { + "affiliation": "Applied Artificial Intelligence Research Centre, Computer Engineering Department, Near East University, Lefkosa, Northern Cyprus, Turkey", + "ror_ids": [ + "https://ror.org/02x8svs93" + ] + }, + { + "affiliation": "National Clinical Research Center for Geriatric Disorders, Xiangya Hospital, Changsha, China", + "ror_ids": [ + "https://ror.org/05c1yfj14" + ] + }, + { + "affiliation": "Department of Advanced Biomedical Sciences, Federico II University Hospital, Naples, Italy", + "ror_ids": [ + "https://ror.org/02jr6tp70" + ] + }, + { + "affiliation": "Department of Mathematics, Indian Institute of Technology Guwahati, Guwahati, India", + "ror_ids": [ + "https://ror.org/0022nd079" + ] + }, + { + "affiliation": "Nantes Université, CHU Nantes, INSERM, Center for Research in Transplantation and Translational Immunology, UMR 1064, Nantes, France", + "ror_ids": [ + "https://ror.org/03gnr7b55", + "https://ror.org/01165k395" + ] + }, + { + "affiliation": "Instituto de Informática, Universidad Austral de Chile, Valdivia, Chile", + "ror_ids": [ + "https://ror.org/029ycp228" + ] + }, + { + "affiliation": "Sustainable Thermal Energy Systems Laboratory (STESL), Department of Mechanical Engineering, National Institute of Technology Rourkela, Rourkela, Odisha, India", + "ror_ids": [ + "https://ror.org/011gmn932" + ] + }, + { + "affiliation": "International Center for Climate and Environment Sciences, Institute of Atmospheric Physics, Chinese Academy of Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/0424h4e32" + ] + }, + { + "affiliation": "Department of Gastroenterology and Nutrition, Nutrition Support and Intestinal Failure Team, Birmingham Women’s and Children’s Hospital, Birmingham, West Midlands, UK", + "ror_ids": [ + "https://ror.org/017k80q27" + ] + }, + { + "affiliation": "Faculdade de Medicina, Centro de Ciências Biológicas e da Saúde, Universidade Federal do Maranhão, São Luís, MA, Brazil", + "ror_ids": [ + "https://ror.org/043fhe951" + ] + }, + { + "affiliation": "Cardiac Surgery, Handa City Hospital, Aichi, Japan", + "ror_ids": [ + "https://ror.org/037a76178" + ] + }, + { + "affiliation": "Department of Electronics and Communication Engineering, SRM Institute of Science and Technology, Delhi NCR Campus, Ghaziabad, India", + "ror_ids": [ + "https://ror.org/050113w36" + ] + }, + { + "affiliation": "Institute of Water Chemistry, Chair of Analytical Chemistry and Water Chemistry, School of Natural Science, Technical University of Munich, Garching, Germany", + "ror_ids": [ + "https://ror.org/02kkvpp62" + ] + }, + { + "affiliation": "Chair of Materials Technology, Ruhr-University Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Bank of Italy, Currency Circulation Management Directorate, Rome, Italy", + "ror_ids": [ + "https://ror.org/03v2nbx43" + ] + }, + { + "affiliation": "College of Education, Department of Educational Administration and Foundations, Yarmouk University, Irbid, Jordan", + "ror_ids": [ + "https://ror.org/004mbaj56" + ] + }, + { + "affiliation": "Rzeszow University of Technology, Rzeszów, Poland", + "ror_ids": [ + "https://ror.org/056xse072" + ] + }, + { + "affiliation": "Department of Organic Chemistry, Faculty of Chemistry, Bu-Ali Sina University, Hamedan, Iran", + "ror_ids": [ + "https://ror.org/04ka8rx28" + ] + }, + { + "affiliation": "Department of Mathematics, Kwangwoon University, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/02e9zc863" + ] + }, + { + "affiliation": "Department of Comparative Medicine, Stanford University, Stanford, CA, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "School of Chemical Engineering, Guizhou Minzu University, Guiyang, Guizhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00qm4t918" + ] + }, + { + "affiliation": "Faculty of Clinical Medicine, Zhejiang University School of Medicine, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Department of Intensive Care, Yuhuan Second People’s Hospital of Health Community Group, Taizhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/042g3qa69" + ] + }, + { + "affiliation": "Department of Pathology, Hidaka Hospital, Takasaki City, Gunma, Japan", + "ror_ids": [ + "https://ror.org/01cxg6q60" + ] + }, + { + "affiliation": "The Ohio State University, Educational Studies, Columbus, OH, USA", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Department of Aquaculture, Doğanşehir V.K. Vocational School, Malatya Turgut Özal University, Malatya, Turkey", + "ror_ids": [ + "https://ror.org/01v2xem26" + ] + }, + { + "affiliation": "Australian Centre for Water and Environmental Biotechnology (ACWEB), Faculty of Engineering, Architecture and Information Technology, University of Queensland, Brisbane, Australia", + "ror_ids": [ + "https://ror.org/00rqy9422" + ] + }, + { + "affiliation": "Turku PET Centre, University of Turku and Turku University Hospital, Turku, Finland", + "ror_ids": [ + "https://ror.org/05vghhr25", + "https://ror.org/05dbzj528", + "https://ror.org/01761e930" + ] + }, + { + "affiliation": "Università degli Studi di Milano-Bicocca & INFN Sezione di Milano-Bicocca, Milano, Italy", + "ror_ids": [ + "https://ror.org/01ynf4891", + "https://ror.org/03xejxm22" + ] + }, + { + "affiliation": "Department of Pathology, Rampurhat Government Medical College, Rampurhat, West Bengal, India", + "ror_ids": [ + "https://ror.org/04aznd361" + ] + }, + { + "affiliation": "College of Nursing and Health Innovation, The University of Texas at Arlington, Arlington, TX, USA", + "ror_ids": [ + "https://ror.org/019kgqr73" + ] + }, + { + "affiliation": "University College Venlo, Faculty of Science and Engineering, Maastricht University, Maastricht, The Netherlands", + "ror_ids": [ + "https://ror.org/02jz4aj89" + ] + }, + { + "affiliation": "Thomas Francis School of Public Health, University of Michigan, Raleigh, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "DeCA, Department of Communication and Art, University of Aveiro, Aveiro, Portugal", + "ror_ids": [ + "https://ror.org/00nt41z93" + ] + }, + { + "affiliation": "Research Institute for Sustainable Humanosphere, Kyoto University, Gokasho, Uji, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Dipartimento di Fisica e Astronomia dell’Università and Sezione INFN, Bologna, Italy", + "ror_ids": [ + "https://ror.org/01111rn36", + "https://ror.org/04j0x0h93" + ] + }, + { + "affiliation": "Shanghai Children’s Medical Center, School of Medicine, Shanghai Jiao Tong University, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Ulm University, Ulm, Germany", + "ror_ids": [ + "https://ror.org/032000t02" + ] + }, + { + "affiliation": "Third Faculty of Medicine, Charles University in Prague, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/024d6js02" + ] + }, + { + "affiliation": "School of Mathematics and Statistics, Shandong University of Technology, Zibo, Shandong, China", + "ror_ids": [ + "https://ror.org/02mr3ar13" + ] + }, + { + "affiliation": "Department of Infectious, Tropical Diseases and Microbiology, IRCCS Sacro Cuore Don Calabria Hospital, Verona, Italy", + "ror_ids": [ + "https://ror.org/010hq5p48" + ] + }, + { + "affiliation": "Department of IT and Computer Engineering, Urmia University of Technology, Urmia, Iran", + "ror_ids": [ + "https://ror.org/02v319z25" + ] + }, + { + "affiliation": "Departamento Traumatología, Complejo Asistencial Dr. Sótero del Río, Santiago, Chile", + "ror_ids": [ + "https://ror.org/049jkjr31" + ] + }, + { + "affiliation": "Pediatric Cardiology, Mount Sinai Kravis Children’s Hospital, New York, NY, USA", + "ror_ids": [ + "https://ror.org/01zkyz108" + ] + }, + { + "affiliation": "Univ. Bordeaux, CNRS, MCC, PACEA, UMR 5199, Pessac, France", + "ror_ids": [ + "https://ror.org/057qpr032" + ] + }, + { + "affiliation": "Department of Humanist Chaplaincy Studies for a Plural Society, University of Humanistic Studies, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/04w5ec154" + ] + }, + { + "affiliation": "Hunan University of Arts and Science, Changde, China", + "ror_ids": [ + "https://ror.org/01ggnn306" + ] + }, + { + "affiliation": "Research School of Biology, Australian National University, Canberra, ACT, Australia", + "ror_ids": [ + "https://ror.org/019wvm592" + ] + }, + { + "affiliation": "Deptartment of Ophthalmology, Wenzhou Medical University, Wenzhou, China", + "ror_ids": [ + "https://ror.org/00rd5t069" + ] + }, + { + "affiliation": "NYS Psychiatric Institute and Department of Psychiatry, Vagelos College of Physicians & Surgeons of Columbia University, New York, NY, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "Saw Swee Hock School of Public Health, The National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Pattern Analysis and Learning Group, Heidelberg University Hospital, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/013czdx64" + ] + }, + { + "affiliation": "The Affiliated Traditional Chinese Medicine Hospital of Guangzhou Medical University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/00zat6v61" + ] + }, + { + "affiliation": "Departments of Ophthalmology and Neurology, University of Pennsylvania, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Department of Ophthalmology, Seoul Metropolitan Government–Seoul National University Boramae Medical Center, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/002wfgr58", + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Department of Dermatology and Allergy, Comprehensive Allergy Center, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Department of Microbiology, Federal University of Viçosa, Viçosa, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0409dgb37" + ] + }, + { + "affiliation": "Department of Environmental and Biological Chemistry, Chungbuk National University Cheongju, Chungbuk, Republic of Korea", + "ror_ids": [ + "https://ror.org/02wnxgj78" + ] + }, + { + "affiliation": "Genetics Department, Institute of Ophthalmology “Conde de Valenciana”, Mexico City, Mexico", + "ror_ids": [ + "https://ror.org/036awca68" + ] + }, + { + "affiliation": "IcatKnee, Hospital Universitari Dexeus – Universitat Autònoma de Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, National Institute of Technology, Meghalaya, India", + "ror_ids": [ + "https://ror.org/020vd6n84" + ] + }, + { + "affiliation": "Department of Chemical and Biological Engineering, Sookmyung Women’s University, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/00vvvt117" + ] + }, + { + "affiliation": "Key Laboratory of Cognition and Personality (Ministry of Education), Southwest University, Chongqing, China", + "ror_ids": [ + "https://ror.org/01kj4z117" + ] + }, + { + "affiliation": "Virus Facility, Research Animal Resource Center, Korea Institute of Science and Technology, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/05kzfa883" + ] + }, + { + "affiliation": "Department of Radiology, Massachusetts General Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Renewable Energy Development Unit in Arid Zones (UDERZA), University of El Oued, El Oued, Algeria", + "ror_ids": [ + "https://ror.org/05416s909" + ] + }, + { + "affiliation": "A.N. Bach Institute of Biochemistry, Moscow, Russia", + "ror_ids": [ + "https://ror.org/0009wsb17" + ] + }, + { + "affiliation": "Department of Energy Systems Engineering, School of Advanced Technology, Iran University of Science and Technology, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01jw2p796" + ] + }, + { + "affiliation": "Department of Mathematics, College of Basic Education, University of Raparin, Ranya, Kurdistan Region, Iraq", + "ror_ids": [ + "https://ror.org/00fs9wb06" + ] + }, + { + "affiliation": "Urban and Environmental Engineering Research Unit, Université de Liège, Liège, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "Department of Biotechnology, PSG College of Technology, Coimbatore, India", + "ror_ids": [ + "https://ror.org/03tjsyq23" + ] + }, + { + "affiliation": "Department of Pedagogy and Methods of Primary Education, Nerungri Technical Institute (Branch) of M.K. Ammosov North-Eastern Federal University, Nerungri, Russia", + "ror_ids": [ + "https://ror.org/02p6aa271" + ] + }, + { + "affiliation": "Mechanical Engineering Department, Presidency University, Itgalpura, Bangalore, India", + "ror_ids": [ + "https://ror.org/04xgbph11" + ] + }, + { + "affiliation": "R&D Hydraulic Laboratory, Vattenfall AB, Älvkarleby, Sweden", + "ror_ids": [ + "https://ror.org/028v4fg64" + ] + }, + { + "affiliation": "Department of Psychology, Education and Child Studies, Erasmus University Rotterdam, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/057w15z03" + ] + }, + { + "affiliation": "Telecommunications Engineering Department, Yarmouk University, Irbid, Jordan", + "ror_ids": [ + "https://ror.org/004mbaj56" + ] + }, + { + "affiliation": "Philosophisch-Sozialwissenschaftliche Fakultät, Raum: 2059, Gebäude D, Universität Augsburg, Augsburg, Deutschland", + "ror_ids": [ + "https://ror.org/03p14d497" + ] + }, + { + "affiliation": "Department of Control Engineering and Signaling, School of Railway Engineering, Iran University of Science and Technology (IUST), Tehran, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01jw2p796" + ] + }, + { + "affiliation": "Institut Teknologi Bandung, Bandung, Indonesia", + "ror_ids": [ + "https://ror.org/00apj8t60" + ] + }, + { + "affiliation": "German Center for Neurodegenerative Diseases (DZNE), partner site Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/043j0f473" + ] + }, + { + "affiliation": "University of Health Sciences, Gulhane Institute of Health Sciences, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "Fakultät für Tourismus, Hochschule München, München, Deutschland", + "ror_ids": [ + "https://ror.org/012k1v959" + ] + }, + { + "affiliation": "Children’s Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/0282qcz50" + ] + }, + { + "affiliation": "Diabetes Center, the Second Xiangya Hospital, Institute of Metabolism and Endocrinology, Central South University, Changsha, China", + "ror_ids": [ + "https://ror.org/00f1zfq44", + "https://ror.org/053v2gh09" + ] + }, + { + "affiliation": "Department of Hematology/Oncology, Saitama Children’s Medical Center, Saitama, Japan", + "ror_ids": [ + "https://ror.org/00smq1v26" + ] + }, + { + "affiliation": "Clinical Medical College, Ningxia Medical University, Yinchuan, China", + "ror_ids": [ + "https://ror.org/02h8a1848" + ] + }, + { + "affiliation": "Department of Metallurgical, Materials and Biomedical Engineering, University of Texas, El Paso, TX, USA", + "ror_ids": [ + "https://ror.org/04d5vba33" + ] + }, + { + "affiliation": "Department of Biotechnology, National Institute of Technology, Tadepalligudem, India", + "ror_ids": [ + "https://ror.org/03tjsyq23" + ] + }, + { + "affiliation": "Institute of Environment and Department of Biology, Florida International University, North Miami, FL, USA", + "ror_ids": [ + "https://ror.org/02gz6gg07" + ] + }, + { + "affiliation": "School of Material Science and Engineering, Nanjing University of Science and Technology, Nanjing, China", + "ror_ids": [ + "https://ror.org/00xp9wg62" + ] + }, + { + "affiliation": "Department of Statistics and Actuarial Science, University of Waterloo, Waterloo, ON, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "National Institute for Research and Development in Tourism, Bucharest, Romania", + "ror_ids": [ + "https://ror.org/008fkr426" + ] + }, + { + "affiliation": "Department of Primary Education, University of the Aegean, Rhodes, Greece", + "ror_ids": [ + "https://ror.org/03zsp3p94" + ] + }, + { + "affiliation": "Human Aging Research Institute and School of Life Science, Nanchang University, and Jiangxi Key Laboratory of Human Aging, Jiangxi, China", + "ror_ids": [ + "https://ror.org/042v6xz23" + ] + }, + { + "affiliation": "Janssen Research & Development, LLC, San Diego, CA, USA", + "ror_ids": [] + }, + { + "affiliation": "Department of Otorhinolaryngology-Head Neck Surgery, School of Medical Sciences, Universiti Sains Malaysia Health Campus, 16150 Kubang Kerian, Kelantan, Malaysia", + "ror_ids": [ + "https://ror.org/02rgb2k63" + ] + }, + { + "affiliation": "LC Campbell Cognitive Neurology Unit, Hurvitz Brain Sciences Program, Sunnybrook Research Institute, University of Toronto, Toronto, Ontario, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087", + "https://ror.org/05n0tzs53" + ] + }, + { + "affiliation": "Department of Computer Science, College of Computer Science and Information Technology, Jazan University, Jizan, Kingdom of Saudi Arabia", + "ror_ids": [ + "https://ror.org/02bjnq803" + ] + }, + { + "affiliation": "Department of Computer Science, Alagappa University, Karaikudi, India", + "ror_ids": [ + "https://ror.org/04ec9cc06" + ] + }, + { + "affiliation": "Helmholtz-Institute Münster, IEK-12, Forschungszentrum Jülich GmbH, Münster, Germany", + "ror_ids": [ + "https://ror.org/04ktat366", + "https://ror.org/02nv7yv05" + ] + }, + { + "affiliation": "EaRSLab—Earth Remote Sensing Laboratory, University of Évora, Évora, Portugal", + "ror_ids": [ + "https://ror.org/02gyps716" + ] + }, + { + "affiliation": "Université Paris Cité, UFR de Médecine, Paris, France", + "ror_ids": [ + "https://ror.org/05f82e368" + ] + }, + { + "affiliation": "Department of Human-Artificial Intelligence Interaction, Sungkyunkwan University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/04q78tk20" + ] + }, + { + "affiliation": "Environmental Management Laboratory, Mykolas Romeris University, Vilnius, Lithuania", + "ror_ids": [ + "https://ror.org/0052k0e03" + ] + }, + { + "affiliation": "Faculty of Medicine and Dentistry, University of Toronto, Toronto, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087" + ] + }, + { + "affiliation": "Faculty of Health Sciences, University of Beira Interior, Covilhã, Portugal", + "ror_ids": [ + "https://ror.org/03nf36p02" + ] + }, + { + "affiliation": "Embrapa Recursos Genéticos e Biotecnologia, Brasília, Brasil", + "ror_ids": [ + "https://ror.org/0482b5b22" + ] + }, + { + "affiliation": "Research Center for Food and Cosmetic Safety, College of Human Ecology, Chang Gung University of Science and Technology, Taoyuan, Taiwan", + "ror_ids": [ + "https://ror.org/009knm296" + ] + }, + { + "affiliation": "Department of Mathematics, Swansea University, Swansea, UK", + "ror_ids": [ + "https://ror.org/053fq8t95" + ] + }, + { + "affiliation": "Child and Adolescent Mental Health Odense, Mental Health Services in the Region of Southern Denmark, Odense C, Denmark", + "ror_ids": [ + "https://ror.org/0290a6k23" + ] + }, + { + "affiliation": "University of Sharjah, Sharjah, United Arab Emirates", + "ror_ids": [ + "https://ror.org/00engpz63" + ] + }, + { + "affiliation": "Department of Chemistry and Engineering Research Center of Advanced Rare-Earth Materials of Ministry of Education, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Cytel, Waltham, MA, USA", + "ror_ids": [ + "https://ror.org/01ftkxq60" + ] + }, + { + "affiliation": "Department of Computer Science, University of Oxford, Oxford, United Kingdom", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Clinic of Rheumatology and Clinical Immunology, University Hospital of Larissa, Larissa, Greece", + "ror_ids": [ + "https://ror.org/01s5dt366" + ] + }, + { + "affiliation": "Oncology Center, Yamaguchi University Hospital, Ube, Japan", + "ror_ids": [ + "https://ror.org/02dgmxb18" + ] + }, + { + "affiliation": "Institute of Physics and Department of Physics, Key Laboratory of Low Dimensional Quantum Structures and Quantum Control of Ministry of Education, Synergetic Innovation Center for Quantum Effects and Applications, Hunan Normal University, , China", + "ror_ids": [ + "https://ror.org/053w1zy07" + ] + }, + { + "affiliation": "Department of Cardiac Thoracic Vascular Sciences and Public Health, Public Health Section, University of Padua, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Department of Agroecology & Crop Production, Faculty of Agrobiology Food & Natural Resources, Czech University of Life Sciences, Prague, Prague 6, Suchdol, Czech Republic", + "ror_ids": [ + "https://ror.org/0415vcw02" + ] + }, + { + "affiliation": "School of Education, Communication and Society, King’s College London, London, UK", + "ror_ids": [ + "https://ror.org/0220mzb33" + ] + }, + { + "affiliation": "Department of Immunology and Microbiology, LEO Foundation Skin Immunology Research Center, University of Copenhagen, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/035b05819", + "https://ror.org/02rgsr590" + ] + }, + { + "affiliation": "Division of Infectious Diseases, Department of Medicine, Long School of Medicine, University of Texas Health Science Center San Antonio, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/02f6dcw23" + ] + }, + { + "affiliation": "Gujarat University, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/017f2w007" + ] + }, + { + "affiliation": "Bayerisches Staatsministerium des Innern, für Sport und Integration, München, Deutschland", + "ror_ids": [ + "https://ror.org/00d2xk240" + ] + }, + { + "affiliation": "BET Research Institute, Chung-Ang University, Anseong, Republic of Korea", + "ror_ids": [ + "https://ror.org/01r024a98" + ] + }, + { + "affiliation": "National Centre for Earth Observation, PML, Plymouth, UK", + "ror_ids": [ + "https://ror.org/0375jbm11" + ] + }, + { + "affiliation": "Institute of Forensic Medicine, Forensic Molecular Biology, Head of Department (R&T), University of Bern, Bern, Switzerland", + "ror_ids": [ + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "Department of Ceramic, Faculty of Fine Arts and Design, Inönü University, #N/A, #N/A, Turkey", + "ror_ids": [ + "https://ror.org/04asck240" + ] + }, + { + "affiliation": "Brandon University, Brandon, Canada", + "ror_ids": [ + "https://ror.org/02qp25a50" + ] + }, + { + "affiliation": "Department of Human Nutrition, Bahauddin Zakariya University, Multan, Pakistan", + "ror_ids": [ + "https://ror.org/05x817c41" + ] + }, + { + "affiliation": "School of Materials Science and Engineering, Shanghai Dianji University, Shanghai, China", + "ror_ids": [ + "https://ror.org/055fene14" + ] + }, + { + "affiliation": "Wuhan Center for Disease Control and Prevention, Wuhan, Hubei, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05t45gr77" + ] + }, + { + "affiliation": "Department of English Language and Literature, Faculty of Humanities and Social Sciences, Golestan University, Gorgan, Iran", + "ror_ids": [ + "https://ror.org/046nf9z89" + ] + }, + { + "affiliation": "Department of Thoracic and Vascular Surgery, University Hospital of Antwerp, Antwerp, Belgium", + "ror_ids": [ + "https://ror.org/008x57b05" + ] + }, + { + "affiliation": "Department of Otorhinolaryngology, 3rd Faculty of Medicine, Charles University and University Hospital Kralovske Vinohrady in Prague, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/04sg4ka71", + "https://ror.org/024d6js02" + ] + }, + { + "affiliation": "Department of Musculoskeletal Radiology, Royal Orthopaedic Hospital, Bristol Road South, Birmingham, UK", + "ror_ids": [ + "https://ror.org/03scbek41" + ] + }, + { + "affiliation": "Department of Clinical Science, Unversity of Bergen, Bergen, Norway", + "ror_ids": [ + "https://ror.org/03zga2b32" + ] + }, + { + "affiliation": "Production Engineering and Mechanical Design Department, Faculty of Engineering, Port Said University, Port Said, Egypt", + "ror_ids": [ + "https://ror.org/01vx5yq44" + ] + }, + { + "affiliation": "Department of Industrial Management, Faculty of Management and Accounting, Allameh Tabataba’i University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/02cc4gc68" + ] + }, + { + "affiliation": "Department of ENT, 2nd Faculty of Medicine, Charles University and Motol University Hospital in Prague, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/024d6js02" + ] + }, + { + "affiliation": "Institute of Urinary Surgery, Xijing Hospital, Fourth Military Medical, University, Xi’an, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00ms48f15", + "https://ror.org/05cqe9350" + ] + }, + { + "affiliation": "Department of Medicine, Vatche and Tamar Manoukian Division of Digestive Diseases, David Geffen School of Medicine, University of California Los Angeles, Los Angeles, CA, USA", + "ror_ids": [ + "https://ror.org/046rm7j60" + ] + }, + { + "affiliation": "Mathematics and Statistics, Louisiana Tech University, Ruston, LA, USA", + "ror_ids": [ + "https://ror.org/04q9esz89" + ] + }, + { + "affiliation": "School of Medical Applied Technology, Shenyang Medical College, Shenyang, China", + "ror_ids": [ + "https://ror.org/02y9xvd02" + ] + }, + { + "affiliation": "Key Laboratory of Optoelectronic Technology & Systems (Ministry of Education), Chongqing University, Chongqing, China", + "ror_ids": [ + "https://ror.org/023rhb549" + ] + }, + { + "affiliation": "Department of Sociology, Vrije Universiteit Brussel, Brussels, Belgium", + "ror_ids": [ + "https://ror.org/006e5kg04" + ] + }, + { + "affiliation": "Key Laboratory of Medical Reprogramming Technology, Shenzhen Second People’s Hospital, The First Affiliated Hospital of Shenzhen University, Shenzhen, China", + "ror_ids": [ + "https://ror.org/01vy4gh70", + "https://ror.org/05c74bq69" + ] + }, + { + "affiliation": "Department of Zoology, Raiganj University, Raiganj, Uttar Dinajpur, West Bengal, India", + "ror_ids": [ + "https://ror.org/00bneyt76" + ] + }, + { + "affiliation": "Primary Care Interventions to Prevent Maternal and Child Chronic Diseases of Perinatal and Developmental Origin (RICORS), Instituto de Salud Carlos III, Madrid, Spain", + "ror_ids": [ + "https://ror.org/00ca2c886" + ] + }, + { + "affiliation": "Department of Cardiovascular Sciences, School of Life Sciences, University of Leicester, Leicester, UK", + "ror_ids": [ + "https://ror.org/04h699437" + ] + }, + { + "affiliation": "Stelmakh Polyus Research Institute, Moscow, Russia", + "ror_ids": [ + "https://ror.org/03wbses72" + ] + }, + { + "affiliation": "Laboratory of Aquatic Zoology, Division of Research and Postgraduate Studies, Universidad Nacional Autónoma de México, Tlalnepantla, State of Mexico, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "INESC-ID, Lisbon, Portugal", + "ror_ids": [ + "https://ror.org/04mqy3p58" + ] + }, + { + "affiliation": "Division of Environment and Sustainability, The Hong Kong University of Science and Technology, Hong Kong, China", + "ror_ids": [ + "https://ror.org/00q4vv597" + ] + }, + { + "affiliation": "Wits Reproductive Health and HIV Institute, Faculty of Health Sciences, University of the Witwatersrand, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/03rp50x72" + ] + }, + { + "affiliation": "University Ferhat Abbas of Setif, Setif, Algeria", + "ror_ids": [ + "https://ror.org/02rzqza52" + ] + }, + { + "affiliation": "Program in Chemical and Biochemical Process Engineering, School of Chemistry, Federal University of Rio de Janeiro, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/03490as77" + ] + }, + { + "affiliation": "UK Centre for Ecology & Hydrology, Penicuik, UK", + "ror_ids": [ + "https://ror.org/00pggkr55" + ] + }, + { + "affiliation": "Dartington Service Design Lab, Buckfastleigh, UK", + "ror_ids": [ + "https://ror.org/00shbds80" + ] + }, + { + "affiliation": "ADRIANOR, Tilloy Les Mofflaines, France", + "ror_ids": [ + "https://ror.org/03a9ezp59" + ] + }, + { + "affiliation": "School of Mechanical Engineering, Yanshan University, Qinhuangdao, China", + "ror_ids": [ + "https://ror.org/02txfnf15" + ] + }, + { + "affiliation": "BCAM - Basque Center for Applied Mathematics, Bilbao, Spain", + "ror_ids": [ + "https://ror.org/03b21sh32" + ] + }, + { + "affiliation": "Department of Pharmacotherapy, College of Pharmacy, University of Utah, Salt Lake City, UT, USA", + "ror_ids": [ + "https://ror.org/03r0ha626" + ] + }, + { + "affiliation": "Klinik für Neurologie mit Institut für Translationale Neurologie, Universitätsklinikum Münster, Münster, Deutschland", + "ror_ids": [ + "https://ror.org/01856cw59" + ] + }, + { + "affiliation": "Digital Architecture Research Center, National Institute of Advanced Industrial Science and Technology (AIST), Tokyo, Japan", + "ror_ids": [ + "https://ror.org/01703db54" + ] + }, + { + "affiliation": "Department of Nephrology-Hypertension, Antwerp University Hospital, Edegem, Belgium", + "ror_ids": [ + "https://ror.org/01hwamj44" + ] + }, + { + "affiliation": "University of Veterinary Medicine and Pharmacy, Košice, Slovakia", + "ror_ids": [ + "https://ror.org/05btaka91" + ] + }, + { + "affiliation": "Key Laboratory of Dairy Products Processing, Ministry of Agriculture and Rural Affairs, Inner Mongolia Agricultural University, Hohhot, Inner Mongolia, China", + "ror_ids": [ + "https://ror.org/015d0jq83" + ] + }, + { + "affiliation": "Unit of Rare Neurological Diseases, Fondazione IRCCS Istituto Neurologico Carlo Besta, Milan, Italy", + "ror_ids": [ + "https://ror.org/05rbx8m02" + ] + }, + { + "affiliation": "Department of Radiation Oncology, Centre Léon Bérard, Lyon, France", + "ror_ids": [ + "https://ror.org/01cmnjq37" + ] + }, + { + "affiliation": "Coll of Engg, Design & Physical Sci, Brunel University London, London, UK", + "ror_ids": [ + "https://ror.org/00dn4t376" + ] + }, + { + "affiliation": "Augenklinik und Poliklinik, Universitätsmedizin Mainz, Mainz, Deutschland", + "ror_ids": [ + "https://ror.org/00q1fsf04" + ] + }, + { + "affiliation": "Department of Chemistry, University of Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "Department of Breast Examinations, Copenhagen University Hospital, Gentofte, Denmark", + "ror_ids": [ + "https://ror.org/05bpbnx46" + ] + }, + { + "affiliation": "Division of Business Administration, Pukyong National University, Busan, South Korea", + "ror_ids": [ + "https://ror.org/0433kqc49" + ] + }, + { + "affiliation": "Department of Nursing, Inha University, Incheon, Republic of Korea", + "ror_ids": [ + "https://ror.org/01easw929" + ] + }, + { + "affiliation": "La Clinica de La Raza, Oakland, CA, USA", + "ror_ids": [ + "https://ror.org/014j38041" + ] + }, + { + "affiliation": "University of Alaska Fairbanks, Fairbanks, AK, USA", + "ror_ids": [ + "https://ror.org/01j7nq853" + ] + }, + { + "affiliation": "Abteilung für Nephrologie, Innere Medizin, Medizinische Universität Graz, Graz, Österreich", + "ror_ids": [ + "https://ror.org/02n0bts35" + ] + }, + { + "affiliation": "Key Laboratory of Enhanced Oil Recovery, Northeast Petroleum University Daqing, Daqing, China", + "ror_ids": [ + "https://ror.org/03net5943" + ] + }, + { + "affiliation": "Graduate School, Universitas Gadjah Mada, Yogyakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03ke6d638" + ] + }, + { + "affiliation": "eWeb Research Center, Hochschule Niederrhein, Mönchengladbach, Deutschland", + "ror_ids": [ + "https://ror.org/027b9qx26" + ] + }, + { + "affiliation": "Radiation Oncology Center, Huashan Hospital, Shanghai Medical College, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/01zntxs11", + "https://ror.org/05201qm87", + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Department of Psychological, Health and Learning Sciences, University of Houston, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/048sx0r50" + ] + }, + { + "affiliation": "Department of Mathematics, University of North Carolina at Chapel Hill, Chapel Hill, NC, USA", + "ror_ids": [ + "https://ror.org/0130frc33" + ] + }, + { + "affiliation": "Harvard Mass General Brigham Plastic Surgery Residency Program, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78", + "https://ror.org/04py2rh25" + ] + }, + { + "affiliation": "Postgraduate Program in Health Sciences, Faculty of Medicine, Federal University of Goiás, Goiânia, Brazil", + "ror_ids": [ + "https://ror.org/0039d5757" + ] + }, + { + "affiliation": "Graphene Research Institute and Institute of Nano and Advanced Materials Engineering, Sejong University, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/00aft1q37" + ] + }, + { + "affiliation": "Department of Neuroradiology, University Medical Center of the Johannes Gutenberg University Mainz, Mainz, Germany", + "ror_ids": [ + "https://ror.org/00q1fsf04" + ] + }, + { + "affiliation": "Mathematical Institute, Slovak Academy of Sciences, Bratislava, Slovakia", + "ror_ids": [ + "https://ror.org/03h7qq074" + ] + }, + { + "affiliation": "Department of Biotechnology, Kumaraguru College of Technology, Coimbatore, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/05dvptm82" + ] + }, + { + "affiliation": "Department of Chemistry, Stanford University, Stanford, CA, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Division of Cardiology, Stollery Children’s Hospital, Edmonton, AB, Canada", + "ror_ids": [ + "https://ror.org/05w90nk74" + ] + }, + { + "affiliation": "Center for Interdisciplinary Studies on the Nervous System, Universidad Austral de Chile, Valdivia, Chile", + "ror_ids": [ + "https://ror.org/029ycp228" + ] + }, + { + "affiliation": "Foisie Business School, Worcester Polytechnic Institute, Worcester, USA", + "ror_ids": [ + "https://ror.org/05ejpqr48" + ] + }, + { + "affiliation": "School of Geography, Archaeology and Environmental Studies, University of the Witwatersrand, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/03rp50x72" + ] + }, + { + "affiliation": "Department of Biomedical Informatics, College of Medicine, University of Cincinnati, Cincinnati, OH, USA", + "ror_ids": [ + "https://ror.org/01e3m7079" + ] + }, + { + "affiliation": "College of New Energy, China University of Petroleum (East China), Qingdao, China", + "ror_ids": [ + "https://ror.org/05gbn2817" + ] + }, + { + "affiliation": "Centro de Investigación Biomédica en Red Fisiopatologia de la Obesidad y Nutricion (CIBEROBN), Instituto de Salud Carlos III, Madrid, Spain", + "ror_ids": [ + "https://ror.org/00ca2c886" + ] + }, + { + "affiliation": "St. Luke’s Hospital, Iowa, USA", + "ror_ids": [ + "https://ror.org/03txk6b49" + ] + }, + { + "affiliation": "Division of Pediatric Nephrology, Department of Pediatrics, Kanuni Sultan Suleyman Research and Training Hospital, University of Health Sciences, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "Başakşehir Cam ve Sakura City Hospital, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/05grcz969" + ] + }, + { + "affiliation": "Instituto de Investigación Sanitaria de Santiago de Compostela, Santiago de Compostela, Spain", + "ror_ids": [ + "https://ror.org/05n7xcf53" + ] + }, + { + "affiliation": "Medical Surgical Nursing Department, Faculty Health Science, Universitas Muhammadiyah Surakarta, Surakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03cnmz153" + ] + }, + { + "affiliation": "Research Center on Scientific and Technical Information (CERIST), Algiers, Algeria", + "ror_ids": [ + "https://ror.org/01k1bte55" + ] + }, + { + "affiliation": "Chemical Engineering and Process Development Division, CSIR-National Chemical Laboratory, Pune, India", + "ror_ids": [ + "https://ror.org/057mn3690" + ] + }, + { + "affiliation": "Department of Computer Science, Bernoulli Institute for Mathematics, Computer Science and Artificial Intelligence, University of Groningen, Groningen, Groningen, Netherlands", + "ror_ids": [ + "https://ror.org/012p63287" + ] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biology, Faculty of Science, University of Buea, Buea, Cameroon", + "ror_ids": [ + "https://ror.org/041kdhz15" + ] + }, + { + "affiliation": "Geographisches Institut, Universität Zürich, Zürich, Schweiz", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "School of Law and Society, University of the Sunshine Coast, Sippy Downs, QLD, Australia", + "ror_ids": [ + "https://ror.org/016gb9e15" + ] + }, + { + "affiliation": "School of Resources and Environment, Qingdao Agricultural University, Qingdao, Shandong, China", + "ror_ids": [ + "https://ror.org/051qwcj72" + ] + }, + { + "affiliation": "Department of Anatomy, School of Medicine, Shiraz University of Medical Sciences, Shiraz, Iran", + "ror_ids": [ + "https://ror.org/01n3s4692" + ] + }, + { + "affiliation": "Section of Anatomic Pathology, Department of Population Medicine and Diagnostic Sciences, College of Veterinary Medicine, Cornell University, Ithaca, NY, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Botany, Gargi College, New Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Institute for Nuclear Science and Technology, Jeju National University, Jeju-si, Jeju Province, Republic of Korea", + "ror_ids": [ + "https://ror.org/05hnb4n85" + ] + }, + { + "affiliation": "Fisheries and Aquaculture Division, Food and Agriculture Organization of the United Nations, Rome, Italy", + "ror_ids": [ + "https://ror.org/00pe0tf51" + ] + }, + { + "affiliation": "Laboratory of Surgical Physiopathology (LIM-62), Hospital das Clínicas (HCFMUSP), São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/03se9eg94" + ] + }, + { + "affiliation": "DMPK, Genentech, Inc., South San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/04gndp242" + ] + }, + { + "affiliation": "Department of Political Science and Public Administration, Bilkent University, Ankara, Türkiye", + "ror_ids": [ + "https://ror.org/02vh8a032" + ] + }, + { + "affiliation": "Department of Experimental Particle Physics, Jožef Stefan Institute and Department of Physics, University of Ljubljana, Ljubljana, Slovenia", + "ror_ids": [ + "https://ror.org/05njb9z20" + ] + }, + { + "affiliation": "Instituto de Informática, Universidade Federal do Rio Grande do Sul (UFRGS), Porto Alegre, Brazil", + "ror_ids": [ + "https://ror.org/041yk2d64" + ] + }, + { + "affiliation": "Laboratory of Immunoregulation, National Institute of Allergy and Infectious Diseases, National Institutes of Health, Bethesda, MD, USA", + "ror_ids": [ + "https://ror.org/043z4tv69" + ] + }, + { + "affiliation": "Department of Materials Science, Moscow Polytechnic University, Moscow, Russia", + "ror_ids": [ + "https://ror.org/03paz2a60" + ] + }, + { + "affiliation": "Fachgebiet Arbeits- und Organisationspsychologie, Universität Osnabrück, Osnabrück, Deutschland", + "ror_ids": [ + "https://ror.org/04qmmjx98" + ] + }, + { + "affiliation": "Department of Biostatistics and Epidemiology, Research Institute for Endocrine Sciences, Shahid Beheshti University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/034m2b326", + "https://ror.org/01kpm1136" + ] + }, + { + "affiliation": "Pohang University of Science and Technology (POSTECH), Pohang, South Korea", + "ror_ids": [ + "https://ror.org/04xysgw12" + ] + }, + { + "affiliation": "Division of Psychology, Nottingham Trent University, Main Campus, Nottingham, UK", + "ror_ids": [ + "https://ror.org/04xyxjd90" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Federal University of Paraná, Curitiba, PR, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "Department of Sociology, University of Cambridge, Cambridge, UK", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Departments of Psychiatry, Clinical Neurosciences, and Community Health Sciences, Hotchkiss Brain Institute and O’Brien Institute for Public Health, University of Calgary, Calgary, Canada", + "ror_ids": [ + "https://ror.org/03yjb2x39" + ] + }, + { + "affiliation": "Tumour Biology Lab, ICMR-National Institute of Pathology, New Delhi, India", + "ror_ids": [ + "https://ror.org/00vfty314" + ] + }, + { + "affiliation": "Department of Computer Science, Bar Ilan University, Ramat Gan, Israel", + "ror_ids": [ + "https://ror.org/03kgsv495" + ] + }, + { + "affiliation": "Department of Toxicology “Akademik Danilo Soldatović”, University of Belgrade - Faculty of Pharmacy, Belgrade, Serbia", + "ror_ids": [ + "https://ror.org/02qsmb048" + ] + }, + { + "affiliation": "Research Service, South Texas Veterans Health Care System, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/03n2ay196" + ] + }, + { + "affiliation": "Post-Graduate Program in Oceanography, Department of Oceanography/Phytoplankton Laboratory, Federal University of Pernambuco, Recife, Pernambuco, Brazil", + "ror_ids": [ + "https://ror.org/047908t24" + ] + }, + { + "affiliation": "Department of Cell and Developmental Biology, Perelman School of Medicine, University of Pennsylvania, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "STFC Rutherford Appleton Laboratory, Didcot, United Kingdom", + "ror_ids": [ + "https://ror.org/03gq8fr08" + ] + }, + { + "affiliation": "Department of Chemistry, University of Calicut, Malappuram, Kerala, India", + "ror_ids": [ + "https://ror.org/05yeh3g67" + ] + }, + { + "affiliation": "Department of Radiation Oncology, Stanford University School of Medicine, Stanford, USA", + "ror_ids": [ + "https://ror.org/00f54p054" + ] + }, + { + "affiliation": "Department of Physiology, Faculty of Medicine, Maranatha Christian University, Bandung, West Java, Indonesia", + "ror_ids": [ + "https://ror.org/05pd2ed85" + ] + }, + { + "affiliation": "Guangdong Laboratory for Lingnan Modern Agriculture, Guangdong Provincial Key Laboratory of Eco-circular Agriculture, South China Agricultural University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/05v9jqt67" + ] + }, + { + "affiliation": "Europa-Universität Flensburg, Flensburg, Deutschland", + "ror_ids": [ + "https://ror.org/046e0mt33" + ] + }, + { + "affiliation": "Department of Chemistry, Payame Noor University(PNU), Tehran, Iran", + "ror_ids": [ + "https://ror.org/031699d98" + ] + }, + { + "affiliation": "Newcastle upon Tyne NHS Foundation Trust, Newcastle, UK", + "ror_ids": [ + "https://ror.org/05p40t847" + ] + }, + { + "affiliation": "Industrial Engineering Department, Universitas Sebelas Maret, Surakarta, Indonesia", + "ror_ids": [ + "https://ror.org/021hq5q33" + ] + }, + { + "affiliation": "Universidade Estadual de Campinas (UNICAMP), Campinas, Brazil", + "ror_ids": [ + "https://ror.org/04wffgt70" + ] + }, + { + "affiliation": "Department of Statistics, University of California, Davis, Davis, CA, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Mimetas, Leiden, The Netherlands", + "ror_ids": [ + "https://ror.org/00jz33f47" + ] + }, + { + "affiliation": "Department of Architecture and Industrial Design, University of Campania Luigi Vanvitelli, Aversa, CE, Italy", + "ror_ids": [ + "https://ror.org/02kqnpp86" + ] + }, + { + "affiliation": "Faculty of Urban Planning, College of Architecture and Urban Planning, Tehran University of Art, Tehran, Iran", + "ror_ids": [ + "https://ror.org/02ggnbj54" + ] + }, + { + "affiliation": "XLIM Research Institute, CNRS UMR 7252, Université de Limoges, Limoges, France", + "ror_ids": [ + "https://ror.org/02cp04407" + ] + }, + { + "affiliation": "Department of Internal Medicine, National Yang Ming Chiao Tung University College of Medicine, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/00se2k293" + ] + }, + { + "affiliation": "Section of Cardiac Surgery, Cardio-thoracic and Vascular Department, University Hospital of Pisa, Pisa, Italy", + "ror_ids": [ + "https://ror.org/05xrcj819" + ] + }, + { + "affiliation": "Department of Renewable Resources, University of Alberta, Edmonton, AB, Canada", + "ror_ids": [ + "https://ror.org/0160cpw27" + ] + }, + { + "affiliation": "IVT, ETH Zürich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "MRC Centre for Environment and Health, Department of Epidemiology and Biostatistics, School of Public Health, Imperial College London, London, UK", + "ror_ids": [ + "https://ror.org/041kmwe10" + ] + }, + { + "affiliation": " Infectious Diseases and Tropical Medicine Research Center, Shahid Beheshti University of Medical, Tehran, Iran", + "ror_ids": [ + "https://ror.org/034m2b326" + ] + }, + { + "affiliation": "Faculty of Health Science, University of Stavanger, Stavanger, Norway", + "ror_ids": [ + "https://ror.org/02qte9q33" + ] + }, + { + "affiliation": "Department of Civil Engineering, National Engineering College, Kovilpatti, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "School of Engineering and Technology, Central University of Rajasthan, Ajmer, India", + "ror_ids": [ + "https://ror.org/056y7zx62" + ] + }, + { + "affiliation": "National Heart and Lung Institute, Imperial College, London, UK", + "ror_ids": [ + "https://ror.org/041kmwe10" + ] + }, + { + "affiliation": "Future Medical Laboratory, The Second Affiliated Hospital of Harbin Medical University, Harbin, China", + "ror_ids": [ + "https://ror.org/03s8txj32" + ] + }, + { + "affiliation": "Department of Pediatrics, Seoul National University Bundang Hospital, Seongnam, Republic of Korea", + "ror_ids": [ + "https://ror.org/00cb3km46" + ] + }, + { + "affiliation": "Hospital Universitario Infanta Leonor, Madrid, Spain", + "ror_ids": [ + "https://ror.org/05nfzf209" + ] + }, + { + "affiliation": "Indian Institute of Technology Madras, Chennai, India", + "ror_ids": [ + "https://ror.org/03v0r5n49" + ] + }, + { + "affiliation": "Department of Pathology, Union Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, Hubei, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "Department of Agricultural, Food and Environmental Science, University of Perugia, Perugia, Italy", + "ror_ids": [ + "https://ror.org/00x27da85" + ] + }, + { + "affiliation": "School of Geography, Politics and Sociology, Newcastle University, Newcastle upon Tyne, UK", + "ror_ids": [ + "https://ror.org/01kj2bm70" + ] + }, + { + "affiliation": "Life and Health Sciences Research Institute (ICVS), School of Health Sciences, University of Minho, Braga, Portugal", + "ror_ids": [ + "https://ror.org/037wpkx04" + ] + }, + { + "affiliation": "Institute of Biological Products, National Institutes for Food and Drug Control, Beijing, China", + "ror_ids": [ + "https://ror.org/041rdq190" + ] + }, + { + "affiliation": "Department of Nuclear Engineering, Oregon State University, Corvallis, OR, USA", + "ror_ids": [ + "https://ror.org/00ysfqy60" + ] + }, + { + "affiliation": "Pediatric Unit, Pediatric Emergency Department, Bambino Gesù Children’s Hospital, IRCCS, Rome, Italy", + "ror_ids": [ + "https://ror.org/02sy42d13" + ] + }, + { + "affiliation": "Department of Dentistry, University of Fortaleza, Fortaleza, Brazil", + "ror_ids": [ + "https://ror.org/02ynbzc81" + ] + }, + { + "affiliation": "Department of Infectious Diseases and Immunology, College of Veterinary Medicine, University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Sydney Local Health District, Sydney, Australia", + "ror_ids": [ + "https://ror.org/04w6y2z35" + ] + }, + { + "affiliation": "Department of Human Performance and Wellness, Virginia Military Institute, Lexington, VA, USA", + "ror_ids": [ + "https://ror.org/01ngnm118" + ] + }, + { + "affiliation": "Department of Medical Informatics, School of Medicine, Mashhad University of Medical Sciences, Mashhad, Iran", + "ror_ids": [ + "https://ror.org/04sfka033" + ] + }, + { + "affiliation": "Einstein Institute of Mathematics, Edmond J. Safra Campus, The Hebrew University of Jerusalem, Givat Ram, Jerusalem, Israel", + "ror_ids": [ + "https://ror.org/03qxff017" + ] + }, + { + "affiliation": "Seth GS Medical College and KEM Hospital, Mumbai, India", + "ror_ids": [ + "https://ror.org/03vcw1x21" + ] + }, + { + "affiliation": "Department of Maternal and Child Health, School of Nursing, University of Ghana, Legon, Ghana", + "ror_ids": [ + "https://ror.org/01r22mr83" + ] + }, + { + "affiliation": "Omics of Algae Group and DBT-ICGEB Centre for Advanced Bioenergy Research, Industrial Biotechnology, International Centre for Genetic Engineering and Biotechnology, New Delhi, India", + "ror_ids": [ + "https://ror.org/03j4rrt43" + ] + }, + { + "affiliation": "Klinik für Orthopädie, Goethe Universität Frankfurt, Frankfurt am Main, Deutschland", + "ror_ids": [ + "https://ror.org/04cvxnb49" + ] + }, + { + "affiliation": "Lake and Marine Sediment Research Group, Department of Geography and Geology, University of Turku, Turku, Finland", + "ror_ids": [ + "https://ror.org/05vghhr25" + ] + }, + { + "affiliation": "Department of Physics, University of Engineering and Technology Lahore, Lahore, Pakistan", + "ror_ids": [ + "https://ror.org/0051w2v06" + ] + }, + { + "affiliation": "Department of Computer Science, Edge Hill University, Ormskirk, England", + "ror_ids": [ + "https://ror.org/028ndzd53" + ] + }, + { + "affiliation": "Helmholtz Institute Münster (IEK-12/HI MS), Forschungszentrum Jülich GmbH, Jülich, Germany", + "ror_ids": [ + "https://ror.org/02nv7yv05", + "https://ror.org/04ktat366" + ] + }, + { + "affiliation": "Faculty of Electrical and Computer Engineering, Tarbiat Modares University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/03mwgfy56" + ] + }, + { + "affiliation": "Department of Animal and Veterinary Sciences, Aarhus University, Tjele, Denmark", + "ror_ids": [ + "https://ror.org/01aj84f44" + ] + }, + { + "affiliation": "School of Civil and Hydraulic Engineering, Huazhong University of Science and Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/00p991c53" + ] + }, + { + "affiliation": "School of Psychological and Cognitive Sciences, Beijing Key Laboratory of Behaviour and Mental Health, Peking University, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "School of Chemical Engineering and Technology, China University of Mining and Technology, Xuzhou, Jiangsu, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01xt2dr21" + ] + }, + { + "affiliation": "National Science Foundation, Alexandria, VA, USA", + "ror_ids": [ + "https://ror.org/021nxhr62" + ] + }, + { + "affiliation": "Department of Mathematics, Faculty of Science, Zagazig University, Zagazig, Egypt", + "ror_ids": [ + "https://ror.org/053g6we49" + ] + }, + { + "affiliation": "Lab de Genética Evolutiva de Himenópteros, Depto de Genética E Evolução, Univ Federal de São Carlos, São Paulo, São Carlos, Brazil", + "ror_ids": [ + "https://ror.org/00qdc6m37" + ] + }, + { + "affiliation": "Department of Molecular Biosciences, The Wenner-Gren Institute, Stockholm University, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/05f0yaq80" + ] + }, + { + "affiliation": "BK21 FOUR Education and Research Team for Sustainable Food & Nutrition, Seoul National University, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Optoelectronic Convergence Research Center, Chonnam National University, Gwangju, South Korea", + "ror_ids": [ + "https://ror.org/05kzjxq56" + ] + }, + { + "affiliation": "Department of Preventive Gerontology, Centre for Gerontology and Social Science, Research Institute, National Centre for Geriatrics and Gerontology, Obu, Aichi, Japan", + "ror_ids": [ + "https://ror.org/05h0rw812" + ] + }, + { + "affiliation": "Neurosurgery Unit, “Antonio Cardarelli” Hospital, Napoli, Italy", + "ror_ids": [ + "https://ror.org/003hhqx84" + ] + }, + { + "affiliation": "Centre for Advanced Manufacturing Technologies – Fraunhofer Project Centre (CAMT-FPC), Faculty of Mechanical Engineering, Wroclaw University of Science and Technology, Wroclaw, Poland", + "ror_ids": [ + "https://ror.org/008fyn775" + ] + }, + { + "affiliation": "Department of Internal Medicine, Gil Hospital, Gachon University, Incheon, Republic of Korea", + "ror_ids": [ + "https://ror.org/03ryywt80" + ] + }, + { + "affiliation": "School of Electronic and Electrical Engineering, Kyungpook National University, Daegu, Republic of Korea", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "Ministry of Health, Mental Health Division, Rwanda Biomedical Center, Kigali, Rwanda", + "ror_ids": [ + "https://ror.org/03jggqf79" + ] + }, + { + "affiliation": "Institute of Ethnology, Academia Sinica, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05bxb3784", + "https://ror.org/01tvy6411" + ] + }, + { + "affiliation": "Institute for Economic Research, Ljubljana, Slovenia", + "ror_ids": [ + "https://ror.org/014z5x149" + ] + }, + { + "affiliation": "International Centre for Eye Health, London School of Hygiene and Tropical Medicine, London, UK", + "ror_ids": [ + "https://ror.org/00a0jsq62" + ] + }, + { + "affiliation": "Department of Medicine, University of Eastern Finland and Kuopio, University Hospital, Kuopio, Finland", + "ror_ids": [ + "https://ror.org/00fqdfs68", + "https://ror.org/00cyydd11" + ] + }, + { + "affiliation": "Ressourcen und Mobilität, Öko-Institut e. V., Darmstadt, Deutschland", + "ror_ids": [ + "https://ror.org/005p0t446" + ] + }, + { + "affiliation": "Cancer Control Center, Osaka International Cancer Institute, Osaka, Japan", + "ror_ids": [ + "https://ror.org/010srfv22" + ] + }, + { + "affiliation": "Delft Bioinformatics Lab, Faculty of Electrical Engineering, Mathematics and Computer Science, Delft University of Technology, Delft, The Netherlands", + "ror_ids": [ + "https://ror.org/02e2c7k09" + ] + }, + { + "affiliation": "The University of Western Australia, Crawley, WA, Australia", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "Civil Engineering Department, Faculty of Engineering, Ferdowsi University of Mashhad, Mashhad, Razavi Khorasan Province, Iran", + "ror_ids": [ + "https://ror.org/00g6ka752" + ] + }, + { + "affiliation": "School of Design, Health Research Institute, and Confirm Centre for Smart Manufacturing, University of Limerick, Limerick, Ireland", + "ror_ids": [ + "https://ror.org/00a0n9e72" + ] + }, + { + "affiliation": "Department of Environment, Land, Water and Planning, Arthur Rylah Institute for Environmental Research, Heidelberg, VIC, Australia", + "ror_ids": [ + "https://ror.org/052sgg612", + "https://ror.org/03m3hse57" + ] + }, + { + "affiliation": "Campbell Family Mental Health Research Institute, Centre for Addiction and Mental Health, Toronto, Ontario, Canada", + "ror_ids": [ + "https://ror.org/03e71c577" + ] + }, + { + "affiliation": "VIB-University Ghent, Center for Plant System Biology, Ghent, BE, Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106", + "https://ror.org/01qnqmc89" + ] + }, + { + "affiliation": "Department of Osteoimmunology, Graduate School of Medicine and Faculty of Medicine, The University of Tokyo, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Laboratory for Neuroengineering, Department of Health Science and Technology, Institute for Robotics and Intelligent Systems, ETH Zürich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Parkinson Unit, Neuromuscular-Skeletal and Sensory Organs Department, AOU Careggi, Florence, Italy", + "ror_ids": [ + "https://ror.org/02crev113" + ] + }, + { + "affiliation": "Department of Radiology, Seoul National University Hospital, Seoul, Korea", + "ror_ids": [ + "https://ror.org/01z4nnt86" + ] + }, + { + "affiliation": "School of Medicine and Doctoral Program of Clinical and Experimental Medicine, College of Medicine and Center of Excellence for Metabolic Associated Fatty Liver Disease, National Sun Yat-Sen University, Kaohsiung, Taiwan", + "ror_ids": [ + "https://ror.org/00mjawt10" + ] + }, + { + "affiliation": "Department of Materials Science and Engineering, Institute of Materials Simulation, Friedrich-Alexander-University Erlangen-Nuremberg, Fürth, Germany", + "ror_ids": [ + "https://ror.org/00f7hpc57" + ] + }, + { + "affiliation": "Department of Neurosurgery, Yonsei University College of Medicine, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/01wjejq96" + ] + }, + { + "affiliation": "Synchrotron SOLEIL, UR1-CNRS, Gif-sur-Yvette Cedex, France", + "ror_ids": [ + "https://ror.org/01ydb3330" + ] + }, + { + "affiliation": "Department of Internal Medicine, Hospital Universitari de Sant Joan, Reus, Spain", + "ror_ids": [ + "https://ror.org/04f7pyb58" + ] + }, + { + "affiliation": "State Key Laboratory of Coal Mining and Clean Utilization, China, Coal Technology and Engineering Group, Beijing, China", + "ror_ids": [ + "https://ror.org/045d9gj14" + ] + }, + { + "affiliation": "Auckland Te Toka Tumai, Health New Zealand and Faculty of Medicine and Health Sciences, University of Auckland, Auckland, New Zealand", + "ror_ids": [ + "https://ror.org/03b94tp07" + ] + }, + { + "affiliation": "Department of Neurology with Institute of Translational Neurology, Münster University Hospital (UKM), Münster, Germany", + "ror_ids": [ + "https://ror.org/01856cw59" + ] + }, + { + "affiliation": "Bristol Medical School, University of Bristol, Bristol, UK", + "ror_ids": [ + "https://ror.org/0524sp257" + ] + }, + { + "affiliation": "Department of Anaesthesiology and Operative Intensive Care Medicine, Charité – Universitätsmedizin Berlin, Freie Universität Berlin and Humboldt-Universität zu Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/001w7jn25", + "https://ror.org/01hcx6992" + ] + }, + { + "affiliation": "Laboratory of Ecology and Conservation, Department of Environmental Engineering, Federal University of Parana - UFPR, Curitiba, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "Weill Cornell Medicine-Qatar, Research Division, Qatar Foundation, Doha, Qatar", + "ror_ids": [ + "https://ror.org/01cawbq05" + ] + }, + { + "affiliation": "Department of Civil Engineering, Faculty of Engineering, The Hashemite University, Zarqa, Jordan", + "ror_ids": [ + "https://ror.org/04a1r5z94" + ] + }, + { + "affiliation": "Medizinische Klinik und Poliklinik III und CCC München, LMU Klinikum, München, Deutschland", + "ror_ids": [ + "https://ror.org/02jet3w32" + ] + }, + { + "affiliation": "Faculty of Biochemistry and Molecular Medicine, University of Oulu, Oulu, Finland", + "ror_ids": [ + "https://ror.org/03yj89h83" + ] + }, + { + "affiliation": "Center for Theory, Weinberg Institute, Department of Physics, University of Texas at Austin, Austin, TX, USA", + "ror_ids": [ + "https://ror.org/00hj54h04" + ] + }, + { + "affiliation": "Division of Pediatric Psychology and Developmental Medicine, Department of Pediatrics, Medical College of Wisconsin, Milwaukee, WI, USA", + "ror_ids": [ + "https://ror.org/00qqv6244" + ] + }, + { + "affiliation": "Industrial College of Biomedicine and Health Industry, Youjiang Medical College for Nationalities, Baise, Guangxi, China", + "ror_ids": [ + "https://ror.org/00wemg618" + ] + }, + { + "affiliation": "Department of Dental Materials and Prosthesis, Ribeirão Preto School of Dentistry, University of São Paulo (USP), Ribeirão Preto, SP, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Psychiatry, Taipei Medical University Hospital, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/03k0md330" + ] + }, + { + "affiliation": "Zienkiewicz Centre for Computational Engineering (ZCCE), Swansea University, Bay Campus, Swansea, UK", + "ror_ids": [ + "https://ror.org/053fq8t95" + ] + }, + { + "affiliation": "Department of Symptom Research, The University of Texas MD Anderson Cancer Center, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Erziehungswissenschaft, Universität Trier, Trier, Deutschland", + "ror_ids": [ + "https://ror.org/02778hg05" + ] + }, + { + "affiliation": "Lapseki Vocational School, Department of Landscape and Ornamental Plants, Çanakkale Onsekiz Mart University, Lapseki, Çanakkale, Turkey", + "ror_ids": [ + "https://ror.org/05rsv8p09" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Science, University of Hormozgan, Bandar Abbas, Islamic Republic of Iran", + "ror_ids": [ + "https://ror.org/003jjq839" + ] + }, + { + "affiliation": "Department of Cardiology, Iida Municipal Hospital, Iida, Nagano, Japan", + "ror_ids": [ + "https://ror.org/00qezxe61" + ] + }, + { + "affiliation": "Vocational Program, Universitas Negeri Surabaya, Surabaya, Indonesia", + "ror_ids": [ + "https://ror.org/01jf74q70" + ] + }, + { + "affiliation": "Department of Mathematics, Alabama State University, Montgomery, Alabama, ", + "ror_ids": [ + "https://ror.org/01eedy375" + ] + }, + { + "affiliation": "UGC-DAE Consortium for Scientific Research, University Campus, Indore, India", + "ror_ids": [ + "https://ror.org/047g7f905" + ] + }, + { + "affiliation": "School of Mechanical Electrification Engineering, Tarim University, Alaer, China", + "ror_ids": [ + "https://ror.org/05202v862" + ] + }, + { + "affiliation": "Department of Food Engineering, Shanxi Pharmaceutical Vocational College, Taiyuan, China", + "ror_ids": [ + "https://ror.org/035brg434" + ] + }, + { + "affiliation": "Department of Curriculum and Instruction, University of Illinois Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/02mpq6x41" + ] + }, + { + "affiliation": "Instituto Do Mar, Universidade Federal de São Paulo (IMAR -UNIFESP), Santos, SP, Brazil", + "ror_ids": [ + "https://ror.org/02k5swt12" + ] + }, + { + "affiliation": "Centre for the Research and Technology of Agro-Environmental and Biological Sciences, CITAB, University of Trás-os-Montes and Alto Douro, UTAD, Viseu, Portugal", + "ror_ids": [ + "https://ror.org/03qc8vh97" + ] + }, + { + "affiliation": "Department of Chemistry, New York University, New York, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "Department of Minimal Access, General, Gastrointestinal and Bariatric Surgery, Manipal Hospitals, Delhi, India", + "ror_ids": [ + "https://ror.org/05mryn396" + ] + }, + { + "affiliation": "Department of Physics and Research Centre, Annai Velankanni College, Tholayavattam, Affliated to Manonmaniam Sundaranar University, Tirunelveli, Tamilnadu, India", + "ror_ids": [ + "https://ror.org/02qgw5c67", + "https://ror.org/004y1jf02" + ] + }, + { + "affiliation": "Division of General Surgery, Department of Surgery, School of Medicine, College of Medicine, Taipei Medical University, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05031qk94" + ] + }, + { + "affiliation": "Division of Agronomy, FoA, Sher-E-Kashmir University of Agricultural Sciences and Technology Kashmir-Wadura, Sopore, India", + "ror_ids": [ + "https://ror.org/00jgwn197" + ] + }, + { + "affiliation": "Department of Theoretical Physics, University of the Basque Country UPV/EHU, Bilbao, Spain", + "ror_ids": [ + "https://ror.org/000xsnr85" + ] + }, + { + "affiliation": "National Clinical Research Center for Obstetrics and Gynecology, Peking University Third Hospital, Beijing, China", + "ror_ids": [ + "https://ror.org/04wwqze12" + ] + }, + { + "affiliation": "Zаvоisky Physiсoteсhniсаl Institute, Kаzаn Scientific Сenter, Russian Academy of Sciences, Kаzаn, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, Auburn University, Auburn, AL, USA", + "ror_ids": [ + "https://ror.org/02v80fc35" + ] + }, + { + "affiliation": "Department of Pathology, University Health Network, Toronto General Hospital, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/026pg9j08", + "https://ror.org/042xt5161" + ] + }, + { + "affiliation": "Museu Paraense Emílio Goeldi. Coordenação de Ciências da Terra e Ecologia, Belém, Pará, Brazil", + "ror_ids": [ + "https://ror.org/010gvqg61" + ] + }, + { + "affiliation": "University of Bern, Bern, Switzerland", + "ror_ids": [ + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "Center for Excellence in Education, Arkansas State University, Jonesboro, AR, USA", + "ror_ids": [ + "https://ror.org/006pyvd89" + ] + }, + { + "affiliation": "INAF - Osservatorio Astronomico di Cagliari, Selargius, CA, Italy", + "ror_ids": [ + "https://ror.org/045dz8764" + ] + }, + { + "affiliation": "Division of Gastroenterology, Hepatology, and Nutrition, University at Buffalo, Buffalo, NY, USA", + "ror_ids": [ + "https://ror.org/01y64my43" + ] + }, + { + "affiliation": "Region Västra Götaland, Sahlgrenska University Hospital Östra, Department of Anaesthesiology and Intensive Care Medicine/Paincenter, Gothenburg, Sweden", + "ror_ids": [ + "https://ror.org/04vgqjj36", + "https://ror.org/00a4x6777" + ] + }, + { + "affiliation": "Department of Orthopedics and Traumasurgery, Heinrich Heine University, Düsseldorf, Germany", + "ror_ids": [ + "https://ror.org/024z2rq82" + ] + }, + { + "affiliation": "Key Laboratory of the Ministry of Education for Geomechanics and Embankment Engineering, College of Civil and Transportation Engineering, Hohai University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01wd4xt90" + ] + }, + { + "affiliation": "Achucarro Basque Center for Neuroscience, Scientific Park of the University of the Basque Country (UPV/EHU), Leioa, Spain", + "ror_ids": [ + "https://ror.org/00myw9y39", + "https://ror.org/000xsnr85" + ] + }, + { + "affiliation": "Physics Division, National Center for Theoretical Sciences, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/02mfp0b67" + ] + }, + { + "affiliation": "Industrial Engineering Department, Hitit University, Çorum, Türkiye", + "ror_ids": [ + "https://ror.org/01x8m3269" + ] + }, + { + "affiliation": "Metallurgical and Materials Engineering Department, Bursa Technical University, Bursa, Turkey", + "ror_ids": [ + "https://ror.org/03rdpn141" + ] + }, + { + "affiliation": "Department of Clinical Genetics – Children’s Health Ireland Crumlin, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/025qedy81" + ] + }, + { + "affiliation": "Department of Power Engineering, Jadavpur University, Kolkata, India", + "ror_ids": [ + "https://ror.org/02af4h012" + ] + }, + { + "affiliation": "Department of Social Work, Shandong University, Jinan, China", + "ror_ids": [ + "https://ror.org/0207yh398" + ] + }, + { + "affiliation": "Collaborative Innovation center of Advanced Microstructures, Nanjing University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01rxvg760", + "https://ror.org/04ttadj76" + ] + }, + { + "affiliation": "Department of Epidemiology and Biostatistics, School of Public Health, Indiana University, Bloomington, IN, USA", + "ror_ids": [ + "https://ror.org/02k40bc56" + ] + }, + { + "affiliation": "School of Life Sciences, South China Normal University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/01kq0pv72" + ] + }, + { + "affiliation": "Instituto de Fisica, Universidade Federal do Rio de Janeiro, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/03490as77" + ] + }, + { + "affiliation": "INFN, Sezione di Cagliari, Cagliari, Italy", + "ror_ids": [ + "https://ror.org/03paz5966" + ] + }, + { + "affiliation": "College of Information Sciences and Engineering, Northeastern University, Shenyang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03awzbc87" + ] + }, + { + "affiliation": "Iran University of Medical Sciences (IUMS), Tehran, Iran", + "ror_ids": [ + "https://ror.org/03w04rv71" + ] + }, + { + "affiliation": "Division de Ciencias Naturales y Exactas, Chemical Engineering Department, Universidad de Guanajuato, Guanajuato, Guanajuato, Mexico", + "ror_ids": [ + "https://ror.org/058cjye32" + ] + }, + { + "affiliation": "School of Artificial Intelligence, University of Chinese Academy of Sciences, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05qbk4x57" + ] + }, + { + "affiliation": "Laboratory of Food Materials Studies, Department of Food Technology, University of Viçosa (UFV), Viçosa, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0409dgb37" + ] + }, + { + "affiliation": "Department of Energy Systems Engineering, Faculty of Engineering, Atilim University, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/04pd3v454" + ] + }, + { + "affiliation": "Department of Rheumatology and Immunology, Yiyang Central Hospital, Central South University, Hunan, China", + "ror_ids": [ + "https://ror.org/00f1zfq44", + "https://ror.org/03hqvqf51" + ] + }, + { + "affiliation": "Department of Health, Exercise Science, and Recreation Management, Kevser Ermin Applied Physiology Laboratory, The University of Mississippi, University, MS, USA", + "ror_ids": [ + "https://ror.org/02teq1165" + ] + }, + { + "affiliation": "School of Economics, Ocean University of China, Qingdao, China", + "ror_ids": [ + "https://ror.org/04rdtx186" + ] + }, + { + "affiliation": "Department of Chemistry at the Federal University of Santa Maria (UFSM), Santa Maria, RS, Brazil", + "ror_ids": [ + "https://ror.org/01b78mz79" + ] + }, + { + "affiliation": "ICTP, Trieste, Italy", + "ror_ids": [ + "https://ror.org/009gyvm78" + ] + }, + { + "affiliation": "Historisches Institut – Abteilung für Neuere Geschichte, Universität Köln, Köln, Deutschland", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "IFLP(CONICET) and Department of Physics, University of La Plata, La Plata, Argentina", + "ror_ids": [ + "https://ror.org/01tjs6929" + ] + }, + { + "affiliation": "Odessa State Academy of Civil Engineering and Architecture, Odesa, Ukraine", + "ror_ids": [ + "https://ror.org/02yt0ry35" + ] + }, + { + "affiliation": "Department of Biological Sciences, University of Notre Dame, Notre Dame, IN, USA", + "ror_ids": [ + "https://ror.org/00mkhxb43" + ] + }, + { + "affiliation": "Adult Epilepsy Genetics Program, Krembil Research Institute, University of Toronto, Toronto, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087", + "https://ror.org/01f6jys10" + ] + }, + { + "affiliation": "Dept. of Plant Production, Faculty of Agriculture and Natural Resources, Gonbad Kavous University, Gonbad-e Kāvūs, Golestan, Iran", + "ror_ids": [ + "https://ror.org/04a1nf004" + ] + }, + { + "affiliation": "Lamar University, Beaumont, TX, USA", + "ror_ids": [ + "https://ror.org/008ms5s18" + ] + }, + { + "affiliation": "College of Mathematics, Sichuan University, Chengdu, Sichuan, China", + "ror_ids": [ + "https://ror.org/011ashp19" + ] + }, + { + "affiliation": "University of Manouba, Manouba, Tunisia", + "ror_ids": [ + "https://ror.org/0503ejf32" + ] + }, + { + "affiliation": "Human Centric Engineering, School of Computing, Telkom University, Bandung, Indonesia", + "ror_ids": [ + "https://ror.org/0004wsx81" + ] + }, + { + "affiliation": "Institute of Cosmology and Gravitation, University of Portsmouth, Portsmouth, UK", + "ror_ids": [ + "https://ror.org/03ykbk197" + ] + }, + { + "affiliation": "Department of Physics, Institute of Applied Sciences and Humanities, GLA University, Mathura, India", + "ror_ids": [ + "https://ror.org/05fnxgv12" + ] + }, + { + "affiliation": "Department of Mathematical Sciences, University of Texas at Dallas, Dallas, USA", + "ror_ids": [ + "https://ror.org/049emcs32" + ] + }, + { + "affiliation": "Institute of Mathematics, Heinrich Heine University Duesseldorf, Duesseldorf, Germany", + "ror_ids": [ + "https://ror.org/024z2rq82" + ] + }, + { + "affiliation": "University of Haifa, Haifa, Israel", + "ror_ids": [ + "https://ror.org/02f009v59" + ] + }, + { + "affiliation": "Institute of Cartography and Geoinformatics, Leibniz University Hannover, Hannover, Lower Saxony, Germany", + "ror_ids": [ + "https://ror.org/0304hq317" + ] + }, + { + "affiliation": "Hospital Universitario de Salamanca, Instituto de Investigacion Biomedica de Salamanca (IBSAL), Centro de Investigación del Cancer (IBMCC-USAL, CSIC), CIBER-ONC number CB16/12/00233, Salamanca, Spain", + "ror_ids": [ + "https://ror.org/03em6xj44", + "https://ror.org/04rxrdv16" + ] + }, + { + "affiliation": "Department of Food and Nutrition, Kyung Hee University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/01zqcg218" + ] + }, + { + "affiliation": "Division of Pediatric Surgery, Children’s Surgical Services, Neonatal and Pediatric Ecmo, Fetal Diagnosis and Treatment Program, William F and Virginia Connolly Mitty Associate, NYU Langone Health, Hassenfeld Children’s Hospital at NYU Langone, , USA", + "ror_ids": [ + "https://ror.org/005dvqh91" + ] + }, + { + "affiliation": "Department of Pediatrics, Tampere University Hospital, Tampere, Finland", + "ror_ids": [ + "https://ror.org/02hvt5f17" + ] + }, + { + "affiliation": "School of Civil Engineering, Heilongjiang University of Science and Technology, Harbin, China", + "ror_ids": [ + "https://ror.org/030xwyx96" + ] + }, + { + "affiliation": "Centre for Ageing Research and Education, Duke-NUS Medical School, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/02j1m6098" + ] + }, + { + "affiliation": "Nuclear Medicine Unit, Department of Medicine (DIMED), Padova University Hospital, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "National and Kapodistrian University of Athens, Athens, Greece", + "ror_ids": [ + "https://ror.org/04gnjpq42" + ] + }, + { + "affiliation": "Computer Science Department, CINVESTAV-IPN, Mexico City, Mexico", + "ror_ids": [ + "https://ror.org/009eqmr18" + ] + }, + { + "affiliation": "School of Business Administration, Pennsylvania State University at Harrisburg, Middletown, PA, USA", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Department of Surgical Disciplines, All India Institute of Medical Sciences, New Delhi, India", + "ror_ids": [ + "https://ror.org/02dwcqs71" + ] + }, + { + "affiliation": "Culver Vision Discovery Institute, Augusta University, Augusta, GA, USA", + "ror_ids": [ + "https://ror.org/012mef835" + ] + }, + { + "affiliation": "Department of Internal Medicine, Paul L Foster School of Medicine, Texas Tech University, El Paso, TX, USA", + "ror_ids": [ + "https://ror.org/0405mnx93" + ] + }, + { + "affiliation": "Department of Urology, Zhujiang Hospital, Southern Medical University, Guangzhou, Guangdong, China", + "ror_ids": [ + "https://ror.org/02mhxa927", + "https://ror.org/01vjw4z39" + ] + }, + { + "affiliation": "Otorhinolaryngology, Head and Neck Surgery Department, Complexo Hospitalario Universitario A Coruña (CHUAC), A Coruña, Galicia, Spain", + "ror_ids": [ + "https://ror.org/044knj408" + ] + }, + { + "affiliation": "Center for MRI Research, Academy for Advanced Interdisciplinary Studies, Peking University, Beijing, China", + "ror_ids": [ + "https://ror.org/02v51f717" + ] + }, + { + "affiliation": "Department of Clinical Research Education, Nagoya University Graduate School of Medicine, Nagoya, Japan", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Department of Wood Biology and Wood Products, University of Göttingen, Göttingen, Germany", + "ror_ids": [ + "https://ror.org/01y9bpm73" + ] + }, + { + "affiliation": "Interdisciplinary Algology Center, CHU, University Hospital of Liège, Liège, Belgium", + "ror_ids": [ + "https://ror.org/044s61914" + ] + }, + { + "affiliation": "Industrial Engineering Department, Quchan University of Technology, Quchan, Iran", + "ror_ids": [ + "https://ror.org/01bt5mj78" + ] + }, + { + "affiliation": "Istanbul Bilgi University, Faculty of Engineering and Natural Sciences, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/04pm4x478" + ] + }, + { + "affiliation": "Biological Psychiatric Unit, IRCCS Istituto Centro San Giovanni di Dio Fatebenefratelli, Brescia, Italy", + "ror_ids": [ + "https://ror.org/02davtb12" + ] + }, + { + "affiliation": "Department of Ecology and Environmental Science, Umeå University, Umeå, Sweden", + "ror_ids": [ + "https://ror.org/05kb8h459" + ] + }, + { + "affiliation": "Department of Physics, Saveetha Engineering College, Thandalam, Chennai, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Field Crop Pests Research Department, Plant Protection Research Institute, Agricultural Research Center, Giza, Egypt", + "ror_ids": [ + "https://ror.org/05hcacp57" + ] + }, + { + "affiliation": "Photonic Communications Research Laboratory, Institute of Communication and Computer Systems, National Technical University of Athens, Zografou, Greece", + "ror_ids": [ + "https://ror.org/03cx6bg69" + ] + }, + { + "affiliation": "Department of Philosophy, University of California, Irvine, Irvine, CA, USA", + "ror_ids": [ + "https://ror.org/04gyf1771" + ] + }, + { + "affiliation": "Laboratory of Rangeland Ecosystems and Valorization of Spontaneous Plants and Associated Microorganisms (LR16IRA03), Arid Regions Institute, University of Gabes, Medenine, Tunisia", + "ror_ids": [ + "https://ror.org/022efad20" + ] + }, + { + "affiliation": "Institute for Cross-Disciplinary Physics and Complex Systems, IFISC (CSIC-UIB), Palma de Mallorca, Spain", + "ror_ids": [ + "https://ror.org/00pfxsh56" + ] + }, + { + "affiliation": "Division of Cardiac Surgery, University of Verona Medical School, Verona, Italy", + "ror_ids": [ + "https://ror.org/039bp8j42" + ] + }, + { + "affiliation": "School of Computer, Central China Normal University, Wuhan, Hubei, China", + "ror_ids": [ + "https://ror.org/03x1jna21" + ] + }, + { + "affiliation": "Department of Surgery, Manchester University NHS Foundation Trust, Manchester, UK", + "ror_ids": [ + "https://ror.org/00he80998" + ] + }, + { + "affiliation": "Laboratoire de Physique des Particules et Physique Statistique, Ecole Normale Supérieure-Kouba, Algiers, Algeria", + "ror_ids": [ + "https://ror.org/03kh2rb68" + ] + }, + { + "affiliation": "Departments of General Medicine, Liuzhou People’s Hospital, Liuzhou, Guangxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/01y8cpr39" + ] + }, + { + "affiliation": "Institut Max von Laue-Paul Langevin (ILL), Grenoble, France", + "ror_ids": [ + "https://ror.org/01xtjs520" + ] + }, + { + "affiliation": "Department of Medicine, Surgery and Dentistry Scuola Medica Salernitana, University of Salerno, Baronissi, Italy", + "ror_ids": [ + "https://ror.org/0192m2k53" + ] + }, + { + "affiliation": "Department of Industrial and Systems Engineering, Hong Kong Polytechnic University, Kowloon, Hong Kong", + "ror_ids": [ + "https://ror.org/0030zas98" + ] + }, + { + "affiliation": "Department of Medical Biotechnology, Faculty of Medicine, Semnan University of Medical Sciences, Semnan, Iran", + "ror_ids": [ + "https://ror.org/05y44as61" + ] + }, + { + "affiliation": "Christian Doppler Laboratory for Artificial Intelligence in Retina, Department of Ophthalmology and Optometry, Medical University of Vienna, Vienna, Austria", + "ror_ids": [ + "https://ror.org/05n3x4p02" + ] + }, + { + "affiliation": "Electrical Engineering Department, University of Engineering and Technology, Taxila, Taxila, Pakistan", + "ror_ids": [ + "https://ror.org/03v00ka07" + ] + }, + { + "affiliation": "Pediatrics, The Institute for Translational Genomics and Population Sciences, The Lundquist Institute for Biomedical Innovation at Harbor-UCLA, Torrance, USA", + "ror_ids": [ + "https://ror.org/05h4zj272" + ] + }, + { + "affiliation": "The First Hospital of Shanxi Medical University, Taiyuan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02vzqaq35" + ] + }, + { + "affiliation": "ISEG, Universidade de Lisboa and CEMAPRE/REM Research Center, Lisboa, Portugal", + "ror_ids": [ + "https://ror.org/01c27hj86" + ] + }, + { + "affiliation": "Department of Radiation Oncology, University Medical Center Utrecht, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/0575yy874" + ] + }, + { + "affiliation": "Pharmacy Department, Hamad Medical Corporation, Doha, Qatar", + "ror_ids": [ + "https://ror.org/02zwb6n98" + ] + }, + { + "affiliation": "Facultad de Ciencias, Universidad Pedagógica y Tecnológica de Colombia, Tunja, Boyacá, Colombia", + "ror_ids": [ + "https://ror.org/04vdmbk59" + ] + }, + { + "affiliation": "Department of Environmental Engineering, Engineering Faculty, Erciyes University, Kayseri, Turkey", + "ror_ids": [ + "https://ror.org/047g8vk19" + ] + }, + { + "affiliation": "Department of Government & Justice Studies, Appalachian State University, Boone, USA", + "ror_ids": [ + "https://ror.org/051m4vc48" + ] + }, + { + "affiliation": "Klinik für Vaskuläre und Endovaskuläre Chirurgie, Universitätsklinikum Münster, Albert-Schweitzer-Campus 1, Münster, Deutschland", + "ror_ids": [ + "https://ror.org/01856cw59" + ] + }, + { + "affiliation": "Department of Earth, Atmospheric and Planetary Sciences, Massachusetts Institute of Technology, 54-1514 MIT, Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Research Campus STIMULATE, Otto-von-Guericke University Magdeburg, Magdeburg, Germany", + "ror_ids": [ + "https://ror.org/00ggpsq73" + ] + }, + { + "affiliation": "IQVIA, Lyon, France", + "ror_ids": [ + "https://ror.org/0394bpd20" + ] + }, + { + "affiliation": "Department of Criminal Justice and Sociology, University of Wyoming, Laramie, WY, USA", + "ror_ids": [ + "https://ror.org/01485tq96" + ] + }, + { + "affiliation": "Institut für Kontinuumsmechanik, Leibniz Universität Hannover, Hannover, Niedersachsen, Germany", + "ror_ids": [ + "https://ror.org/0304hq317" + ] + }, + { + "affiliation": "Macrophage Laboratory, Department of Microbiology and Immunology, and Institute of Endemic Disease, Seoul National University College of Medicine, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/04h9pn542" + ] + }, + { + "affiliation": "Fakultät für Tourismus Hochschule München, München, Deutschland", + "ror_ids": [ + "https://ror.org/012k1v959" + ] + }, + { + "affiliation": "Center for Molecular Biology of Heidelberg University (ZMBH), DKFZ-ZMBH Alliance, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/05x8b4491", + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "Programa de Pós-graduação em Biotecnologia, Universidade Federal do Pará, Belém, PA, Brazil", + "ror_ids": [ + "https://ror.org/03q9sr818" + ] + }, + { + "affiliation": "Department of Rheumatology, DMU Locomotion, AP-HP Nord & Inserm UMR 1132, Bioscar (Centre Viggo Petersen), Hôpital Lariboisière, Paris, France", + "ror_ids": [ + "https://ror.org/02mqtne57" + ] + }, + { + "affiliation": "Membrane Biophysics, Institute of Genetics, CECAD, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "Institut Langevin, ESPCI Paris, Université PSL, CNRS, Paris, France", + "ror_ids": [ + "https://ror.org/02feahw73", + "https://ror.org/03zx86w41", + "https://ror.org/013cjyk83" + ] + }, + { + "affiliation": "PROmoting FITness and Health Through Physical Activity Research Group (PROFITH), Department of Physical and Sports Education, Faculty of Sports Science, University of Granada, Granada, Spain", + "ror_ids": [ + "https://ror.org/04njjy449" + ] + }, + { + "affiliation": "Centre for Research in Epidemiology and Statistics (CRESS), Université Paris Cité and Université Sorbonne Paris Nord, Inserm, INRAE, Paris, France", + "ror_ids": [ + "https://ror.org/02vjkv261", + "https://ror.org/00t9egj41", + "https://ror.org/0199hds37" + ] + }, + { + "affiliation": "Department of Mathematics, Saveetha School of Engineering, SIMATS, Chennai, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/0034me914" + ] + }, + { + "affiliation": "College of Astronautics, Nanjing University of Aeronautics and Astronautics, Nanjing, China", + "ror_ids": [ + "https://ror.org/01scyh794" + ] + }, + { + "affiliation": "Institute for Infocomm Research, ASTAR, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/053rfa017" + ] + }, + { + "affiliation": "Innovative Device and Engineering Applications Laboratory, Texas Heart Institute, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/00r4vsg44" + ] + }, + { + "affiliation": "Department of HR and Organizational Behavior, ISCTE Business School, Business Research Unit (BRU-IUL), Lisbon, Portugal", + "ror_ids": [ + "https://ror.org/014837179" + ] + }, + { + "affiliation": "Department of Woman, Child and Newborn, Fondazione IRCCS Ca’ Granda Ospedale Maggiore Policlinico, Milan, Italy", + "ror_ids": [ + "https://ror.org/016zn0y21" + ] + }, + { + "affiliation": "Department of Medicine, University Hospitals, Cleveland, OH, USA", + "ror_ids": [ + "https://ror.org/0130jk839" + ] + }, + { + "affiliation": "Center for Neuroimaging, Department of Radiology and Imaging Sciences, Indiana University Melvin and Bren Simon Comprehensive Cancer Center, and Indiana Alzheimer’s Disease Research Center, Indiana University School of Medicine, Indianapolis, IN, USA", + "ror_ids": [ + "https://ror.org/00g1d7b60", + "https://ror.org/02ets8c94" + ] + }, + { + "affiliation": "Advanced Analysis and Data Center, Korea Institute of Science and Technology, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/05kzfa883" + ] + }, + { + "affiliation": "HIV Center for Clinical and Behavioral Studies, Columbia University, New York, NY, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "College of Pharmacy and Inje Institute of Pharmaceutical Sciences and Research, Inje University, Gimhae, Gyeongnam, Republic of Korea", + "ror_ids": [ + "https://ror.org/04xqwq985" + ] + }, + { + "affiliation": "Henan Key Laboratory of High Temperature Functional Ceramics, Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Global Epidemiology and Benefit-Risk Evaluation, Sanofi, Chilly-Mazarin, France", + "ror_ids": [ + "https://ror.org/02n6c9837" + ] + }, + { + "affiliation": "Cumberland Infirmary, Carlisle, UK", + "ror_ids": [ + "https://ror.org/046dm7t24" + ] + }, + { + "affiliation": "Instituto de Biodiversidade e Sustentabilidade (NUPEM), Universidade Federal do Rio de Janeiro—UFRJ, Macaé, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/03490as77" + ] + }, + { + "affiliation": "Department of Chemical and Environmental Engineering, University of Nottingham Malaysia, Semenyih, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/04mz9mt17" + ] + }, + { + "affiliation": "School of Life Sciences, Center for Cell and Developmental Biology, Chinese University of Hong Kong, New Territories, Hong Kong, China", + "ror_ids": [ + "https://ror.org/00t33hh48" + ] + }, + { + "affiliation": "Terapia Intensiva Pediatrica, Dipartimento di Scienze dell’Emergenza, Anestesiologiche e Rianimazione, Fondazione Policlinico Universitario “A. Gemelli” IRCCS, Rome, Italy", + "ror_ids": [ + "https://ror.org/00rg70c39" + ] + }, + { + "affiliation": "Department of Applied Physics, KTH Royal Institute of Technology, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Department of Urban Planning and Design, Tsinghua University, Beijing, P. R. China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "State Key Laboratory of Subtropical Silviculture, Zhejiang A&F University, Hangzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02vj4rn06" + ] + }, + { + "affiliation": "Department of Advanced Endoscopy, Fujita Health University School of Medicine, Toyoake City, Aichi, Japan", + "ror_ids": [ + "https://ror.org/046f6cx68" + ] + }, + { + "affiliation": "Postgraduate School of Engineering Management, University of Johannesburg, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/04z6c2n17" + ] + }, + { + "affiliation": "Division of General Internal Medicine, Weill Cornell Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02r109517" + ] + }, + { + "affiliation": "Department of English, College of Languages and Translation, Najran University, Najran, Saudi Arabia", + "ror_ids": [ + "https://ror.org/05edw4a90" + ] + }, + { + "affiliation": "Department of Medical Sciences, Clinical Chemistry, Uppsala University, Uppsala, Sweden", + "ror_ids": [ + "https://ror.org/048a87296" + ] + }, + { + "affiliation": "School of Communication, Nanchang Institute of Technology, Nanchang, Jiangsu, China", + "ror_ids": [ + "https://ror.org/00avfj807" + ] + }, + { + "affiliation": "Heilongjiang Provincial Key Laboratory of Trace Elements and Human Health, Harbin Medical University, Harbin, China", + "ror_ids": [ + "https://ror.org/05jscf583" + ] + }, + { + "affiliation": "Department of Biochemistry, Faculty of Agriculture, Cairo University, Giza, Egypt", + "ror_ids": [ + "https://ror.org/03q21mh05" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Faculty of Engineering, Marmara University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/02kswqa67" + ] + }, + { + "affiliation": "University of Hamburg, Hamburg, Germany", + "ror_ids": [ + "https://ror.org/00g30e956" + ] + }, + { + "affiliation": "NIHR Barts Cardiovascular Biomedical Research Centre, Barts and The London School of Medicine and Dentistry, Queen Mary University of London, London, UK", + "ror_ids": [ + "https://ror.org/026zzn846", + "https://ror.org/03m51nf34" + ] + }, + { + "affiliation": "Heidelberg Myeloma Center, Department of Hematology/Oncology, Heidelberg University Hospital, Heidelberg, Germany", + "ror_ids": [ + "https://ror.org/013czdx64" + ] + }, + { + "affiliation": "Department of Psychiatry and Behavioral Neuroscience, University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Bioanalytics, Metabolomics, and Pharmacokinetics Shared Resource, Roswell Park Comprehensive Cancer Center, Buffalo, NY, USA", + "ror_ids": [ + "https://ror.org/0499dwk57" + ] + }, + { + "affiliation": "Division of Breast Surgery, Department of Surgery, Changi General Hospital, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/02q854y08" + ] + }, + { + "affiliation": "Department of Emergency Medicine, The Ottawa Hospital, University of Ottawa, Ottawa, ON, Canada", + "ror_ids": [ + "https://ror.org/03c4mmv16", + "https://ror.org/03c62dg59" + ] + }, + { + "affiliation": "LABS, Dipartimento di Chimica, Materiali e Ingegneria Chimica “Giulio Natta”, Politecnico di Milano, Milan, Italy", + "ror_ids": [ + "https://ror.org/01nffqt88" + ] + }, + { + "affiliation": "Consumer Science Department, Faculty of Science and Agriculture, University of Zululand, Richards Bay, South Africa", + "ror_ids": [ + "https://ror.org/03v8ter60" + ] + }, + { + "affiliation": "Department of Energy Science, Periyar University, Salem, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/05crs8s98" + ] + }, + { + "affiliation": "School of Engineering and Computing Sciences, Durham University, Durham, UK", + "ror_ids": [ + "https://ror.org/01v29qb04" + ] + }, + { + "affiliation": "Istituto Dermopatico Immacolata (IDI-IRCCS), Rome, Italy", + "ror_ids": [ + "https://ror.org/02b5mfy68" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, Chung Yuan Christian University, Taoyuan City, Taiwan", + "ror_ids": [ + "https://ror.org/02w8ws377" + ] + }, + { + "affiliation": "Faculty of Applied Sciences, Delft University of Technology, Delft, The Netherlands", + "ror_ids": [ + "https://ror.org/02e2c7k09" + ] + }, + { + "affiliation": "Leiden Observatory, Leiden University, Leiden, the Netherlands", + "ror_ids": [ + "https://ror.org/027bh9e22" + ] + }, + { + "affiliation": "Division of Nephrology, Department of Pediatrics, Medical University of South Carolina, Charleston, SC, USA", + "ror_ids": [ + "https://ror.org/012jban78" + ] + }, + { + "affiliation": "Department of Diagnostic and Interventional Radiology, Medical Center – University of Freiburg, Faculty of Medicine, University of Freiburg, Freiburg, Germany", + "ror_ids": [ + "https://ror.org/0245cg223" + ] + }, + { + "affiliation": "Jiangsu Key Laboratory of Biomass-Based Green Fuels and Chemicals, Nanjing Forestry University, Nanjing, China", + "ror_ids": [ + "https://ror.org/03m96p165" + ] + }, + { + "affiliation": "Department of Biology Sciences, Institute of Environment Sciences, University of Quebec at Montreal, Montreal, Canada", + "ror_ids": [ + "https://ror.org/002rjbv21" + ] + }, + { + "affiliation": "Faculty of Pharmacy, Drug Research Program, University of Helsinki, Helsinki, Finland", + "ror_ids": [ + "https://ror.org/040af2s02" + ] + }, + { + "affiliation": "Department of Industrial and Business Management, Chang Gung University, Taoyuan City, Taiwan", + "ror_ids": [ + "https://ror.org/00d80zx46" + ] + }, + { + "affiliation": "Department of Electrical & Computer Engineering, Western University, London, ON, Canada", + "ror_ids": [ + "https://ror.org/02grkyz14" + ] + }, + { + "affiliation": "Aeronautical Engineering College, Civil Aviation University of China, Tianjin, China", + "ror_ids": [ + "https://ror.org/03je71k37" + ] + }, + { + "affiliation": "Philosophie (GW Fakultät), Universität Salzburg, Salzburg, Österreich", + "ror_ids": [ + "https://ror.org/05gs8cd61" + ] + }, + { + "affiliation": "Institut für Geographie, Lehrstuhl für Wirtschaftsgeographie, Friedrich-Schiller-Universität Jena, Jena, Deutschland", + "ror_ids": [ + "https://ror.org/05qpz1x62" + ] + }, + { + "affiliation": "Curtin University, Perth, Australia", + "ror_ids": [ + "https://ror.org/02n415q13" + ] + }, + { + "affiliation": "Department of Plastic, Aesthetic, Hand and Reconstructive Surgery, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Institute of Applied Physics and Computational Mathematics, China Academy of Engineering Physics, Beijing, China", + "ror_ids": [ + "https://ror.org/039vqpp67", + "https://ror.org/03sxpbt26" + ] + }, + { + "affiliation": "Nuclear Medicine and Diagnostic Imaging Section, Division of Human Health, Department of Nuclear Sciences and Applications, International Atomic Energy Agency, Vienna, Austria", + "ror_ids": [ + "https://ror.org/02zt1gg83" + ] + }, + { + "affiliation": "Washington University in St. Louis, St. Louis, USA", + "ror_ids": [ + "https://ror.org/01yc7t268" + ] + }, + { + "affiliation": "Perm National Research Polytechnic University, Perm, Russia", + "ror_ids": [ + "https://ror.org/05c0ns027" + ] + }, + { + "affiliation": "Conservation International, Arlington, VA, USA", + "ror_ids": [ + "https://ror.org/024weye46" + ] + }, + { + "affiliation": "Department of Rheumatology - DMU Locomotion, Assistance Publique - Hôpitaux de Paris, Paris, France", + "ror_ids": [ + "https://ror.org/00pg5jh14" + ] + }, + { + "affiliation": "Institute for Humanitarian Research and North Indigenous People Problems, Siberian Branch, Russian Academy of Sciences, Yakutsk, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25" + ] + }, + { + "affiliation": "Faculty of Epidemiology and Population Health, London School of Hygiene and Tropical Medicine, London, UK", + "ror_ids": [ + "https://ror.org/00a0jsq62" + ] + }, + { + "affiliation": "Department of Thoracic Surgery, The First Affiliated Hospital of Anhui Medical University, Hefei, China", + "ror_ids": [ + "https://ror.org/03t1yn780" + ] + }, + { + "affiliation": "Frances Kirwan Mathematical Institute, University of Oxford, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Amazon, Santa Clara, CA, USA", + "ror_ids": [ + "https://ror.org/04mv4n011" + ] + }, + { + "affiliation": "Dermatologia, Dipartimento Universitario di Medicina e Chirurgia Traslazionale, Università Cattolica del Sacro Cuore, Rome, Italy", + "ror_ids": [ + "https://ror.org/03h7r5v07" + ] + }, + { + "affiliation": "ADAPT Centre, Technological University Dublin, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/04t0qbt32" + ] + }, + { + "affiliation": "Department of Applied Psychology, New York University, New York City, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "Public Health Promotion Unit, Finnish Institute for Health and Welfare, Helsinki, Finland", + "ror_ids": [ + "https://ror.org/03tf0c761" + ] + }, + { + "affiliation": "Department of Soils and Agricultural Engineering, Federal University of Paraná (UFPR), Curitiba, Parana, Brazil", + "ror_ids": [ + "https://ror.org/05syd6y78" + ] + }, + { + "affiliation": "BioImaging Unit, Space Research Centre, University of Leicester, Leicester, UK", + "ror_ids": [ + "https://ror.org/04h699437" + ] + }, + { + "affiliation": "Univ Rennes, INSA Rennes, CNRS, IETR - UMR 6164, Rennes, Rennes, France", + "ror_ids": [ + "https://ror.org/015m7wh34" + ] + }, + { + "affiliation": "School of Engineering, Swinburne University of Technology, Hawthorn, VIC, Australia", + "ror_ids": [ + "https://ror.org/031rekg67" + ] + }, + { + "affiliation": "Military Institute of Engineering - IME, Rio de Janeiro, Brazil", + "ror_ids": [ + "https://ror.org/03veakt65" + ] + }, + { + "affiliation": "N. N. Vorozhtsov Novosibirsk Institute of Organic Chemistry SB RAS, Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/00tgps059" + ] + }, + { + "affiliation": "Department of Chemistry, University of Waterloo, Waterloo, ON, Canada", + "ror_ids": [ + "https://ror.org/01aff2v68" + ] + }, + { + "affiliation": "Center for Cognition and Sociality, Institute for Basic Science (IBS), Daejeon, Republic of Korea", + "ror_ids": [ + "https://ror.org/00y0zf565" + ] + }, + { + "affiliation": "Departament de Psicobiologia i de Metodologia de els Ciències de la Salut, Universitat Autònoma de Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Klinik für Anästhesiologie und Intensivmedizin, Universitätsklinikum Schleswig-Holstein, Lübeck, Deutschland", + "ror_ids": [ + "https://ror.org/01tvm6f46" + ] + }, + { + "affiliation": "Department of Biological Engineering, Massachusetts Institute of Technology, Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Department of Macromolecular Science, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "State Key Laboratory of Alternate Electrical Power System With Renewable Energy Sources, North China Electric Power University, Beijing, China", + "ror_ids": [ + "https://ror.org/04qr5t414" + ] + }, + { + "affiliation": "Department of Mathematics, Dr. B.R. Ambedkar National Institute of Technology Jalandhar, Jalandhar, Punjab, India", + "ror_ids": [ + "https://ror.org/03xt0bg88" + ] + }, + { + "affiliation": "INFN Sezione di Ferrara, Ferrara, Italy", + "ror_ids": [ + "https://ror.org/00zs3y046" + ] + }, + { + "affiliation": "Physics Department, Faculty of Science, Alexandria University, Alexandria, Egypt", + "ror_ids": [ + "https://ror.org/00mzz1w90" + ] + }, + { + "affiliation": "Centre d’Elaboration de Materiaux Et d’Etudes Structurales (CEMES), Toulouse Cedex 4, France", + "ror_ids": [ + "https://ror.org/03kwnqq69" + ] + }, + { + "affiliation": "School of Computer Science and Engineering, Anhui University of Science & Technology, Huainan, Anhui, China", + "ror_ids": [ + "https://ror.org/00q9atg80" + ] + }, + { + "affiliation": "Department of Biomedical Sciences, Faculty of Medicine, University of Malaya, Kuala Lumpur, Malaysia", + "ror_ids": [ + "https://ror.org/00rzspn62" + ] + }, + { + "affiliation": "DEVCOM Army Research Laboratory, Aberdeen Proving Ground, MD, USA", + "ror_ids": [ + "https://ror.org/011hc8f90" + ] + }, + { + "affiliation": "Boston University Alzheimer’s Disease Research Center and Department of Neurology, Boston University School of Medicine, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/05qwgg493" + ] + }, + { + "affiliation": "Department of Paediatrics, Necker Hospital for Sick Children, Paris, EU, France", + "ror_ids": [ + "https://ror.org/05tr67282" + ] + }, + { + "affiliation": "Department of Head and Neck Surgery, Institut Curie, Paris, France", + "ror_ids": [ + "https://ror.org/04t0gwh46" + ] + }, + { + "affiliation": "Department of Psychology, Florida State University, Tallahassee, FL, USA", + "ror_ids": [ + "https://ror.org/05g3dte14" + ] + }, + { + "affiliation": "Department of Nesurosurgery, Mansoura University, Mansoura, Egypt", + "ror_ids": [ + "https://ror.org/01k8vtd75" + ] + }, + { + "affiliation": "Orthopaedic Institute, Soochow Medical College, Soochow University, Suzhou, Jiangsu, China", + "ror_ids": [ + "https://ror.org/05t8y2r12" + ] + }, + { + "affiliation": "Department of Physics, Lovely Professional University, Phagwara, India", + "ror_ids": [ + "https://ror.org/00et6q107" + ] + }, + { + "affiliation": "Department of Applied Mathematics, Defence Institute of Advanced Technology, Pune, Maharashtra, India", + "ror_ids": [ + "https://ror.org/05qpbfx18" + ] + }, + { + "affiliation": "Department of Surgery, Zealand University Hospital, Koege, Denmark", + "ror_ids": [ + "https://ror.org/00363z010" + ] + }, + { + "affiliation": "Energy and Materials for Sustainability (EMS) Research Group, Division of Physical Science, Faculty of Science, Prince of Songkla University, Hat Yai, Songkhla, Thailand", + "ror_ids": [ + "https://ror.org/0575ycz84" + ] + }, + { + "affiliation": "Department of Animal Sciences, Purdue University, West Lafayette, IN, USA", + "ror_ids": [ + "https://ror.org/02dqehb95" + ] + }, + { + "affiliation": "Department of Neurosurgery, Prince Mohamed Ibn Abdelaziz Hospital, Riyadh, Kingdom of Saudi Arabia", + "ror_ids": [ + "https://ror.org/01j5awv26" + ] + }, + { + "affiliation": "North-Caucasus Federal University, Stavropol, Russia", + "ror_ids": [ + "https://ror.org/05g1k4d79" + ] + }, + { + "affiliation": "School of Aeronautics and Astronautics, Shenzhen Campus of Sun Yat-sen University, Shenzhen, China", + "ror_ids": [ + "https://ror.org/0064kty71" + ] + }, + { + "affiliation": "Department of Management, American University of Kuwait, Salmiya, Safat, Kuwait", + "ror_ids": [ + "https://ror.org/00w73cg32" + ] + }, + { + "affiliation": "CIC-FEMD/ILCEC, Key Laboratory of Meteorological Disaster of Ministry of Education (KLME), Nanjing University of Information Science and Technology, Nanjing, China", + "ror_ids": [ + "https://ror.org/02y0rxk19" + ] + }, + { + "affiliation": "Department of Clinical Pharmacology, School of Pharmacy, Nanjing Medical University, Nanjing, China", + "ror_ids": [ + "https://ror.org/059gcgy73" + ] + }, + { + "affiliation": "University of Potsdam, Potsdam, Germany", + "ror_ids": [ + "https://ror.org/03bnmw459" + ] + }, + { + "affiliation": "Texas Tech University Health Sciences Center (TTUHSC), Lubbock, Tx, USA", + "ror_ids": [ + "https://ror.org/033ztpr93" + ] + }, + { + "affiliation": "Institute of Forensic Science & Criminology, Panjab University, Chandigarh, India", + "ror_ids": [ + "https://ror.org/04p2sbk06" + ] + }, + { + "affiliation": "Hindu College, University of Delhi, Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "China University of Mining and Technology, Xuzhou, China", + "ror_ids": [ + "https://ror.org/01xt2dr21" + ] + }, + { + "affiliation": "Medical Research Institute, Pusan National University, Busan, Republic of Korea", + "ror_ids": [ + "https://ror.org/01an57a31" + ] + }, + { + "affiliation": "NSW Health Pathology, Department of Anatomical Pathology, Royal North Shore Hospital, Sydney, New South Wales, Australia", + "ror_ids": [ + "https://ror.org/02gs2e959" + ] + }, + { + "affiliation": "Department of Zoology, Poznań University of Life Sciences, Poznań, Poland", + "ror_ids": [ + "https://ror.org/03tth1e03" + ] + }, + { + "affiliation": "Ministry of Education, Putrajaya, Malaysia", + "ror_ids": [ + "https://ror.org/05v8z6a72" + ] + }, + { + "affiliation": "Lunar and Planetary Institute, University Space Research Association, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/043pgqy52", + "https://ror.org/01r4eh644" + ] + }, + { + "affiliation": "Department of Pathobiology and Population Sciences, The Royal Veterinary College, London, UK", + "ror_ids": [ + "https://ror.org/01wka8n18" + ] + }, + { + "affiliation": "Department of Basic Health Sciences, Unit of Microbiology, Faculty of Medicine and Health Sciences, Institut d’Investigació Sanitària Pere Virgili, Universitat Rovira i Virgili, Reus, Spain", + "ror_ids": [ + "https://ror.org/00g5sqv46", + "https://ror.org/01av3a615" + ] + }, + { + "affiliation": "Department of Ophthalmology, Gülhane Training and Research Hospital, University of Health Sciences, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, University of Toyama, Toyama-shi, Toyama, Japan", + "ror_ids": [ + "https://ror.org/0445phv87" + ] + }, + { + "affiliation": "School of Business, Nanjing Normal University, Nanjing, Jiangsu, China", + "ror_ids": [ + "https://ror.org/036trcv74" + ] + }, + { + "affiliation": "Department of Medicine and Department of Social and Preventive Medicine, Université de Montréal, Montréal, QC, Canada", + "ror_ids": [ + "https://ror.org/0161xgx34" + ] + }, + { + "affiliation": "Department of Civil and Construction Engineering, College of Engineering, Imam Abdulrahman Bin Faisal University, Dammam, Saudi Arabia", + "ror_ids": [ + "https://ror.org/038cy8j79" + ] + }, + { + "affiliation": "Ukrainian State University of Chemical Technology, Dnipro, Ukraine", + "ror_ids": [ + "https://ror.org/031bs2a09" + ] + }, + { + "affiliation": "Department of Clinical and Toxicological Analyses, School of Pharmaceutical Sciences, University of Sao Paulo, Sao Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Department of Food and Nutrition, The Maharaja Sayajirao University of Baroda, Vadodara, India", + "ror_ids": [ + "https://ror.org/01bx8ja67" + ] + }, + { + "affiliation": "Center for Rare Diseases, University of Leipzig Medical Center, Leipzig, Germany", + "ror_ids": [ + "https://ror.org/03s7gtk40" + ] + }, + { + "affiliation": "Cloud Computing Smart Cities and High Perfomance Computing Group, Universidad Politécnica Salesiana, Cuenca, Ecuador", + "ror_ids": [ + "https://ror.org/00f11af73" + ] + }, + { + "affiliation": "Department of Hematology and Oncology, Instituto Nacional de Ciencias Médicas y Nutrición Salvador Zubirán, Mexico City, Mexico", + "ror_ids": [ + "https://ror.org/00xgvev73" + ] + }, + { + "affiliation": "Experimental Animal Division, RIKEN BioResource Research Center, Tsukuba, Japan", + "ror_ids": [ + "https://ror.org/00s05em53" + ] + }, + { + "affiliation": "Laboratory of Pediatric and Respiratory Virus Diseases, Division of Viral Products, Office of Vaccines Research and Review, Center for Biologics Evaluation and Research, Food and Drug Administration, Silver Spring, MD, USA", + "ror_ids": [ + "https://ror.org/02nr3fr97" + ] + }, + { + "affiliation": "Department of Medical Sciences and Public Health, University of Cagliari, Cagliari, Italia", + "ror_ids": [ + "https://ror.org/003109y17" + ] + }, + { + "affiliation": "Department of Thoracic/Head and Neck Medical Oncology, University of Texas MD Anderson Cancer Center, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Princeton Center for Theoretical Science and Physics Department, Princeton University, Princeton, NJ, USA", + "ror_ids": [ + "https://ror.org/00hx57361" + ] + }, + { + "affiliation": "Laboratorio de Ecología, Fisiología y Evolución de Organismos Acuáticos, Centro Austral de Investigaciones Científicas (CADIC-CONICET), Ushuaia, Tierra del Fuego, Argentina", + "ror_ids": [ + "https://ror.org/03cqe8w59" + ] + }, + { + "affiliation": "Engineering Research Center of Advanced Metal Composites Forming Technology and Equipment, Ministry of Education, Taiyuan, China", + "ror_ids": [ + "https://ror.org/03m01yf64" + ] + }, + { + "affiliation": "Department of Women’s and Children’s Health, University of Liverpool, Liverpool Health Partners, Liverpool, UK", + "ror_ids": [ + "https://ror.org/04xs57h96" + ] + }, + { + "affiliation": "Laboratory of Software Engineering for Complex Systems, National University of Defense Technology, Changsha, China", + "ror_ids": [ + "https://ror.org/05d2yfz11" + ] + }, + { + "affiliation": "Department of Biologic & Materials Sciences, School of Dentistry, University Michigan, Ann Arbor, MI, USA", + "ror_ids": [ + "https://ror.org/00jmfr291" + ] + }, + { + "affiliation": "Department of Nuclear Medicine, Henry Dunant Hospital Centre, Athens, Greece", + "ror_ids": [ + "https://ror.org/05n7t4h40" + ] + }, + { + "affiliation": "Department of Artificial Intelligence, Indian Institute of Technology Hyderabad, Kandi, TS, India", + "ror_ids": [ + "https://ror.org/01j4v3x97" + ] + }, + { + "affiliation": "School of Sport and Health Sciences, University of Brighton, Eastbourne, UK", + "ror_ids": [ + "https://ror.org/04kp2b655" + ] + }, + { + "affiliation": "Division of Genetics, ICAR-Indian Agricultural Research Institute, New Delhi, India", + "ror_ids": [ + "https://ror.org/01bzgdw81" + ] + }, + { + "affiliation": "Myology Laboratory, Institute of Biomedical Problems RAS, Moscow, Russia", + "ror_ids": [ + "https://ror.org/016hfp155" + ] + }, + { + "affiliation": "Lady Davis Institute, McGill University, Montreal, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438" + ] + }, + { + "affiliation": "Department of Urology and Organ Transplantation, University of Foggia, Foggia, Italy", + "ror_ids": [ + "https://ror.org/01xtv3204" + ] + }, + { + "affiliation": "Department of Mental Health and Diseases Nursing, Faculty of Nursing, Aydın Adnan Menderes University, Aydın, Turkey", + "ror_ids": [ + "https://ror.org/03n7yzv56" + ] + }, + { + "affiliation": "Guangxi Key Laboratory of Marine Natural Products and Combinatorial Biosynthesis Chemistry, Guangxi Beibu Gulf Marine Research Center, Guangxi Academy of Sciences, Nanning, Guangxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/054x1kd82" + ] + }, + { + "affiliation": "Kansas City Kansas Community College (Ret.), Kansas City, KS, USA", + "ror_ids": [ + "https://ror.org/02ckz2f26" + ] + }, + { + "affiliation": "Abteilung für Biophysikalische Chemie, Max-Planck-Institut für Biophysik, Frankfurt a. M., Germany", + "ror_ids": [ + "https://ror.org/02panr271" + ] + }, + { + "affiliation": "State Key Laboratory of Cellular Stress Biology, School of Medicine, Xiamen University, Xiamen, China", + "ror_ids": [ + "https://ror.org/00mcjh785" + ] + }, + { + "affiliation": "Institute for Nuclear Research of the National Academy of Sciences (KINR), Kyiv, Ukraine", + "ror_ids": [ + "https://ror.org/052kdcb58" + ] + }, + { + "affiliation": "Department of Stomatology, Nanfang Hospital, Southern Medical University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/01vjw4z39" + ] + }, + { + "affiliation": "Department of Biotechnology, Microbiology and Human Nutrition, Faculty of Food Science and Biotechnology, University of Life Sciences in Lublin, Lublin, Poland", + "ror_ids": [ + "https://ror.org/03hq67y94" + ] + }, + { + "affiliation": "Faculty of Automatic Control, Electronics and Computer Science, Silesian University of Technology, Gliwice, Poland", + "ror_ids": [ + "https://ror.org/02dyjk442" + ] + }, + { + "affiliation": "Department of Surgery, Oncology and Gastroenterology, University of Padua, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Department of Business Administration, Niğde Ömer Halisdemir University, Niğde, Turkey", + "ror_ids": [ + "https://ror.org/03ejnre35" + ] + }, + { + "affiliation": "Division of Mathematics and Physics, School of Education, Mälardalen University, Västerås, Sweden", + "ror_ids": [ + "https://ror.org/033vfbz75" + ] + }, + { + "affiliation": "Division of Emergency Medicine, Department of Medicine, McMaster University, Hamilton, ON, Canada", + "ror_ids": [ + "https://ror.org/02fa3aq29" + ] + }, + { + "affiliation": "Department of Neurology, Memory and Aging Center, University of California San Francisco, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "Northern Jiangsu People’s Hospital, Yangzhou, China", + "ror_ids": [ + "https://ror.org/04gz17b59" + ] + }, + { + "affiliation": "Investigadores por México-CONAHCYT, Servicio de Clima Espacial México, Laboratorio Nacional de Clima Espacial, Instituto de Geofísica, Unidad Michoacán, Universidad Nacional Autónoma de México, Morelia, Michoacán, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "Robert Stempel College of Public Health & Social Work, Florida International University, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/02gz6gg07" + ] + }, + { + "affiliation": "Clinic for Urology, Clinic for Medical Oncology, University Hospital Essen, Essen, Germany", + "ror_ids": [ + "https://ror.org/02na8dn90" + ] + }, + { + "affiliation": "Department of Civil Engineering, Government College of Engineering, Keonjhar, Odisha, India", + "ror_ids": [ + "https://ror.org/02b1vt080" + ] + }, + { + "affiliation": "Department of Nephrology and Transplantation, Beaumont Hospital, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/043mzjj67" + ] + }, + { + "affiliation": "Medical AI Center, Niigata University School of Medicine, Niigata City, Niigata, Japan", + "ror_ids": [ + "https://ror.org/04ww21r56" + ] + }, + { + "affiliation": "CENTRUM Católica Graduate Business School, Pontificia Universidad Católica del Perú, Lima, Peru", + "ror_ids": [ + "https://ror.org/00013q465" + ] + }, + { + "affiliation": "Department of Epidemiology and Biostatistics, Erasmus University Medical Center, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/018906e22" + ] + }, + { + "affiliation": "Department of Economics, Ritsumeikan University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/0197nmd03" + ] + }, + { + "affiliation": "Centre for Epidemiology and Biostatistics, Melbourne School of Population and Global Health, The University of Melbourne, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98" + ] + }, + { + "affiliation": "ICAR-Indian Agricultural Statistics Research Institute, New Delhi, India", + "ror_ids": [ + "https://ror.org/03kkevc75" + ] + }, + { + "affiliation": "Department of Intervention, National Cancer Center/National Clinical Research Center for Cancer/Cancer Hospital, Chinese Academy of Medical Sciences and Peking Union Medical College, Beijing, China", + "ror_ids": [ + "https://ror.org/02drdmm93" + ] + }, + { + "affiliation": "AGH University of Science and Technology, FPACS, Cracow, Poland", + "ror_ids": [ + "https://ror.org/00bas1c41" + ] + }, + { + "affiliation": "Department of Communicative Sciences and Disorders, New York University, New York, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "Division of Engineering, New York University Abu Dhabi, Abu Dhabi, UAE", + "ror_ids": [ + "https://ror.org/00e5k0821" + ] + }, + { + "affiliation": "INSERM U1148, Paris, France", + "ror_ids": [ + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Faculty of Business, Design, and Arts, Swinburne University of Technology Sarawak Campus, Kuching, Malaysia", + "ror_ids": [ + "https://ror.org/014cjmc76" + ] + }, + { + "affiliation": "Institute of Cardiovascular Science, Division of Medicine, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "University Grenoble Alpes, Inserm, CEA, IRIG-Biosanté, UMR 1292, Grenoble, France", + "ror_ids": [ + "https://ror.org/02mg6n827", + "https://ror.org/02vjkv261", + "https://ror.org/02rx3b187" + ] + }, + { + "affiliation": "Department of Earth Sciences, Utrecht University, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "Knowledge Technology, Department of Informatics, University of Hamburg, Hamburg, Germany", + "ror_ids": [ + "https://ror.org/00g30e956" + ] + }, + { + "affiliation": "EMBL-EBI, Hinxton, UK", + "ror_ids": [ + "https://ror.org/02catss52" + ] + }, + { + "affiliation": "Academy of Medical Science, Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Federal University of Rio Grande do Sul, UFRGS, Porto Alegre, RS, Brazil", + "ror_ids": [ + "https://ror.org/041yk2d64" + ] + }, + { + "affiliation": "Precision Mechanical Process and Control R&D Group, Korea Institute of Industrial Technology, Jinju-si, Gyeongsangnam-do, Republic of Korea", + "ror_ids": [ + "https://ror.org/04qfph657" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Sardar Vallabhbhai National Institute of Technology - Surat, Surat, Gujarat, India", + "ror_ids": [ + "https://ror.org/02y394t43" + ] + }, + { + "affiliation": "São Paulo State University (Unesp), São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Department of Psychological and Brain Sciences, Drexel University, Philadelphia, USA", + "ror_ids": [ + "https://ror.org/04bdffz58" + ] + }, + { + "affiliation": "University of Strasbourg, Strasbourg, France", + "ror_ids": [ + "https://ror.org/00pg6eq24" + ] + }, + { + "affiliation": "School of Earth and Environmental Sciences, Cardiff University, Cardiff, UK", + "ror_ids": [ + "https://ror.org/03kk7td41" + ] + }, + { + "affiliation": "Geographisches Institut und Center for American Studies, Universität Heidelberg, Heidelberg, Deutschland", + "ror_ids": [ + "https://ror.org/038t36y30" + ] + }, + { + "affiliation": "West China Biomedical Big Data Center, Sichuan University West China Hospital, Chengdu, China", + "ror_ids": [ + "https://ror.org/007mrxy13" + ] + }, + { + "affiliation": "Departamento de Ingeniería Química, Universidad de Guadalajara, Guadalajara, Jalisco, México", + "ror_ids": [ + "https://ror.org/043xj7k26" + ] + }, + { + "affiliation": "Department of Administrative Science, Hasanuddin University, Makassar, Indonesia", + "ror_ids": [ + "https://ror.org/00da1gf19" + ] + }, + { + "affiliation": "School of Biological Sciences, Doon University, Dehradun, Uttarakhand, India", + "ror_ids": [ + "https://ror.org/016yc1h10" + ] + }, + { + "affiliation": "Penn Presbyterian Medical Center, Heart and Vascular Pavilion, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00swv7d52" + ] + }, + { + "affiliation": "Division of Environmental Health Sciences, University of California Berkeley School of Public Health, Berkeley, CA, USA", + "ror_ids": [ + "https://ror.org/01an7q238" + ] + }, + { + "affiliation": "Endocrinology and Metabolism Research Center, Institute of Basic and Clinical Physiology Science, & Physiology Research Center, Kerman University of Medical Sciences, Kerman, Iran", + "ror_ids": [ + "https://ror.org/02kxbqc24" + ] + }, + { + "affiliation": "Joint Key Laboratory of the Ministry of Education, Institute of Applied Physics and Materials Engineering, University of Macau, Macau, China", + "ror_ids": [ + "https://ror.org/01r4q9n85" + ] + }, + { + "affiliation": "College of Agriculture, Shihezi University, Shihezi, Xinjiang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04x0kvm78" + ] + }, + { + "affiliation": "Computer engineering and Control systems Department, Faculty of Engineering, Mansoura University, Mansoura, Egypt", + "ror_ids": [ + "https://ror.org/01k8vtd75" + ] + }, + { + "affiliation": "Department of Mathematics, Michigan State University, East Lansing, USA", + "ror_ids": [ + "https://ror.org/05hs6h993" + ] + }, + { + "affiliation": "Faculty of Sciences, Chouaib Doukkali University, El Jadida, Morocco", + "ror_ids": [ + "https://ror.org/036kgyt43" + ] + }, + { + "affiliation": "School of Economics and Trade, Kyungpook National University, Bukgu, Daegu, Korea", + "ror_ids": [ + "https://ror.org/040c17130" + ] + }, + { + "affiliation": "Departamento de Matemáticas, Universidad de Valéncia, Burjasot, Spain", + "ror_ids": [ + "https://ror.org/043nxc105" + ] + }, + { + "affiliation": "Department of Hematology, Qilu Hospital of Shandong University, Qingdao, Shandong, People’s Republic of China", + "ror_ids": [ + "https://ror.org/056ef9489" + ] + }, + { + "affiliation": "Plos, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/008zgvp64" + ] + }, + { + "affiliation": "National Clinical Research Center for Geriatric Diseases, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/007mrxy13" + ] + }, + { + "affiliation": "College of Engineering, Mathematics and Physical Sciences, University of Exeter, Exeter, UK", + "ror_ids": [ + "https://ror.org/03yghzc09" + ] + }, + { + "affiliation": "Pathology-DNA, Location Rijnstate Hospital, Arnhem, the Netherlands", + "ror_ids": [ + "https://ror.org/0561z8p38" + ] + }, + { + "affiliation": "Nanotechnology and Nanomedicine Lab-6 (IIRC), Department of Biosciences, Integral University, Lucknow, India", + "ror_ids": [ + "https://ror.org/039zd5s34" + ] + }, + { + "affiliation": "Department of Preventive Medicine, Graduate School of Medicine, The University of Tokyo, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/057zh3y96" + ] + }, + { + "affiliation": "Regional Children’s Hospital, Ekaterinburg, Russian Federation", + "ror_ids": [ + "https://ror.org/054p08670" + ] + }, + { + "affiliation": "BGI Tech Solutions, Co., Ltd. BGI Shenzhen, Shenzhen, China", + "ror_ids": [ + "https://ror.org/045pn2j94" + ] + }, + { + "affiliation": "Department of Artificial Intelligence, Faculty of Informatics, Eötvös Loránd University, Budapest, Hungary", + "ror_ids": [ + "https://ror.org/01jsq2704" + ] + }, + { + "affiliation": "i2SouI - Innovative Imaging in Surgical Oncology Ulm, University Hospital Ulm, Ulm, Germany", + "ror_ids": [ + "https://ror.org/05emabm63" + ] + }, + { + "affiliation": "Research Center for Advanced Materials, Faculty of Materials Engineering, Sahand University of Technology, Tabriz, Iran", + "ror_ids": [ + "https://ror.org/03wdrmh81" + ] + }, + { + "affiliation": "School of Livelihoods and Development, Tata Institute of Social Sciences, Hyderabad, India", + "ror_ids": [ + "https://ror.org/05jte2q37" + ] + }, + { + "affiliation": "Istituto di Chimica dei Composti Organometallici (ICCOM), CNR, Pisa, Italy", + "ror_ids": [ + "https://ror.org/04zaypm56", + "https://ror.org/02fkw1114" + ] + }, + { + "affiliation": "Lab 1. Cancer Research Center, Institute of Cancer Molecular and Cellular Biology, CSIC-University of Salamanca and CIBERONC, Salamanca, Spain", + "ror_ids": [ + "https://ror.org/02f40zc51" + ] + }, + { + "affiliation": "Department of Neurology, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, Henan, China", + "ror_ids": [ + "https://ror.org/056swr059" + ] + }, + { + "affiliation": "Neuroradiology Unit (DS), University Hospital of Padova, Padova, Italy", + "ror_ids": [ + "https://ror.org/05xrcj819" + ] + }, + { + "affiliation": "School of Environmental Sciences, University of East Anglia, Norwich, UK", + "ror_ids": [ + "https://ror.org/026k5mg93" + ] + }, + { + "affiliation": "Department of Chemistry, Jeju National University, Jeju-si, Jeju Province, Republic of Korea", + "ror_ids": [ + "https://ror.org/05hnb4n85" + ] + }, + { + "affiliation": "Doctoral School, Polytechnic University of Bucharest, Bucharest, Romania", + "ror_ids": [ + "https://ror.org/0558j5q12" + ] + }, + { + "affiliation": "Department of Biology, Central Tehran Branch, Islamic Azad University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01kzn7k21", + "https://ror.org/03a11m818" + ] + }, + { + "affiliation": "Pharmaceutical and Molecular Biotechnology Research Centre, SETU, Waterford, Ireland", + "ror_ids": [] + }, + { + "affiliation": "Academy of Language Studies, Centre of Foundation Studies, Universiti Teknologi MARA, Kampus Dengkil, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/05n8tts92" + ] + }, + { + "affiliation": "Ningbo No. 6 Hospital Affiliated to Ningbo University, Ningbo, China", + "ror_ids": [ + "https://ror.org/03et85d35", + "https://ror.org/054qnke07" + ] + }, + { + "affiliation": "School of Telecommunications Engineering, Xidian University, Xi’an, China", + "ror_ids": [ + "https://ror.org/05s92vm98" + ] + }, + { + "affiliation": "Department of CSE, National Institute of Technology Patna, Patna, India", + "ror_ids": [ + "https://ror.org/056wyhh33" + ] + }, + { + "affiliation": "Comparative Zoology, Institute for Biology, Humboldt-Universität zu Berlin, Berlin, Germany", + "ror_ids": [ + "https://ror.org/01hcx6992" + ] + }, + { + "affiliation": "Department of Pathology, The Research Institute of Fox Chase Cancer Center, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/0567t7073" + ] + }, + { + "affiliation": "Beijing Institute of Control Engineering, Beijing, China", + "ror_ids": [ + "https://ror.org/025397a59" + ] + }, + { + "affiliation": "School of Business and Economics, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/008xxew50" + ] + }, + { + "affiliation": "University of Nevada, Las Vegas, Las Vegas, NV, USA", + "ror_ids": [ + "https://ror.org/0406gha72" + ] + }, + { + "affiliation": "Department of Chemical Sciences, Faculty of Natural Sciences, Ariel University, Ariel, Israel", + "ror_ids": [ + "https://ror.org/03nz8qe97" + ] + }, + { + "affiliation": "Department of Neonatology, Ankara Etlik City Hospital, University of Health Sciences, Ankara, Turkey", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "Population Health Research Institute, St George’s University of London, London, UK", + "ror_ids": [ + "https://ror.org/040f08y74" + ] + }, + { + "affiliation": "Liaoning University of International Business and Economics, Dalian, China", + "ror_ids": [ + "https://ror.org/03m6hya42" + ] + }, + { + "affiliation": "Institute of Chronic Disease Risks Assessment, School of Nursing and Health Sciences, Henan University, Kaifeng, People’s Republic of China", + "ror_ids": [ + "https://ror.org/003xyzq10" + ] + }, + { + "affiliation": "Department of Speech and Language Therapy, Faculty of Health Sciences, Anadolu University, Eskişehir, Turkey", + "ror_ids": [ + "https://ror.org/05nz37n09" + ] + }, + { + "affiliation": "Federal Research and Training Centre for Forests, Natural Hazards and Landscape (BFW), Vienna, Austria", + "ror_ids": [ + "https://ror.org/05memys52" + ] + }, + { + "affiliation": "Graduate School of Biomedical Sciences, Tokushima University, Tokushima-Shi, Tokushima, Japan", + "ror_ids": [ + "https://ror.org/044vy1d05" + ] + }, + { + "affiliation": "Lurie Children's Hospital, Northwestern Memorial Hospital, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/009543z50", + "https://ror.org/03a6zw892" + ] + }, + { + "affiliation": "San Raffaele Hospital, Milan, Italy", + "ror_ids": [ + "https://ror.org/039zxt351" + ] + }, + { + "affiliation": "Department of Criminology, Criminal Law and Social Law, Knowledge and Research Platform On Privacy, Information Exchange, Law Enforcement and Surveillance (PIXLES), Institute for International Research On Criminal Policy (IRCP), Ghent University, , Belgium", + "ror_ids": [ + "https://ror.org/00cv9y106" + ] + }, + { + "affiliation": "Guangdong Provincial Key Laboratory of Single Cell Technology and Application, Guangzhou, China", + "ror_ids": [ + "https://ror.org/00swtqp09" + ] + }, + { + "affiliation": "Dipartimento di Agraria, University Mediterranea of Reggio Calabria, Reggio Calabria, Italy", + "ror_ids": [ + "https://ror.org/041sz8d87" + ] + }, + { + "affiliation": "Beijing Research Institute, China Telecom Corporation Limited, Beijing, China", + "ror_ids": [ + "https://ror.org/04vpesy43", + "https://ror.org/05p67dv18" + ] + }, + { + "affiliation": "State Key Lab. for Novel Software Technology, Nanjing University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "Division of Thoracic Surgery, Tochigi Cancer Center, Toshigi, Japan", + "ror_ids": [ + "https://ror.org/03eg72e39" + ] + }, + { + "affiliation": "Faculty of Cultural and Social Sciences, Cultural and Communication Sciences, Turkish-German University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/017bbc354" + ] + }, + { + "affiliation": "CT Building, The University of Newcastle, Callaghan, NSW, Australia", + "ror_ids": [ + "https://ror.org/00eae9z71" + ] + }, + { + "affiliation": "College of Science, Hunan Universtiy of Science and Engineering, Yongzhou, China", + "ror_ids": [ + "https://ror.org/04ymz0q33" + ] + }, + { + "affiliation": "Materials and Process Simulation Center, California Institute of Technology, Pasadena, CA, USA", + "ror_ids": [ + "https://ror.org/05dxps055" + ] + }, + { + "affiliation": "Department of CSE, Nitte Meenakshi Institute of Technology, Bengaluru, India", + "ror_ids": [ + "https://ror.org/00ha14p11" + ] + }, + { + "affiliation": "College of Safety Science and Engineering, Xi’an University of Science and Technology, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/046fkpt18" + ] + }, + { + "affiliation": "Department of Ophthalmology, Centre Hospitalier Intercommunal de Créteil 40, avenue de Verdun, Créteil, France", + "ror_ids": [ + "https://ror.org/04n1nkp35" + ] + }, + { + "affiliation": "School of Materials Science and Engineering at Chongqing Jiaotong University, Chongqing, China", + "ror_ids": [ + "https://ror.org/01t001k65" + ] + }, + { + "affiliation": "Department of Radio Physics and Electronics, University of Calcutta, Kolkata, West Bengal, India", + "ror_ids": [ + "https://ror.org/01e7v7w47" + ] + }, + { + "affiliation": "Institute of Laser Physics, Russian Academy of Sciences, Novosibirsk, Russia", + "ror_ids": [ + "https://ror.org/05qrfxd25", + "https://ror.org/00b5qjr76" + ] + }, + { + "affiliation": "CRUK Cambridge Institute, University of Cambridge, Cambridge, UK", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Center for Innovation Management, Xinjiang University, Urumqi, China", + "ror_ids": [ + "https://ror.org/059gw8r13" + ] + }, + { + "affiliation": "Université Paris-Saclay, ENS Paris-Saclay, CNRS, PPSM, Gif-Sur-Yvette, France", + "ror_ids": [ + "https://ror.org/03xjwb503" + ] + }, + { + "affiliation": "Department of Geology, American University of Beirut, Beirut, Lebanon", + "ror_ids": [ + "https://ror.org/04pznsd21" + ] + }, + { + "affiliation": "Department of Mathematics and Statistics in Medical Sciences, Kyoto Prefectural University of Medicine, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/028vxwa22" + ] + }, + { + "affiliation": "Cluster of Excellence PhoenixD (Photonics, Optics, and Engineering - Innovation Across Disciplines), Leibniz University Hannover, Hannover, Germany", + "ror_ids": [ + "https://ror.org/0304hq317" + ] + }, + { + "affiliation": "Department of Food Science and Nutrition & Kimchi Research Institute, Pusan National University, Busan, Republic of Korea", + "ror_ids": [ + "https://ror.org/01an57a31" + ] + }, + { + "affiliation": "Department of Mathematics and Computer Science, University of Ferrara, Ferrara, Italy", + "ror_ids": [ + "https://ror.org/041zkgm14" + ] + }, + { + "affiliation": "Department of Textile Engineering, Chemistry & Science, North Carolina State University, Raleigh, NC, USA", + "ror_ids": [ + "https://ror.org/04tj63d06" + ] + }, + { + "affiliation": "University of Padua, Padua, Italy", + "ror_ids": [ + "https://ror.org/00240q980" + ] + }, + { + "affiliation": "Universidad San Sebastián, Valdivia, Chile", + "ror_ids": [ + "https://ror.org/04jrwm652" + ] + }, + { + "affiliation": "College of Science and Engineering, Hamad Bin Khalifa University, Ar Rayyan, Qatar", + "ror_ids": [ + "https://ror.org/03eyq4y97" + ] + }, + { + "affiliation": "NUS Environmental Research Institute, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, University of California at Merced, Merced, California, USA", + "ror_ids": [ + "https://ror.org/00d9ah105" + ] + }, + { + "affiliation": "Department of Infectious Diseases, Bahrain Oncology Center, King Hamad University Hospital, Muharraq, Bahrain", + "ror_ids": [ + "https://ror.org/0538fxe03" + ] + }, + { + "affiliation": "Department of Industrial Engineering and Economics, School of Engineering, Tokyo Institute of Technology, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/0112mx960" + ] + }, + { + "affiliation": "Kinderradiologie, St. Josefskrankenhaus Freiburg, Freiburg, Deutschland", + "ror_ids": [ + "https://ror.org/05scpew87" + ] + }, + { + "affiliation": "Department of Cell Biology, Regeneration Next Initiative, Duke University Medical Center, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/03njmea73" + ] + }, + { + "affiliation": "Department of Chemistry and Physics, Agrifood Campus of International Excellence (ceiA3), University of Almeria, Almeria, Spain", + "ror_ids": [ + "https://ror.org/003d3xx08" + ] + }, + { + "affiliation": "Department of Radiology, Gansu Provincial Hospital, Lanzhou, Gansu, China", + "ror_ids": [ + "https://ror.org/02axars19" + ] + }, + { + "affiliation": "School of Kinesiology and Health, Queen’s University, Kingston, ON, Canada", + "ror_ids": [ + "https://ror.org/02y72wh86" + ] + }, + { + "affiliation": "Fac Sciences, Dept of Mathematics, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/008xxew50" + ] + }, + { + "affiliation": "New South Wales Department of Primary Industries, Sydney Institute of Marine Science, Mosman, NSW, Australia", + "ror_ids": [ + "https://ror.org/03ry2ah66", + "https://ror.org/050khh066" + ] + }, + { + "affiliation": "Department of Neurosurgery, Hospital Adventista de Manaus, Amazonas, Brazil", + "ror_ids": [ + "https://ror.org/02jkz3g13" + ] + }, + { + "affiliation": "UniSA STEM, University of South Australia, Adelaide, SA, Australia", + "ror_ids": [ + "https://ror.org/01p93h210" + ] + }, + { + "affiliation": "Department of Botany, Patliputra University, Patna, Bihar, India", + "ror_ids": [ + "https://ror.org/04rjeh836" + ] + }, + { + "affiliation": "St. Francis Hospital and Heart Center, Roslyn, NY, USA", + "ror_ids": [ + "https://ror.org/00mj4n083" + ] + }, + { + "affiliation": "South-Eastern Finland University of Applied Sciences, Mikkeli, Finland", + "ror_ids": [ + "https://ror.org/051v6v138" + ] + }, + { + "affiliation": "Pharmaceutical Microbiology Department, Faculty of Pharmacy, Alexandria University, Alexandria, Egypt", + "ror_ids": [ + "https://ror.org/00mzz1w90" + ] + }, + { + "affiliation": "Servei de Medicina Intensiva, Hospital Universitari Arnau de Vilanova, Institut de Recerca Biomèdica de Lleida, Universitat de Lleida, Lleida, Spain", + "ror_ids": [ + "https://ror.org/050c3cw24", + "https://ror.org/03mfyme49", + "https://ror.org/01p3tpn79" + ] + }, + { + "affiliation": "Departamento de Zootecnia, Universidad Autónoma Chapingo, Texcoco, Mexico", + "ror_ids": [ + "https://ror.org/04ctjby61" + ] + }, + { + "affiliation": "School of Finance and Accounting, Department of Economics, University of Vaasa, Vaasa, Finland", + "ror_ids": [ + "https://ror.org/03769b225" + ] + }, + { + "affiliation": "Department of Radiology, University of California Davis, Davis, CA, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Área do Conhecimento de Ciências Exatas e Engenharias, Universidade de Caxias do Sul, Caxias do Sul, RS, Brazil", + "ror_ids": [ + "https://ror.org/05rpzs058" + ] + }, + { + "affiliation": "Naturalis Biodiversity Center, Leiden, Netherlands", + "ror_ids": [ + "https://ror.org/0566bfb96" + ] + }, + { + "affiliation": "College of Information and Computer Sciences, University of Massachusetts Amherst, Amherst, MA, USA", + "ror_ids": [ + "https://ror.org/0072zz521" + ] + }, + { + "affiliation": "School of Information Science and Technology, Guangdong University of Foreign Studies, Guangzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00fhc9y79" + ] + }, + { + "affiliation": "Oncology Division, Department of Biomedical and Clinical Science, Faculty of Medicine, Linköping University, Linköping, Sweden", + "ror_ids": [ + "https://ror.org/05ynxx418" + ] + }, + { + "affiliation": "Department of Curriculum and Instruction, University of Minnesota, Minneapolis, MN, USA", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "Qingdao Joint Institute of Marine Meteorology, Chinese Academy of Meteorological Sciences, Qingdao, PR China", + "ror_ids": [ + "https://ror.org/034b53w38" + ] + }, + { + "affiliation": "Institute for Regenerative Medicine, Shanghai East Hospital, School of Life Sciences and Technology, Tongji University, Shanghai, China", + "ror_ids": [ + "https://ror.org/038xmzj21", + "https://ror.org/03rc6as71" + ] + }, + { + "affiliation": "Division of Applied Life Sciences and Plant Molecular Biology and Biotechnology Research Center (PMBBRC), Gyeongsang National University, Jinju, Republic of Korea", + "ror_ids": [ + "https://ror.org/00saywf64" + ] + }, + { + "affiliation": "Croatian Institute for Brain Research, Center of Research Excellence for Basic, Clinical and Translational Neuroscience, University of Zagreb, School of Medicine, Zagreb, Croatia", + "ror_ids": [ + "https://ror.org/00mv6sv71" + ] + }, + { + "affiliation": "The Economics School of Louvain, Université Catholique de Louvain, Ottignies-Louvain-la-Neuve, Belgium", + "ror_ids": [ + "https://ror.org/02495e989" + ] + }, + { + "affiliation": "Department of Kinesiology, Faculty of Medicine, Université Laval, Québec, Canada", + "ror_ids": [ + "https://ror.org/04sjchr03" + ] + }, + { + "affiliation": "Department of Computer Engineering, J.C. BOSE University of Science and Technology, YMCA, Faridabad, Haryana, India", + "ror_ids": [ + "https://ror.org/014jqnm52" + ] + }, + { + "affiliation": "Division of Neurosurgery, Department of Clinical Neurosciences, University of Cambridge-Professor-Emeritus of Brain Physics, Cambridge, UK", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Department of Agricultural and Environmental Science, University of Milan, Milan, Italy", + "ror_ids": [ + "https://ror.org/00wjc7c48" + ] + }, + { + "affiliation": "Research and Development Centre, Indian Oil Corporation Ltd, Faridabad, Haryana, India", + "ror_ids": [ + "https://ror.org/02s9tm513" + ] + }, + { + "affiliation": "Centre of Physics of Minho and Porto Universities (CF-UM-UP), Laboratory for Materials and Emergent Technologies (LAPMET), University of Minho, Braga, Portugal", + "ror_ids": [ + "https://ror.org/037wpkx04" + ] + }, + { + "affiliation": "DKRZ/IPCC DDC German Climate Computing Center (DKRZ), Hamburg, Germany", + "ror_ids": [ + "https://ror.org/03ztgj037" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, NIT Durgapur, Durgapur, India", + "ror_ids": [ + "https://ror.org/04ds0jm32" + ] + }, + { + "affiliation": "Department of Marine Geology and Geophysics, Cochin University of Science and Technology, Cochin, India", + "ror_ids": [ + "https://ror.org/00a4kqq17" + ] + }, + { + "affiliation": "Heilongjiang Provincial Key Laboratory of Prevention and Control of Bovine Diseases, College of Animal Science and Veterinary Medicine, Heilongjiang Bayi Agricultural University, Daqing, Heilongjiang, China", + "ror_ids": [ + "https://ror.org/030jxf285" + ] + }, + { + "affiliation": "Geodetic Observatory Wettzell, Federal Agency of Cartography and Geodesy, Bad Kötzting, Germany", + "ror_ids": [ + "https://ror.org/01q6zce06" + ] + }, + { + "affiliation": "School of Biomedical Sciences, The University of Hong Kong, Pok Fu Lam, Hong Kong", + "ror_ids": [ + "https://ror.org/02zhqgq86" + ] + }, + { + "affiliation": "Endocrinology Unit, Medical-Geriatric Department, Careggi University Hospital, Florence, Italy", + "ror_ids": [ + "https://ror.org/02crev113" + ] + }, + { + "affiliation": "Department of Computer Science, BINUS Graduate Program - Doctor of Computer Science, Bina Nusantara University, Jakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03zmf4s77" + ] + }, + { + "affiliation": "School of Mathematics and Statistics, University of Sydney, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Institute of New Materials, Guangdong Academy of Sciences, National Engineering Research Center of Powder Metallurgy of Titanium & Rare Metals, Guangdong Provincial Key Laboratory of Metal Toughening Technology and Application, Guangzhou, China", + "ror_ids": [ + "https://ror.org/00swtqp09", + "https://ror.org/01g9hkj35" + ] + }, + { + "affiliation": "Electronics and Communication Engineering Department, Dayananda Sagar College of Engineering, Bengaluru, India", + "ror_ids": [ + "https://ror.org/00ha14p11" + ] + }, + { + "affiliation": "Centre for Theoretical Study, Charles University, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/024d6js02" + ] + }, + { + "affiliation": "Graduate School Department of Toxicology, Daegu Catholic University, Gyeongsan, Republic of Korea", + "ror_ids": [ + "https://ror.org/04fxknd68" + ] + }, + { + "affiliation": "Department of Cardiology, Tokyo Bay Urayasu Ichikawa Medical Center, Urayasu, Japan", + "ror_ids": [ + "https://ror.org/00y3cpn63" + ] + }, + { + "affiliation": "Hospital Universitario 12 de Octubre, Madrid, Spain", + "ror_ids": [ + "https://ror.org/00qyh5r35" + ] + }, + { + "affiliation": "Civil Engineering Department, Indian Institute of Science, Bengaluru, India", + "ror_ids": [ + "https://ror.org/04dese585" + ] + }, + { + "affiliation": "School of Law (IT Law programme), University of Tartu, Tartu, Estonia", + "ror_ids": [ + "https://ror.org/03z77qz90" + ] + }, + { + "affiliation": "Department of Epidemiology and Health Statistics, Fujian Provincial Key Laboratory of Environment Factors and Cancer, School of Public Health, Fujian Medical University, Fuzhou Fujian Province, China", + "ror_ids": [ + "https://ror.org/050s6ns64" + ] + }, + { + "affiliation": "The BioRobotics Institute, Scuola Superiore Sant’Anna, Pisa, Italy", + "ror_ids": [ + "https://ror.org/025602r80" + ] + }, + { + "affiliation": "Department of Social Medicine, China Medical University, Taichung, Taiwan", + "ror_ids": [ + "https://ror.org/00v408z34" + ] + }, + { + "affiliation": "Faculty of Science, Sydney School of Veterinary Science, University of Sydney, Camden, NSW, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Colleage of Computer Science and Technology, Qingdao University, Qingdao, China", + "ror_ids": [ + "https://ror.org/021cj6z65" + ] + }, + { + "affiliation": "Department of Civil Engineering, SRM Institute of Science and Technology, Chengalpattu, India", + "ror_ids": [ + "https://ror.org/050113w36" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Indian Institute of Technology Roorkee, Roorkee, Uttarakhand, India", + "ror_ids": [ + "https://ror.org/00582g326" + ] + }, + { + "affiliation": "Beijing Key Laboratory of Geriatric Cognitive Disorders, Beijing, China", + "ror_ids": [ + "https://ror.org/013xs5b60" + ] + }, + { + "affiliation": "Radiology Department, Oxford University Hospitals NHS Foundation Trust, Oxford, UK", + "ror_ids": [ + "https://ror.org/03h2bh287" + ] + }, + { + "affiliation": "Department of Physics and Beijing Key Laboratory of Optoelectronic Functional Materials & Micro-nano Devices, Renmin University of China, Beijing, PR China", + "ror_ids": [ + "https://ror.org/041pakw92" + ] + }, + { + "affiliation": "Hematology and Haemotherapy Department, Hospital Universitario de Navarra, Pamplona, Navarra, Spain", + "ror_ids": [ + "https://ror.org/03phm3r45" + ] + }, + { + "affiliation": "State Key Laboratory of Quantum Optics and Quantum Optics Devices, Institute of Laser Spectroscopy, Shanxi University, Taiyuan, Shanxi, China", + "ror_ids": [ + "https://ror.org/03y3e3s17" + ] + }, + { + "affiliation": "ECE Department, Jaypee Institute of Information Technology, Noida, India", + "ror_ids": [ + "https://ror.org/05sttyy11" + ] + }, + { + "affiliation": "Royal College of Surgeons in Ireland, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/01hxy9878" + ] + }, + { + "affiliation": "Department of Economics and Development, Faculty of Tropical AgriSciences, Czech University of Life Sciences Prague, Praha - Suchdol, Czech Republic", + "ror_ids": [ + "https://ror.org/0415vcw02" + ] + }, + { + "affiliation": "Department of Chemistry, Faculty of Science, Assiut University, Assiut, Egypt", + "ror_ids": [ + "https://ror.org/01jaj8n65" + ] + }, + { + "affiliation": "Department of Physics, Faculty of Science, University of Gujrat, Gujrat, Pakistan", + "ror_ids": [ + "https://ror.org/01xe5fb92" + ] + }, + { + "affiliation": "Basic Science Department, School of Engineering, Canadian International College, New Cairo, Egypt", + "ror_ids": [ + "https://ror.org/03374t109" + ] + }, + { + "affiliation": "Division of Systems Biology, Nagoya University Graduate School of Medicine, Showa-ku, Nagoya, Japan", + "ror_ids": [ + "https://ror.org/04chrp450" + ] + }, + { + "affiliation": "Department of Physiotherapy and Rehabilitation, Faculty of Health Sciences, Tarsus University, Mersin, Turkey", + "ror_ids": [ + "https://ror.org/0397szj42" + ] + }, + { + "affiliation": "Department of Pharmacology, University of California San Diego, La Jolla, CA, USA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "Division of Cardiology, Cardiocentro Ticino Institute, Lugano, Switzerland", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "Faculty of Electrical Engineering and Information Technology, Institute of Theoretical Electrical Engineering, Ruhr University Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Department of Cardiology, Zhongshan Hospital, Fudan University and Shanghai Institute of Cardiovascular Diseases, Shanghai, China", + "ror_ids": [ + "https://ror.org/032x22645", + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "Commonwealth Scientific and Industrial Research Organisation, Adelaide, Australia", + "ror_ids": [ + "https://ror.org/03qn8fb07" + ] + }, + { + "affiliation": "Departamento de Genética, Ecologia e Evolução, Instituto de Ciências Biológicas - Bloco E3 - Sala 175, Universidade Federal de Minas Gerais - UFMG, Belo Horizonte, Brazil", + "ror_ids": [ + "https://ror.org/0176yjw32" + ] + }, + { + "affiliation": "Division of Communicable Diseases, Department of Disease Control, Ministry of Public Health, Nonthaburi, Thailand", + "ror_ids": [ + "https://ror.org/03rn0z073" + ] + }, + { + "affiliation": "Department of Physiotherapy and Rehabilitation Sciences, University of Health and Allied Sciences, Ho, Ghana", + "ror_ids": [ + "https://ror.org/054tfvs49" + ] + }, + { + "affiliation": "Department of Child and Adolescent Psychiatry/Psychology, Erasmus MC—Sophia Children’s Hospital, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/047afsm11" + ] + }, + { + "affiliation": "School of New Materials and Chemical Engineering, Beijing Institute of Petrochemical Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/025s55q11" + ] + }, + { + "affiliation": "Cancer Centre for Children, The Children’s Hospital at Westmead, Sydney, Australia", + "ror_ids": [ + "https://ror.org/05k0s5494" + ] + }, + { + "affiliation": "Faculty of Technical Sciences, University of Novi Sad, Novi Sad, Serbia", + "ror_ids": [ + "https://ror.org/00xa57a59" + ] + }, + { + "affiliation": "Department of General Surgery, Faculty of Medicine, Aswan University, Aswan, Egypt", + "ror_ids": [ + "https://ror.org/048qnr849" + ] + }, + { + "affiliation": "Fakultät für Bildungswissenschaften, Universität Duisburg-Essen, Essen, Deutschland", + "ror_ids": [ + "https://ror.org/04mz5ra38" + ] + }, + { + "affiliation": "Research Institute of Energy, Environment, and Geology, Hokkaido Research Organization, Sapporo, Hokkaido, Japan", + "ror_ids": [ + "https://ror.org/026j3ca82" + ] + }, + { + "affiliation": "Institut Für Mineralogie, Universität Münster, Münster, Germany", + "ror_ids": [ + "https://ror.org/00pd74e08" + ] + }, + { + "affiliation": "Diabetes Research Center, Endocrinology and Metabolism Clinical Sciences Institute, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Biomedical Engineering Group, University of Seville, Seville, Spain", + "ror_ids": [ + "https://ror.org/03yxnpp24" + ] + }, + { + "affiliation": "School of Biomedical Sciences, Makerere University College of Health Sciences, Kampala, Uganda", + "ror_ids": [ + "https://ror.org/03dmz0111" + ] + }, + { + "affiliation": "School of Electrical and Automation Engineering, Nanjing Normal University, Nanjing, China", + "ror_ids": [ + "https://ror.org/036trcv74" + ] + }, + { + "affiliation": "Medical Oncology Department, Hospital Universitario de Getafe, Madrid, Spain", + "ror_ids": [ + "https://ror.org/01ehe5s81" + ] + }, + { + "affiliation": "Faculty of Mechanical Engineering, Brno University of Technology, Brno, Czech Republic", + "ror_ids": [ + "https://ror.org/03613d656" + ] + }, + { + "affiliation": "School of Forest Fisheries, and Geomatics Sciences, University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Fondazione IRCSS - Istituto Nazionale Tumori, Milan, Italy", + "ror_ids": [ + "https://ror.org/05dwj7825" + ] + }, + { + "affiliation": "Department of Aerospace Engineering, North Carolina State University, Raleigh, NC, USA", + "ror_ids": [ + "https://ror.org/04tj63d06" + ] + }, + { + "affiliation": "Faculty of Nuclear Sciences and Physical Engineering, Czech Technical University in Prague, Prague, Czech Republic", + "ror_ids": [ + "https://ror.org/03kqpb082" + ] + }, + { + "affiliation": "Radiation Processing Technology Division, Malaysian Nuclear Agency, Kajang, Selangor, Malaysia", + "ror_ids": [ + "https://ror.org/02p9mk956" + ] + }, + { + "affiliation": "Department of Surgery, City of Hope, Duarte, CA, USA", + "ror_ids": [ + "https://ror.org/00w6g5w60" + ] + }, + { + "affiliation": "Department of Internal Medicine, Division of Cardiology, E-Da Hospital, Kaohsiung, Taiwan", + "ror_ids": [ + "https://ror.org/00eh7f421" + ] + }, + { + "affiliation": "São Paulo State University - UNESP/SP, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/00987cb86" + ] + }, + { + "affiliation": "Department of Internal Medicine, University of Health Sciences, Antalya Training and Research Hospital, Antalya, Turkey", + "ror_ids": [ + "https://ror.org/02h67ht97" + ] + }, + { + "affiliation": "Department of Behavioral Sciences, University of Pécs Medical School, Pecs, Hungary", + "ror_ids": [ + "https://ror.org/037b5pv06" + ] + }, + { + "affiliation": "Universidade de Brasília, Brasília, Brazil", + "ror_ids": [ + "https://ror.org/02xfp8v59" + ] + }, + { + "affiliation": "Cardiology Department, School of Medicine, Ordu University, Ordu, Turkey", + "ror_ids": [ + "https://ror.org/04r0hn449" + ] + }, + { + "affiliation": "State Key Laboratory of Biocontrol, School of Life Sciences, Sun Yat-Sen University, Guangzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0064kty71" + ] + }, + { + "affiliation": "Academy of Machinery Science and Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/04gpxrn68" + ] + }, + { + "affiliation": "Instituto de Investigación Sanitaria de Navarra (IdISNA), Cancer Center Clínica Universidad de Navarra (CCUN), Pamplona, Spain", + "ror_ids": [ + "https://ror.org/023d5h353", + "https://ror.org/03phm3r45" + ] + }, + { + "affiliation": "Montreal Neurological Institute, McGill University, Montreal, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438", + "https://ror.org/05ghs6f64" + ] + }, + { + "affiliation": "BioNTech SE, Mainz, Germany", + "ror_ids": [ + "https://ror.org/04fbd2g40" + ] + }, + { + "affiliation": "Hayatabad Medical Complex, Peshawar, Pakistan", + "ror_ids": [ + "https://ror.org/03vpd6e34" + ] + }, + { + "affiliation": "Department of Orthopedics, Wuhan Fourth Hospital, Wuhan, China", + "ror_ids": [ + "https://ror.org/00qavst65" + ] + }, + { + "affiliation": "Takeda Development Center Americas, Inc. (TDCA), Lexington, MA, USA", + "ror_ids": [ + "https://ror.org/03bygaq51" + ] + }, + { + "affiliation": "School of Materials Science and Hydrogen Energy, Foshan University, Foshan, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02xvvvp28" + ] + }, + { + "affiliation": "Vascular Cognitive Impairment and Neurodegeneration Program, Oklahoma Center for Geroscience and Healthy Brain Aging, Department of Neurosurgery, Health Sciences Center, University of Oklahoma, Oklahoma City, OK, USA", + "ror_ids": [ + "https://ror.org/02aqsxs83", + "https://ror.org/0457zbj98" + ] + }, + { + "affiliation": "Beijing Key Laboratory for Source Control Technology of Water Pollution, College of Environmental Science and Engineering, Beijing Forestry University, Beijing, China", + "ror_ids": [ + "https://ror.org/04xv2pc41" + ] + }, + { + "affiliation": "Chinese-Israeli International Center for Research and Training in Agriculture, China Agricultural University, Beijing, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04v3ywz14" + ] + }, + { + "affiliation": "Instituto de Investigaciones Clínicas “Dr. Américo Negrette,” Facultad de Medicina, Universidad del Zulia, Maracaibo, Zulia, Venezuela", + "ror_ids": [ + "https://ror.org/04vy5s568" + ] + }, + { + "affiliation": "School of Software, Xinjiang University, Urumqi, Xinjiang, China", + "ror_ids": [ + "https://ror.org/059gw8r13" + ] + }, + { + "affiliation": "Department of Epileptology, University Hospital Bonn, Bonn, Germany", + "ror_ids": [ + "https://ror.org/01xnwqx93" + ] + }, + { + "affiliation": "Key Laboratory of Ocean and Marginal Sea Geology, South China Sea Institute of Oceanology, Chinese Academy of Sciences, Guangzhou, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/0192yj155" + ] + }, + { + "affiliation": "Weizmann Institute of Science, Rehovot, Israel", + "ror_ids": [ + "https://ror.org/0316ej306" + ] + }, + { + "affiliation": "School of Social Sciences, Ramaiah University of Applied Sciences, Bengaluru, India", + "ror_ids": [ + "https://ror.org/02anh8x74" + ] + }, + { + "affiliation": "Graduate Program in Ecology, Universidade Federal do Rio Grande do Norte Campus, Natal, RN, Brazil", + "ror_ids": [ + "https://ror.org/04wn09761" + ] + }, + { + "affiliation": "Department of Electronics and Communication Engineering, National Institute of Technology Rourkela, Rourkela, Odisha, India", + "ror_ids": [ + "https://ror.org/011gmn932" + ] + }, + { + "affiliation": "INSERM UMR1163, Institut Imagine, Université Paris-Cité, Paris, France", + "ror_ids": [ + "https://ror.org/05rq3rb55", + "https://ror.org/05f82e368", + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Medical Imaging Centre of Southwest Finland, Turku University Hospital, Turku, Finland", + "ror_ids": [ + "https://ror.org/05dbzj528" + ] + }, + { + "affiliation": "Chemical & Biochemical Sciences. Green Process Engineering, CBS, Mohammed VI Polytechnic University, Ben Guerir, Morocco", + "ror_ids": [ + "https://ror.org/03xc55g68" + ] + }, + { + "affiliation": "School of Engineering, and CMUP, Polytechnic of Porto, Porto, Portugal", + "ror_ids": [ + "https://ror.org/04988re48" + ] + }, + { + "affiliation": "School for Resource and Environmental Studies, Dalhousie University, Halifax, NS, Canada", + "ror_ids": [ + "https://ror.org/01e6qks80" + ] + }, + { + "affiliation": "Swinburne Business School, Swinburne University of Technology, Hawthorn, VIC, Australia", + "ror_ids": [ + "https://ror.org/031rekg67" + ] + }, + { + "affiliation": "Department of Creative Technologies and Product Design, National Taipei University of Business, Taoyuan, Taiwan", + "ror_ids": [ + "https://ror.org/029hrv109" + ] + }, + { + "affiliation": "Department of Gastroenterological Surgery, Nagoya City University Hospital, Nagoya, Aichi, Japan", + "ror_ids": [ + "https://ror.org/02adg5v98" + ] + }, + { + "affiliation": "Department of Demography and Population Studies, University of Witwatersrand, Johannesburg, South Africa", + "ror_ids": [ + "https://ror.org/03rp50x72" + ] + }, + { + "affiliation": "Institute of Mathematics and Mathematical Modeling, Almaty, Kazakhstan", + "ror_ids": [ + "https://ror.org/05xx3wf87" + ] + }, + { + "affiliation": "Institut für Erziehungswissenschaften, Johannes Gutenberg Universität Mainz, Mainz, Deutschland", + "ror_ids": [ + "https://ror.org/023b0x485" + ] + }, + { + "affiliation": "Oakland University, Rochester, MI, USA", + "ror_ids": [ + "https://ror.org/01ythxj32" + ] + }, + { + "affiliation": "Space Application Centre, ISRO, Ahmedabad, Gujarat, India", + "ror_ids": [ + "https://ror.org/00cwrns71" + ] + }, + { + "affiliation": "School of Materials Science & Engineering, North Minzu University, Yinchuan, China", + "ror_ids": [ + "https://ror.org/05xjevr11" + ] + }, + { + "affiliation": "UCL Wellcome/EPSRC Centre for Interventional and Surgical Sciences, Department of Medical Physics and Biomedical Engineering, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895", + "https://ror.org/03r42r570" + ] + }, + { + "affiliation": "Hettinger Research Extension Center, North Dakota State University, Hettinger, ND, USA", + "ror_ids": [ + "https://ror.org/05h1bnb22" + ] + }, + { + "affiliation": "Department of Food Hygiene, Ayatollah Amoli Branch, Islamic Azad University, Amol, Iran", + "ror_ids": [ + "https://ror.org/02558wk32" + ] + }, + { + "affiliation": "KPR Institute of Engineering and Technology, Coimbatore, India", + "ror_ids": [ + "https://ror.org/02q9f3a53" + ] + }, + { + "affiliation": "Inner Mongolia Key Laboratory of Dairy Biotechnology and Engineering, Inner Mongolia Agricultural University, Hohhot, Inner Mongolia, China", + "ror_ids": [ + "https://ror.org/015d0jq83" + ] + }, + { + "affiliation": "Section of Rheumatology, Department of Medicine, University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "School of Naval Architecture, Ocean, and Energy Power Engineering, Wuhan University of Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/03fe7t173" + ] + }, + { + "affiliation": "Key Laboratory of Vegetation Restoration and Management of Degraded Ecosystems & CAS Engineering Laboratory for Vegetation Ecosystem Restoration on Islands and Coastal Zones, South China Botanical Garden, Chinese Academy of Sciences, Guangzhou, China", + "ror_ids": [ + "https://ror.org/01xqdxh54", + "https://ror.org/034t30j35" + ] + }, + { + "affiliation": "School of Environment and Sustainable Development, Central University of Gujarat, Gandhinagar, Gujarat, India", + "ror_ids": [ + "https://ror.org/04y3rfg91" + ] + }, + { + "affiliation": "School of Iron and Steel, Soochow University, Suzhou, Jiangsu, China", + "ror_ids": [ + "https://ror.org/05t8y2r12" + ] + }, + { + "affiliation": "School of Civil Engineering and Communication, North China University of Water Resources and Electric Power, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/03acrzv41" + ] + }, + { + "affiliation": "Chair of Cognitive Science, Department of Humanities, Social and Political Sciences, ETH Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/05a28rw58" + ] + }, + { + "affiliation": "Department of Cardiology, Beijing Tsinghua Changgung Hospital, School of Clinical Medicine, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Simulations Plus, Inc., Lancaster, California, USA", + "ror_ids": [ + "https://ror.org/02p0yhm49" + ] + }, + { + "affiliation": "Inorganic Chemistry and Catalysis Group, Debye Institute for Nanomaterials Science, Utrecht University, Utrecht, the Netherlands", + "ror_ids": [ + "https://ror.org/04pp8hn57" + ] + }, + { + "affiliation": "Department of Chemical Engineering, University of Western Macedonia, Koila Kozani, Greece", + "ror_ids": [ + "https://ror.org/00a5pe906" + ] + }, + { + "affiliation": "Department of Chemistry, Ayya Nadar Janaki Ammal College, Sivakasi, Tamil Nadu, India", + "ror_ids": [ + "https://ror.org/04c8e9019" + ] + }, + { + "affiliation": "Google Research, Brain Team, Google, Mountain View, CA, USA", + "ror_ids": [ + "https://ror.org/00njsd438" + ] + }, + { + "affiliation": "Department of Neuroscience, Yale School of Medicine, New Haven, CT, USA", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "School of Resource & Environment and Safety Engineering, University of South China, Hengyang, Hunan Province, China", + "ror_ids": [ + "https://ror.org/03mqfn238" + ] + }, + { + "affiliation": "Department of Tissue Engineering and Regenerative Medicine, School of Advanced Technologies in Medicine, Mazandaran University of Medical Sciences, Sari, Iran", + "ror_ids": [ + "https://ror.org/02wkcrp04" + ] + }, + { + "affiliation": "Department of Environmental Health, School of Public Health, University of São Paulo, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/036rp1748" + ] + }, + { + "affiliation": "Center of Excellence in Cognitive Neuropsychology, Shahid Beheshti University, Tehran, Iran", + "ror_ids": [ + "https://ror.org/0091vmj44" + ] + }, + { + "affiliation": "Faculty of Science and Technology of Sidi Bouzid, University of Kairouan, University Campus Agricultural City, Sidi Bouzid, Tunisia", + "ror_ids": [ + "https://ror.org/024mpte60" + ] + }, + { + "affiliation": "Service de Médecine Intensive Réanimation, Hôpitaux Universitaires Henri Mondor-Albert Chenevier, Département Médico-Universitaire Médecine, AP-HP, Créteil, France", + "ror_ids": [ + "https://ror.org/00pg5jh14", + "https://ror.org/033yb0967" + ] + }, + { + "affiliation": "Department of Child and Adolescent Psychiatry, Schulich School of Medicine and Dentistry, Western University, London, ON, Canada", + "ror_ids": [ + "https://ror.org/02grkyz14" + ] + }, + { + "affiliation": "State Key Laboratory of Structural Chemistry, Fujian Institute of Research on the Structure of Matter, Chinese Academy of Sciences, Fuzhou, Fujian, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/02j89k719" + ] + }, + { + "affiliation": "University of Kaiserslautern-Landau, Kaiserslautern, Germany", + "ror_ids": [ + "https://ror.org/04zrf7b53" + ] + }, + { + "affiliation": "FEHM-Lab (Freshwater Ecology, Hydrology and Management), Departament de Biologia Evolutiva, Ecologia i Ciències Ambientals, Facultat de Biologia, Institut de Recerca de l’Aigua (IdRA), Universitat de Barcelona, Barcelona, Spain", + "ror_ids": [ + "https://ror.org/021018s57" + ] + }, + { + "affiliation": "Henan Academy of Agricultural Sciences, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/00vdyrj80" + ] + }, + { + "affiliation": "Department of Radiology, The Affiliated Hospital of Qingdao University, Qingdao, Shandong, China", + "ror_ids": [ + "https://ror.org/026e9yy16" + ] + }, + { + "affiliation": "Poznan University of Technology, Poznan, Poland", + "ror_ids": [ + "https://ror.org/00p7p3302" + ] + }, + { + "affiliation": "Centre for Veterinary Epidemiology and Risk Analysis, School of Veterinary Medicine, University College Dublin, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/05m7pjf47" + ] + }, + { + "affiliation": "Pharmacy Course, Estacio São Luís University Center, São Luís, Maranhão, Brazil", + "ror_ids": [ + "https://ror.org/02vej5573" + ] + }, + { + "affiliation": "Department of Computer Engineering, Faculty of Technology, Marmara University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/02kswqa67" + ] + }, + { + "affiliation": "Early Clinical & Bioanalytical Research, ICON, Salt Lake City, UT, USA", + "ror_ids": [ + "https://ror.org/0188v8a70" + ] + }, + { + "affiliation": "School of Physics, Clinical and Optometric Sciences, Faculty of Science, Technological University Dublin, Dublin, Ireland", + "ror_ids": [ + "https://ror.org/04t0qbt32" + ] + }, + { + "affiliation": "Department of Pharmacy, Sint Maartenskliniek, Nijmegen, the Netherlands", + "ror_ids": [ + "https://ror.org/0454gfp30" + ] + }, + { + "affiliation": "Food Engineering Department, Faculty of Engineering, Istanbul Aydin University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/00qsyw664" + ] + }, + { + "affiliation": "ITR - Laboratory for Integrative and Translational Research in Population Health, University of Porto, Porto, Portugal", + "ror_ids": [ + "https://ror.org/043pwc612" + ] + }, + { + "affiliation": "Department of Obstetrics and Gynecology, LMU University Hospital, LMU Munich, Munich, Germany", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "Department of Biochemistry, Faculty of Dentistry, Marmara University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/02kswqa67" + ] + }, + { + "affiliation": "Centre for Innovative Medical Technology, Odense University Hospital, Odense, Denmark", + "ror_ids": [ + "https://ror.org/00ey0ed83" + ] + }, + { + "affiliation": "Agencia de Investigación de la Sociedad Española de Cardiología (AISEC), Madrid, Spain", + "ror_ids": [ + "https://ror.org/05d9ms657" + ] + }, + { + "affiliation": "Department of Dermatology, CHA Bundang Medical Center, CHA University School of Medicine, Seongnam, South Korea", + "ror_ids": [ + "https://ror.org/04nbqb988", + "https://ror.org/04yka3j04" + ] + }, + { + "affiliation": "Department of Electronics and Communication, Institute of Technology, Nirma University, Ahmedabad, India", + "ror_ids": [ + "https://ror.org/05qkq7x38" + ] + }, + { + "affiliation": "Department of Health I, Universidade Estadual Do Sudoeste da Bahia (UESB), Jequié, Bahia, Brazil", + "ror_ids": [ + "https://ror.org/02rg6ka44" + ] + }, + { + "affiliation": "Faculty of Education, Shandong Normal University, Jinan, China", + "ror_ids": [ + "https://ror.org/01wy3h363" + ] + }, + { + "affiliation": "School of Humanities and Social Science, The Chinese University of Hong Kong (Shenzhen), Shenzhen, China", + "ror_ids": [ + "https://ror.org/00t33hh48", + "https://ror.org/02d5ks197" + ] + }, + { + "affiliation": "College of Environmental Science and Engineering, China West Normal University, Nanchong, China", + "ror_ids": [ + "https://ror.org/04s99y476" + ] + }, + { + "affiliation": "School of Marxism, Shanghai Maritime University, Shanghai, China", + "ror_ids": [ + "https://ror.org/04z7qrj66" + ] + }, + { + "affiliation": "Department of Chemical Engineering and Biotechnology, National Taipei University of Technology, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/00cn92c09" + ] + }, + { + "affiliation": "Department of Radiological Technology, Yamaguchi University Hospital, Yamaguchi, Japan", + "ror_ids": [ + "https://ror.org/02dgmxb18" + ] + }, + { + "affiliation": "‘Materials + Technologies’ Research Group (GMT), Department of Chemical and Environmental Engineering, Faculty of Engineering of Gipuzkoa, University of the Basque Country, Donostia-San Sebastian, Spain", + "ror_ids": [ + "https://ror.org/000xsnr85" + ] + }, + { + "affiliation": "Department of Pharmacokinetics and Clinical Pharmacy, Faculty of Pharmacy, University of Belgrade, Belgrade, Serbia", + "ror_ids": [ + "https://ror.org/02qsmb048" + ] + }, + { + "affiliation": "Pituitary Center, Istanbul University-Cerrahpasa, Istanbul, Türkiye", + "ror_ids": [ + "https://ror.org/01dzn5f42" + ] + }, + { + "affiliation": "Department of Environmental Medicine, New York University School of Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/0190ak572" + ] + }, + { + "affiliation": "College of Agronomy, Henan Agricultural University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04eq83d71" + ] + }, + { + "affiliation": "Abbe Center of Photonics, Friedrich Schiller University Jena, Jena, Germany", + "ror_ids": [ + "https://ror.org/05qpz1x62" + ] + }, + { + "affiliation": "TUBITAK National Metrology Institute (TUBITAK UME), Kocaeli, Turkey", + "ror_ids": [ + "https://ror.org/02zcjdk53" + ] + }, + { + "affiliation": "School of Natural Resource Management, Nelson Mandela University, George Campus, Port Elizabeth, South Africa", + "ror_ids": [ + "https://ror.org/03r1jm528" + ] + }, + { + "affiliation": "Polymer Energy Materials Laboratory, School of Chemical Engineering, Chonnam National University, Gwangju, South Korea", + "ror_ids": [ + "https://ror.org/05kzjxq56" + ] + }, + { + "affiliation": "Department of Quantitative Health Sciences, Cleveland Clinic, Lerner Research Institute, Cleveland, OH, USA", + "ror_ids": [ + "https://ror.org/03xjacd83" + ] + }, + { + "affiliation": "Institute of Robotics and Autonomous Systems, School of Electrical and Information Engineering, Tianjin University, Tianjin, China", + "ror_ids": [ + "https://ror.org/012tb2g32" + ] + }, + { + "affiliation": "Department of Sociology, University of Warwick, Coventry, UK", + "ror_ids": [ + "https://ror.org/01a77tt86" + ] + }, + { + "affiliation": "Instituto de Investigación y Desarrollo en Ingeniería de ProcesosBiotecnología y Energías Alternativas (PROBIEN), CONICET - Universidad Nacional del Comahue, Neuquén, Argentina", + "ror_ids": [ + "https://ror.org/02zvkba47" + ] + }, + { + "affiliation": "School of Automation, Chongqing University of Posts and Telecommunications, Chongqing, China", + "ror_ids": [ + "https://ror.org/03dgaqz26" + ] + }, + { + "affiliation": "School of Civil Engineering, Central South University of Forestry and Technology, Changsha, Hunan Province, China", + "ror_ids": [ + "https://ror.org/02czw2k81" + ] + }, + { + "affiliation": "Department of Gynecology and Obstetrics, Kyoto University Graduate School of Medicine, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Division of Transplantation and Hepatobiliary Surgery, University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Orthopaedic Surgery, Division of Physical Therapy, Department of Population Health Sciences, Duke University School of Medicine, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Department of Gastroenterology, Renmin Hospital, Hubei University of Medicine, Shiyan, China", + "ror_ids": [ + "https://ror.org/01dr2b756" + ] + }, + { + "affiliation": "Division of Clinical Medicine, The University of Sheffield, School of Medicine and Population Health, Sheffield, UK", + "ror_ids": [ + "https://ror.org/05krs5044" + ] + }, + { + "affiliation": "Department of Physical Electronics, CEPLANT, Faculty of Science, Masaryk University, Brno, Czech Republic", + "ror_ids": [ + "https://ror.org/02j46qs45" + ] + }, + { + "affiliation": "Department of General Surgery, AZ Sint-Jan Brugge-Oostende AV, Brugge, Belgium", + "ror_ids": [ + "https://ror.org/030h1vb90" + ] + }, + { + "affiliation": "Department of Pharmaceutical Chemistry, University of Kansas, Lawrence, Kansas, USA", + "ror_ids": [ + "https://ror.org/001tmjg57" + ] + }, + { + "affiliation": "ILPÖ, Universität Stuttgart, Stuttgart, Deutschland", + "ror_ids": [ + "https://ror.org/04vnq7t77" + ] + }, + { + "affiliation": "Hangzhou Institute for Advanced Study, UCAS, Hangzhou, China", + "ror_ids": [ + "https://ror.org/05qbk4x57" + ] + }, + { + "affiliation": "Institute of Radiochemistry and Radioecology, Research Centre for Biochemical, Environmental and Chemical Engineering, University of Pannonia, Veszprém, Hungary", + "ror_ids": [ + "https://ror.org/03y5egs41" + ] + }, + { + "affiliation": "Department of Computer Science, Virginia Commonwealth University, Richmond, VA, USA", + "ror_ids": [ + "https://ror.org/02nkdxk79" + ] + }, + { + "affiliation": "Cluster of Excellence Internet of Prod, RWTH Aachen University, Aachen, Nordrhein-Westfalen, Germany", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "Department of General Pediatrics and Neonatology, Saarland University Hospital, Homburg, Germany", + "ror_ids": [ + "https://ror.org/01jdpyv68" + ] + }, + { + "affiliation": "Robert H. Lurie Comprehensive Cancer Center of Northwestern University, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/02p4far57" + ] + }, + { + "affiliation": "Mathematical and Physical Faculty, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Natural and Built Environment, Sheffield Hallam University, Sheffield, UK", + "ror_ids": [ + "https://ror.org/019wt1929" + ] + }, + { + "affiliation": "Department of Mathematical Sciences, University of South Africa, Florida, South Africa", + "ror_ids": [ + "https://ror.org/048cwvf49" + ] + }, + { + "affiliation": "Maternal, Child, and Adolescent Health Programme, Burnet Institute, Melbourne, VIC, Australia", + "ror_ids": [ + "https://ror.org/05ktbsm52" + ] + }, + { + "affiliation": "Faculty of Engineering Sciences, Hochschule Mittweida University of Applied Sciences, Mittweida, Germany", + "ror_ids": [ + "https://ror.org/024ga3r86" + ] + }, + { + "affiliation": "School of Electrical and Computer Engineering, Addis Ababa Institute of Technology, Addis Ababa University, Addis Ababa, Ethiopia", + "ror_ids": [ + "https://ror.org/038b8e254" + ] + }, + { + "affiliation": "Michigan Institute of Urology, Troy, MI, USA", + "ror_ids": [ + "https://ror.org/00xt7wr93" + ] + }, + { + "affiliation": "Department of Metallurgical and Materials Engineering, Zonguldak Bülent Ecevit University, Incivez, Zonguldak, Turkey", + "ror_ids": [ + "https://ror.org/01dvabv26" + ] + }, + { + "affiliation": "Department of Anesthesiology, University of Texas, Houston Health Science Center, Houston, USA", + "ror_ids": [ + "https://ror.org/03gds6c39" + ] + }, + { + "affiliation": "Department of General Surgery, Ziv Medical Center, Zefat, Israel", + "ror_ids": [ + "https://ror.org/05mw4gk09" + ] + }, + { + "affiliation": "Bureau of Meteorology, Melbourne, VIC, Australia", + "ror_ids": [ + "https://ror.org/04dkp1p98" + ] + }, + { + "affiliation": "Department of Cardiology and Angiology, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Department of Quality Management, Southwest Hospital, Army Medical University (Third Military Medical University), Chongqing, China", + "ror_ids": [ + "https://ror.org/05w21nn13" + ] + }, + { + "affiliation": "Tianjin Key Laboratory of Information Sensing and Intelligent Control, School of Automation and Electrical Engineering, Tianjin University of Technology and Education, Tianjin, China", + "ror_ids": [ + "https://ror.org/035gwtk09" + ] + }, + { + "affiliation": "Beijing Academy of Agriculture and Forestry Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/04trzn023" + ] + }, + { + "affiliation": "Coma Science Group, GIGA Consciousness, University of Liège, Liège, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "Departement of Special Education, University of Missouri, Columbia, MO, USA", + "ror_ids": [ + "https://ror.org/02ymw8z06" + ] + }, + { + "affiliation": "State Key Laboratory of Urban and Regional Ecology, Research Center for Eco-Environmental Sciences, Chinese Academy of Sciences, Beijing, China", + "ror_ids": [ + "https://ror.org/034t30j35", + "https://ror.org/03rpsvy57" + ] + }, + { + "affiliation": "Instituto de Ingeniería Agraria y Suelos, Facultad de Ciencias Agrarias y Alimentarias, Universidad Austral de Chile, Valdivia, Chile", + "ror_ids": [ + "https://ror.org/029ycp228" + ] + }, + { + "affiliation": "University of York, York, United Kingdom", + "ror_ids": [ + "https://ror.org/04m01e293" + ] + }, + { + "affiliation": "Department of Digestive Surgery, Dijon University Hospital, Dijon, France", + "ror_ids": [ + "https://ror.org/03k1bsr36" + ] + }, + { + "affiliation": "Faculty of Mechanical Engineering, College of Science, Sichuan University of Science & Engineering, Zigong, China", + "ror_ids": [ + "https://ror.org/053fzma23" + ] + }, + { + "affiliation": "Department of Mechanical and Aerospace Engineering, Polytechnic University of Turin, Turin, Italy", + "ror_ids": [ + "https://ror.org/00bgk9508" + ] + }, + { + "affiliation": "Graphene Composite Research Center, College of Chemistry and Environmental Engineering, Shenzhen University, Shenzhen, China", + "ror_ids": [ + "https://ror.org/01vy4gh70" + ] + }, + { + "affiliation": "Shandong Normal University, Jinan, China", + "ror_ids": [ + "https://ror.org/01wy3h363" + ] + }, + { + "affiliation": "Inner Mongolia Medical University, Hohhot, China", + "ror_ids": [ + "https://ror.org/01mtxmr84" + ] + }, + { + "affiliation": "Department of Abdominal Surgery and Transplantation, University of Liege, Liège, Belgium", + "ror_ids": [ + "https://ror.org/00afp2z80" + ] + }, + { + "affiliation": "School of Social Sciences, The University of Queensland, St Lucia, QLD, Australia", + "ror_ids": [ + "https://ror.org/00rqy9422" + ] + }, + { + "affiliation": "Department of Gastroenterology and Digestive Oncology, Cliniques Universitaires St-Luc, Brussels, Belgium", + "ror_ids": [ + "https://ror.org/03s4khd80" + ] + }, + { + "affiliation": "Key Laboratory for Endocrine and Metabolic Diseases of the National Health Commission of the PR China, Shanghai National Clinical Research Center for Metabolic Diseases, Shanghai National Center for Translational Medicine, Ruijin Hospital, Shanghai Jiao Tong University School of Medicine, , China", + "ror_ids": [ + "https://ror.org/01hv94n30", + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Physics Department, Faculty of Science, Beni-Suef University, Beni-Suef, Egypt", + "ror_ids": [ + "https://ror.org/05pn4yv70" + ] + }, + { + "affiliation": "Department of Food Science & Technology, Faculty of Agriculture & Environment, The Islamia University of Bahawalpur, Bahawalpur, Pakistan", + "ror_ids": [ + "https://ror.org/002rc4w13" + ] + }, + { + "affiliation": "College of Mechanical Engineering, Zhejiang University of Technology, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/02djqfd08" + ] + }, + { + "affiliation": "Heilongjiang Provincial Key Laboratory of Optimization Control and Intelligent Analysis for Complex Systems, Harbin University of Science and Technology, Harbin, China", + "ror_ids": [ + "https://ror.org/04e6y1282" + ] + }, + { + "affiliation": "Institute of Regional Research, University of Southern Denmark, Odense, Denmark", + "ror_ids": [ + "https://ror.org/03yrrjy16" + ] + }, + { + "affiliation": "Neurosurgery Department, Faculty of Medecine, Benha University, Qalubiya, Egypt", + "ror_ids": [ + "https://ror.org/03tn5ee41" + ] + }, + { + "affiliation": "Department of Cardiology, Concord Repatriation General Hospital, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/04b0n4406" + ] + }, + { + "affiliation": "Department of Marine Environmental Science, Chungnam National University, Daejeon, Republic of Korea", + "ror_ids": [ + "https://ror.org/0227as991" + ] + }, + { + "affiliation": "Department of Infectious Disease, Xinhua Children’s Hospital, Xinhua Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04", + "https://ror.org/04dzvks42" + ] + }, + { + "affiliation": "School of Information Engineering, Jiangxi University of Technology, Nanchang, Jiangxi province, China", + "ror_ids": [ + "https://ror.org/05k2j8e48" + ] + }, + { + "affiliation": "Research Unit OPEN, Department of Clinical Research, University of Southern Denmark, Odense C, Denmark", + "ror_ids": [ + "https://ror.org/03yrrjy16" + ] + }, + { + "affiliation": "Biorefinery Technology and Bioproducts Research Group, National Center for Genetic Engineering and Biotechnology, NSTDA, Pathumthani, Thailand", + "ror_ids": [ + "https://ror.org/047aswc67" + ] + }, + { + "affiliation": "Department of Internal Medicine, Ege University Faculty of Medicine, Izmir, Turkey", + "ror_ids": [ + "https://ror.org/02eaafc18" + ] + }, + { + "affiliation": "Neurologische Klinik / Oberbayer. Kopfschmerzzentrum, Klinikum Großhadern der LMU München, München, Deutschland", + "ror_ids": [ + "https://ror.org/02jet3w32" + ] + }, + { + "affiliation": "Department of Surgery, Saint Francis Memorial Hospital, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/05h29d328" + ] + }, + { + "affiliation": "Maulana Azad National Institute of Technology, Bhopal, India", + "ror_ids": [ + "https://ror.org/026vtd268" + ] + }, + { + "affiliation": "Department of Plant Science, School of Life Sciences, Central University of Himachal Pradesh, Dharamshala, Himachal Pradesh, India", + "ror_ids": [ + "https://ror.org/04v5nzb91" + ] + }, + { + "affiliation": "Department of Medicine, College of Medicine, Pennsylvania State University, State College, PA, USA", + "ror_ids": [ + "https://ror.org/04p491231" + ] + }, + { + "affiliation": "Prince Mohammad Bin Fahd University, Khobar, Saudi Arabia", + "ror_ids": [ + "https://ror.org/03d64na34" + ] + }, + { + "affiliation": "Department of Computer Science, Hansraj College, University of Delhi, New Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213" + ] + }, + { + "affiliation": "Neuroradiological Academic Unit, University College London Queen Square Institute of Neurology, University College London, London, UK", + "ror_ids": [ + "https://ror.org/02jx3x895" + ] + }, + { + "affiliation": "Department of Industrial Engineering, Necmettin Erbakan University, Konya, Turkey", + "ror_ids": [ + "https://ror.org/013s3zh21" + ] + }, + { + "affiliation": "Mental Health Research and Treatment Center, Ruhr-Universität Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Key Laboratory of Ministry of Education for Autonomous Systems and Networked Control, Guangdong Engineering Technology Research Center of Control of Intelligent Systems, College of Automation Science and Engineering, South China University of Technology, , China", + "ror_ids": [ + "https://ror.org/0530pts50" + ] + }, + { + "affiliation": "Department of Neuroscience, Reproductive and Dentistry Sciences, University of Naples “Federico II”, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Institut für Steuerrecht, Universität zu Köln, Köln, Deutschland", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "CINBIO, Universidade de Vigo, SiDOR Research Group, Vigo, Spain", + "ror_ids": [ + "https://ror.org/05rdf8595" + ] + }, + { + "affiliation": "Research Center for Pharmaceutical Ingredient and Traditional Medicine, National Research and Innovation Agency (BRIN), Cibinong, West Java, Indonesia", + "ror_ids": [ + "https://ror.org/02hmjzt55" + ] + }, + { + "affiliation": "Department of Orthopeadics, Shengjing Hospital of China Medical University, Shenyang, Liaoning, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04wjghj95", + "https://ror.org/00v408z34" + ] + }, + { + "affiliation": "Laboratoire des signaux et systèmes, Université Paris-Saclay, CNRS, CentraleSupélec, INRIA, Gif-sur-Yvette, France", + "ror_ids": [ + "https://ror.org/019tcpt25", + "https://ror.org/03xjwb503" + ] + }, + { + "affiliation": "Centre for Composite Materials and Structures (CCMS), Harbin Institute of Technology, Harbin, China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Department of Geomatics, Forest Research Institute, Raszyn, Poland", + "ror_ids": [ + "https://ror.org/03kkb8y03" + ] + }, + { + "affiliation": "Department of Cardiovascular Medicine, Mayo Clinic, Rochester, MN, USA", + "ror_ids": [ + "https://ror.org/02qp3tb03" + ] + }, + { + "affiliation": "CNRS-IN2P3, UMR 5822, Institut de Physique des 2 Infinis de Lyon, Lyon, France", + "ror_ids": [ + "https://ror.org/02avf8f85" + ] + }, + { + "affiliation": "Institute for Clinical Pharmacology, Technical University, Dresden, Germany", + "ror_ids": [ + "https://ror.org/042aqky30" + ] + }, + { + "affiliation": "Fakultät für Gesundheit, Universität Witten/Herdecke, Witten, Deutschland", + "ror_ids": [ + "https://ror.org/00yq55g44" + ] + }, + { + "affiliation": "Neurostatistics Research Laboratory, MIT, Cambridge, USA", + "ror_ids": [ + "https://ror.org/042nb2s44" + ] + }, + { + "affiliation": "Institute of Microbiology, Lausanne University Hospital, University of Lausanne, Lausanne, Switzerland", + "ror_ids": [ + "https://ror.org/019whta54" + ] + }, + { + "affiliation": "Center for Health Outcomes and Interdisciplinary Research (CHOIR), Department of Psychiatry, Massachusetts General Hospital/Harvard Medical School, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78", + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Center for Mind, Brain and Behavior, Philipps-Universität Marburg, Marburg, Germany", + "ror_ids": [ + "https://ror.org/01rdrb571" + ] + }, + { + "affiliation": "Research Student, Bharathidasan University, Tiruchirappalli, India", + "ror_ids": [ + "https://ror.org/02w7vnb60" + ] + }, + { + "affiliation": "Prince Sultan University, Riyadh, Saudi Arabia", + "ror_ids": [ + "https://ror.org/053mqrf26" + ] + }, + { + "affiliation": "CHU Nantes, INSERM, CIC1413, Nantes Université, Nantes, France", + "ror_ids": [ + "https://ror.org/03gnr7b55", + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "Fafo Institute for Labour and Social Research, Oslo, Norway", + "ror_ids": [ + "https://ror.org/00ee9xb13" + ] + }, + { + "affiliation": "Environmental Toxicology and Chemistry Research Group, Faculty of Applied Sciences, Cape Peninsula University of Technology, Bellville, South Africa", + "ror_ids": [ + "https://ror.org/056e9h402" + ] + }, + { + "affiliation": "School of Mechanical Engineering, Xi’an Jiaotong University, Xi’an, Shaanxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/017zhmm22" + ] + }, + { + "affiliation": "Mitglied der Institutsleitung, Production Engineering of E-Mobility Components (PEM), RWTH Aachen, Aachen, Deutschland", + "ror_ids": [ + "https://ror.org/04xfq0f34" + ] + }, + { + "affiliation": "Department of Geography, Universitat Autònoma de Barcelona, Cerdanyola del Vallès, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Instituto de Física y Astronomía, Universidad de Valparaíso, Valparaiso, Chile", + "ror_ids": [ + "https://ror.org/00h9jrb69" + ] + }, + { + "affiliation": "Body Technology, Volvo Cars, Gothenburg, Sweden", + "ror_ids": [ + "https://ror.org/005n5zv88" + ] + }, + { + "affiliation": "Department of Cardiology, Máxima Medical Centre, Veldhoven, The Netherlands", + "ror_ids": [ + "https://ror.org/02x6rcb77" + ] + }, + { + "affiliation": "Department of Economics, Federal University Oye-Ekiti, Oye-Ekiti, Ekiti, Nigeria", + "ror_ids": [ + "https://ror.org/02q5h6807" + ] + }, + { + "affiliation": "College of Information and Communication, National University of Defense Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/05d2yfz11" + ] + }, + { + "affiliation": "Universität Innsbruck, Department of Astro and Particle Physics, Innsbruck, Austria", + "ror_ids": [ + "https://ror.org/054pv6659" + ] + }, + { + "affiliation": "Neural Systems Laboratory, Institute of Basic Medical Sciences, University of Oslo, Oslo, Norway", + "ror_ids": [ + "https://ror.org/01xtthb56" + ] + }, + { + "affiliation": "Section of Nephrology, Boston University School of Medicine and Boston Medical Center, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/05qwgg493", + "https://ror.org/010b9wj87" + ] + }, + { + "affiliation": "College of Mathematics and Computer Science, Zhejiang Normal University, Jinhua, Zhejiang, China", + "ror_ids": [ + "https://ror.org/01vevwk45" + ] + }, + { + "affiliation": "Max Planck Institute for Dynamics and Self-Organization (MPI-DS), Göttingen, Germany", + "ror_ids": [ + "https://ror.org/0087djs12" + ] + }, + { + "affiliation": "Discipline Inspection and Audit Division, Aviation General Hospital, Beijing, China", + "ror_ids": [ + "https://ror.org/04j1qx617" + ] + }, + { + "affiliation": "CINEA and ESTS, IPS – Energy and Environment Research Center, Instituto Politécnico de Setúbal, Setúbal, Portugal", + "ror_ids": [ + "https://ror.org/01bvjz807" + ] + }, + { + "affiliation": "State Key Laboratory of Subtropical Silviculture, Zhejiang A & F University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/02vj4rn06" + ] + }, + { + "affiliation": "Oslo Centre of Biostatistics and Epidemiology, Oslo University Hospital, Oslo, Norway", + "ror_ids": [ + "https://ror.org/00j9c2840" + ] + }, + { + "affiliation": "Structural Genomics Consortium, University of Toronto, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/03dbr7087", + "https://ror.org/04jzps455" + ] + }, + { + "affiliation": "Department of Otolaryngology–Head and Neck Surgery, University of CA–Davis Sacramento, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "School of Computer Science and Technology, Harbin Institute of Technology, Shenzhen, Shenzhen, China", + "ror_ids": [ + "https://ror.org/01yqg2h08" + ] + }, + { + "affiliation": "Child Psychopathology Unit, Scientific Institute, IRCCS E. Medea – La Nostra Famiglia, Lecco, Italy", + "ror_ids": [ + "https://ror.org/05ynr3m75" + ] + }, + { + "affiliation": "Department of Physics, LEPP, Cornell University, Ithaca, NY, USA", + "ror_ids": [ + "https://ror.org/05bnh6r87" + ] + }, + { + "affiliation": "Department of Soil Science and Agricultural Chemistry, Institute of Agricultural Sciences, Banaras Hindu University, Uttar Pradesh, Varanasi, India", + "ror_ids": [ + "https://ror.org/04cdn2797" + ] + }, + { + "affiliation": "School of Computer and Information Engineering, Henan University, KaiFeng, Henan, China", + "ror_ids": [ + "https://ror.org/003xyzq10" + ] + }, + { + "affiliation": "Department of Human Genetics, University of Chicago, Chicago, IL, USA", + "ror_ids": [ + "https://ror.org/024mw5h28" + ] + }, + { + "affiliation": "Department of Computer Science and Engineering, Chitkara University, Gharuan, Mohali, Punjab, India", + "ror_ids": [ + "https://ror.org/057d6z539" + ] + }, + { + "affiliation": "Oil Crops Biotechnology Lab, Agricultural Genetic Engineering Institute, Agricultural Research Center, Giza, Egypt", + "ror_ids": [ + "https://ror.org/05hcacp57" + ] + }, + { + "affiliation": "Innovation Institute for Sustainable Maritime Architecture Research and Technology, Qingdao University of Technology, Qingdao, China", + "ror_ids": [ + "https://ror.org/01qzc0f54" + ] + }, + { + "affiliation": "Hefei National Laboratory for Physical Science at the Microscale, School of Life Sciences, University of Science and Technology of China, Hefei, P. R. China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Southeast Fisheries Science Center, NOAA Fisheries, Miami, FL, USA", + "ror_ids": [ + "https://ror.org/0396y0w87", + "https://ror.org/033mqx355" + ] + }, + { + "affiliation": "Emergency Department, University Hospital of Lausanne, Lausanne, Switzerland", + "ror_ids": [ + "https://ror.org/05a353079" + ] + }, + { + "affiliation": "Dipartimento di Matematica “F. Casorati”, Universita di Pavia, Pavia, Italy", + "ror_ids": [ + "https://ror.org/00s6t1f81" + ] + }, + { + "affiliation": "St. Petersburg Electrotechnical University, St. Petersburg, Russia", + "ror_ids": [ + "https://ror.org/023bq8521" + ] + }, + { + "affiliation": "Clinical Medicine, Medical College of Wuhan University of Science and Technology, Wuhan, Hubei, China", + "ror_ids": [ + "https://ror.org/00e4hrk88" + ] + }, + { + "affiliation": "Computer Science and Engineering, Panimalar Engineering College, Chennai, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Department of Computer Science & Engineering, Atria Institute of Technology, Bengaluru, Karnataka, India", + "ror_ids": [ + "https://ror.org/00ha14p11" + ] + }, + { + "affiliation": "Faculty of Basic Sciences, University of Medicine and Pharmacy, Ho Chi Minh City, Vietnam", + "ror_ids": [] + }, + { + "affiliation": "Institut für Erziehungswissenschaft/Abteilung Schulpädagogik, Eberhard Karls Universität Tübingen, Tübingen, Deutschland", + "ror_ids": [ + "https://ror.org/03a1kwz48" + ] + }, + { + "affiliation": "Medical Oncology Unit, Institut de Cancérologie Strasbourg Europe, Strasbourg, France", + "ror_ids": [ + "https://ror.org/008fdbn61" + ] + }, + { + "affiliation": "Bioprocess Technology Laboratory, Department of Biotechnology, Mata Gujri College, Fatehgarh Sahib, Punjab, India", + "ror_ids": [ + "https://ror.org/03tjsyq23" + ] + }, + { + "affiliation": "Institute of Cardiometabolism and Nutrition, ICAN, INSERM, Paris, France", + "ror_ids": [ + "https://ror.org/02vjkv261", + "https://ror.org/050c3pq49" + ] + }, + { + "affiliation": "Department of Psychological, Health and Territorial Sciences, G. d’Annunzio University of Chieti-Pescara, Chieti, Italy", + "ror_ids": [ + "https://ror.org/00qjgza05" + ] + }, + { + "affiliation": "Department of Energy, Power Engineering and Environmental Engineering, Faculty of Mechanical Engineering and Naval Architecture, The University of Zagreb, Zagreb, Croatia", + "ror_ids": [ + "https://ror.org/00mv6sv71", + "https://ror.org/00j5kgp20" + ] + }, + { + "affiliation": "Division of Neuroscience, The University of Sheffield, Sheffield, UK", + "ror_ids": [ + "https://ror.org/05krs5044" + ] + }, + { + "affiliation": "Big Data and Artificial Intelligence Laboratory, Yantai Yuhuangding Hospital, Qingdao University, Yantai, Shandong, People’s Republic of China", + "ror_ids": [ + "https://ror.org/05vawe413", + "https://ror.org/021cj6z65" + ] + }, + { + "affiliation": "Division of Electrophysiology, Department of Cardiology, Herlev-Gentofte Hospital, Hellerup, Denmark", + "ror_ids": [ + "https://ror.org/051dzw862" + ] + }, + { + "affiliation": "Department of Diagnostic and Interventional Radiology, Lausanne University Hospital (CHUV) and University of Lausanne, Lausanne, Switzerland", + "ror_ids": [ + "https://ror.org/019whta54" + ] + }, + { + "affiliation": "Eli and Edythe Broad Center of Regeneration Medicine and Stem Cell Research, University of California, San Francisco, CA, USA", + "ror_ids": [ + "https://ror.org/043mz5j54" + ] + }, + { + "affiliation": "School of Finance, Capital University of Economics and Business, Beijing, China", + "ror_ids": [ + "https://ror.org/01r5sf951" + ] + }, + { + "affiliation": "School of Physics and Optoelectronic Engineering, Guangdong University of Technology, Guangzhou, China", + "ror_ids": [ + "https://ror.org/04azbjn80" + ] + }, + { + "affiliation": "UC Davis Violence Prevention Research Program, Sacramento, CA, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Department of Forensic Dentistry, Piracicaba Dental School, University of Campinas, Piracicaba, Brazil", + "ror_ids": [ + "https://ror.org/04wffgt70" + ] + }, + { + "affiliation": "Life Science and Technology School, Lingnan Normal University, Zhanjiang, China", + "ror_ids": [ + "https://ror.org/01h6ecw13" + ] + }, + { + "affiliation": "Guangdong Provincial Key Laboratory of Tumor Interventional Diagnosis and Treatment, Zhuhai Institute of Translational Medicine, Zhuhai People’s Hospital Affiliated with Jinan University, Jinan University, Zhuhai, China", + "ror_ids": [ + "https://ror.org/02xe5ns62", + "https://ror.org/01k1x3b35" + ] + }, + { + "affiliation": "Department of Psychology, University of Richmond, Richmond, VA, USA", + "ror_ids": [ + "https://ror.org/03y71xh61" + ] + }, + { + "affiliation": "Department of Thoracic and Cardiovascular Surgery, Seoul National University Hospital, Seoul, South Korea", + "ror_ids": [ + "https://ror.org/01z4nnt86" + ] + }, + { + "affiliation": "Unité de Formation et de Recherche en Sciences et Technologies (UFR/ST), Université Norbert ZONGO (UNZ), Koudougou, Burkina Faso", + "ror_ids": [ + "https://ror.org/02hrqje66" + ] + }, + { + "affiliation": "Centre for Medical Parasitology, Department of Immunology and Microbiology, University of Copenhagen, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/035b05819" + ] + }, + { + "affiliation": "Department of CSE UVCE, Bangalore University, Bengaluru, India", + "ror_ids": [ + "https://ror.org/050j2vm64" + ] + }, + { + "affiliation": "School of Water Resources and Environment, China University of Geosciences (Beijing), Beijing, China", + "ror_ids": [ + "https://ror.org/04q6c7p66" + ] + }, + { + "affiliation": "State Key Laboratory of Fire Science, University of Science and Technology of China, Hefei, Anhui, China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Toppan Technical Research Institute, Toppan Inc, Saitama, Japan", + "ror_ids": [ + "https://ror.org/01kz55g98" + ] + }, + { + "affiliation": "Département de Chirurgie, Institut du Thorax Curie-Montsouris, Institut Mutualiste Montsouris, Paris, France", + "ror_ids": [ + "https://ror.org/00bea5h57" + ] + }, + { + "affiliation": "Department of Gastroenterology and Hepatology, Erasmus MC University Medical Center, Rotterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/018906e22" + ] + }, + { + "affiliation": "Department of Physics, School of Science and Technology, Nottingham Trent University, Nottingham, UK", + "ror_ids": [ + "https://ror.org/04xyxjd90" + ] + }, + { + "affiliation": "Department of Internal Medicine, Dr. Josip Benčević General Hospital, Slavonski Brod, Croatia", + "ror_ids": [ + "https://ror.org/0518jvn15" + ] + }, + { + "affiliation": "China Institute of Atomic Energy, Beijing, China", + "ror_ids": [ + "https://ror.org/00v5gqm66" + ] + }, + { + "affiliation": "Department of Biochemistry and Molecular Biology, Autonomous University of Barcelona (UAB), Barcelona, Spain", + "ror_ids": [ + "https://ror.org/052g8jq94" + ] + }, + { + "affiliation": "Facultad de Ciencias de la Ingeniería e Industrias, Universidad UTE, Quito, Ecuador", + "ror_ids": [ + "https://ror.org/00dmdt028" + ] + }, + { + "affiliation": "School of Electrical and Electronics Engineering, SASTRA University, Thanjavur, India", + "ror_ids": [ + "https://ror.org/032jk8892" + ] + }, + { + "affiliation": "Department of Oral Health for Children and Adolescents, Universidade Federal de Minas Gerais, Belo Horizonte, Minas Gerais, Brazil", + "ror_ids": [ + "https://ror.org/0176yjw32" + ] + }, + { + "affiliation": "Department of Gastroenterology and Hepatology, Princess Alexandra Hospital, Brisbane, QLD, Australia", + "ror_ids": [ + "https://ror.org/04mqb0968" + ] + }, + { + "affiliation": "Fiber and Biopolymer Research Institute, Department of Plant and Soil Science, Texas Tech University, Lubbock, USA", + "ror_ids": [ + "https://ror.org/0405mnx93" + ] + }, + { + "affiliation": "Çukurova University, Adana, Turkey", + "ror_ids": [ + "https://ror.org/05wxkj555" + ] + }, + { + "affiliation": "Departamento de Ciências Morfológicas, Instituto de Ciências Básicas da Saúde, Universidade Federal do Rio Grande do Sul (UFRGS), Porto Alegre, Brazil", + "ror_ids": [ + "https://ror.org/041yk2d64" + ] + }, + { + "affiliation": "Bioneer A/S, Hørsholm, Denmark", + "ror_ids": [ + "https://ror.org/02h8qh795" + ] + }, + { + "affiliation": "Dipartimento di Fisica, Università della Calabria, Rende, Italy", + "ror_ids": [ + "https://ror.org/02rc97e94" + ] + }, + { + "affiliation": "Department of Metallurgy and Materials Engineering, Faculty of Engineering and Natural Sciences, Iskenderun Technical University, Hatay, Turkey", + "ror_ids": [ + "https://ror.org/052nzqz14" + ] + }, + { + "affiliation": "Univ. Grenoble Alpes, CNRS, Grenoble INP, GIPSA-lab, Grenoble, France", + "ror_ids": [ + "https://ror.org/02wrme198", + "https://ror.org/02rx3b187", + "https://ror.org/05sbt2524" + ] + }, + { + "affiliation": "Department of Pediatric Cardiology, Saarland University Hospital, Homburg, Germany", + "ror_ids": [ + "https://ror.org/01jdpyv68" + ] + }, + { + "affiliation": "Department of Neurology, Affiliated Hospital of Zunyi Medical University CN, Zunyi, China", + "ror_ids": [ + "https://ror.org/00g5b0g93" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Pohang University of Science and Technology, Pohang, Gyeongbuk, South Korea", + "ror_ids": [ + "https://ror.org/04xysgw12" + ] + }, + { + "affiliation": "Instituto de Bioingeniería, Universidad Miguel Hernández, Elche, Spain", + "ror_ids": [ + "https://ror.org/01azzms13" + ] + }, + { + "affiliation": "Unidad de Química Orgánica y Farmacéutica, Departamento de Química en Ciencias Farmacéuticas, Facultad de Farmacia, Universidad Complutense, Madrid, Spain", + "ror_ids": [ + "https://ror.org/02p0gd045" + ] + }, + { + "affiliation": "Knappschaft, Bochum, Deutschland", + "ror_ids": [ + "https://ror.org/024j3hn90" + ] + }, + { + "affiliation": "Guangdong Institute of Gastroenterology, The Sixth Affiliated Hospital of Sun Yat-Sen University, Sun Yat-Sen University, Guangzhou, China", + "ror_ids": [ + "https://ror.org/0064kty71", + "https://ror.org/005pe1772" + ] + }, + { + "affiliation": "Department of Neurosurgery, Division of Surgery, The University of Texas MD Anderson Cancer Center, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "EA 7379 EpiDermE, Université Paris-Est Créteil (UPEC), Créteil, France", + "ror_ids": [ + "https://ror.org/05ggc9x40" + ] + }, + { + "affiliation": "Department of Neurology, Faculty of Medicine, University of Bonn, Bonn, Germany", + "ror_ids": [ + "https://ror.org/041nas322" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, State University of New York at Binghamton, Binghamton, NY, USA", + "ror_ids": [ + "https://ror.org/008rmbt77" + ] + }, + { + "affiliation": "Nephrology and Dialysis Unit, IRCCS San Raffaele Scientific Institute, Milan, Italy", + "ror_ids": [ + "https://ror.org/039zxt351", + "https://ror.org/006x48140" + ] + }, + { + "affiliation": "National Institute of Plant Genome Research (NIPGR), New Delhi, India", + "ror_ids": [ + "https://ror.org/04zw11527" + ] + }, + { + "affiliation": "Cancer Center Amsterdam, Imaging and Biomarkers, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/0286p1c86" + ] + }, + { + "affiliation": "The Institute for Digital Medicine (WisDM), Yong Loo Lin School of Medicine, National University of Singapore, Singapore, Singapore", + "ror_ids": [ + "https://ror.org/01tgyzw49" + ] + }, + { + "affiliation": "University of Nottingham (UK and Malaysia), University Park, Nottingham, UK", + "ror_ids": [ + "https://ror.org/01ee9ar58" + ] + }, + { + "affiliation": "Department of Pharmaceutical Chemistry, School of Pharmaceutical Sciences, Delhi Pharmaceutical Sciences and Research University (DPSRU), New Delhi, India", + "ror_ids": [ + "https://ror.org/022akpv96" + ] + }, + { + "affiliation": "Key Laboratory for Quantum Materials of Zhejiang Province, Department of Physics, School of Science, Westlake University, Hangzhou, P. R. China", + "ror_ids": [ + "https://ror.org/05hfa4n20" + ] + }, + { + "affiliation": "Key Laboratory of Biomechanics and Mechanobiology, Ministry of Education, Beijing Advanced Innovation Center for Biomedical Engineering, School of Biological Science and Medical Engineering, Beihang University, Beijing, China", + "ror_ids": [ + "https://ror.org/00wk2mp56" + ] + }, + { + "affiliation": "Department of Civil, Environmental and Natural Resources Engineering, Luleå University of Technology, Luleå, Sweden", + "ror_ids": [ + "https://ror.org/016st3p78" + ] + }, + { + "affiliation": "Department of Civil Engineering, Faculty of Construction Engineering, University of Mouloud Mammeri of Tizi-Ouzou, Tizi-Ouzou, RP, Algeria", + "ror_ids": [ + "https://ror.org/050ktqq97" + ] + }, + { + "affiliation": "School of Civil Engineering, Qingdao University of Technology, Qingdao, China", + "ror_ids": [ + "https://ror.org/01qzc0f54" + ] + }, + { + "affiliation": "Department of Mathematics, IGIT Sarang, Dhenkanal, Odisha, India", + "ror_ids": [ + "https://ror.org/0010jkx06" + ] + }, + { + "affiliation": "Fujian Province University Key Laboratory of Computational Science, School of Mathematical Sciences, Huaqiao University, Quanzhou, People’s Republic of China", + "ror_ids": [ + "https://ror.org/03frdh605" + ] + }, + { + "affiliation": "Kachwekano Zonal Agricultural Research and Development Institute, National Agricultural Research Organization, Kabale, Uganda", + "ror_ids": [ + "https://ror.org/05rmt1x67" + ] + }, + { + "affiliation": "Department of Gastroenterology and Hepatology, Ground Floor Alfred Centre, Alfred Health, Melbourne, VIC, Australia", + "ror_ids": [ + "https://ror.org/04scfb908" + ] + }, + { + "affiliation": "Agencia de Extensión Rural, Instituto Nacional de Tecnología Agropecuaria (INTA), General Alvear, Mendoza, Argentina", + "ror_ids": [ + "https://ror.org/04wm52x94" + ] + }, + { + "affiliation": "College of Mecheanical and Electrical Engineering, Northeast Forestry University, Harbin, China", + "ror_ids": [ + "https://ror.org/02yxnh564" + ] + }, + { + "affiliation": "Duke Center for Autism and Brain Development, Duke University, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Communication Sciences Research Center, Reading and Literacy Discovery Center, Cincinnati Children’s Hospital Medical Center, Cincinnati, USA", + "ror_ids": [ + "https://ror.org/01hcyya48" + ] + }, + { + "affiliation": "Zhengzhou Research Base, National Key Laboratory of Cotton Bio-breeding and Integrated Utilization, School of Agricultural Sciences, Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Department of Electronics and Communication Engineering, National Institute of Technology, Durgapur, West Bengal, India", + "ror_ids": [ + "https://ror.org/04ds0jm32" + ] + }, + { + "affiliation": "Clinic for Pediatric Pulmonology, Allergology and Neonatology, Hannover Medical School, Hannover, Germany", + "ror_ids": [ + "https://ror.org/00f2yqf98" + ] + }, + { + "affiliation": "Department of Cardiothoracic Surgery, Weill Cornell Medicine and New York-Presbyterian Hospital, New York, USA", + "ror_ids": [ + "https://ror.org/02r109517" + ] + }, + { + "affiliation": "Division of Surgical Oncology, Department of Surgery, Knight Cancer Institute, Oregon Health and Science University, Portland, OR, USA", + "ror_ids": [ + "https://ror.org/009avj582" + ] + }, + { + "affiliation": "Zhongyuan Research Center, Chinese Academy of Agricultural Sciences, Xinxiang, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0313jb750" + ] + }, + { + "affiliation": "College of Food Science and Engineering, Hainan University, Haikou, Hainan, China", + "ror_ids": [ + "https://ror.org/03q648j11" + ] + }, + { + "affiliation": "Department of Computer Science, Wesleyan University, Middletown, USA", + "ror_ids": [ + "https://ror.org/05h7xva58" + ] + }, + { + "affiliation": "Department of Haematology, Christian Medical College, Vellore, India", + "ror_ids": [ + "https://ror.org/01vj9qy35" + ] + }, + { + "affiliation": "QinLing-Bashan Mountains Bioresources Comprehensive Development C. I. C., Shaanxi University of Technology, Hanzhong, China", + "ror_ids": [ + "https://ror.org/056m91h77" + ] + }, + { + "affiliation": "CERIMED, Aix-Marseille University, Marseille, France", + "ror_ids": [ + "https://ror.org/035xkbk20" + ] + }, + { + "affiliation": "Hematology Unit and Chair, Azienda Ospedaliera Universitaria di Modena, Modena, Italy", + "ror_ids": [ + "https://ror.org/01hmmsr16" + ] + }, + { + "affiliation": "Department of Educational Studies, The American University in Cairo, New Cairo, Cairo, Egypt", + "ror_ids": [ + "https://ror.org/0176yqn58" + ] + }, + { + "affiliation": "Department of Computer and Network Engineering, University of Electro-Communications, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/02x73b849" + ] + }, + { + "affiliation": "Department of Linguistics, University of Florida, Gainesville, FL, USA", + "ror_ids": [ + "https://ror.org/02y3ad647" + ] + }, + { + "affiliation": "Department of Civil and Environmental Engineering, Amirkabir University of Technology (Tehran Polytechnic), Tehran, Iran", + "ror_ids": [ + "https://ror.org/04gzbav43" + ] + }, + { + "affiliation": "Department of Politics, York University, Toronto, ON, Canada", + "ror_ids": [ + "https://ror.org/05fq50484" + ] + }, + { + "affiliation": "The University of Texas at San Antonio, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/01kd65564" + ] + }, + { + "affiliation": "Department of Neurology and Neurosurgery, Montreal Neurological Institute and Hospital, McGill University, Montreal, Quebec, Canada", + "ror_ids": [ + "https://ror.org/01pxwe438", + "https://ror.org/05ghs6f64" + ] + }, + { + "affiliation": "Department of Histology and Embryology, Jessenius Faculty of Medicine, Comenius University in Bratislava, Martin, Slovakia", + "ror_ids": [ + "https://ror.org/0587ef340" + ] + }, + { + "affiliation": "Division of Clinical Nephrology and Rheumatology, Niigata University Graduate School of Medical and Dental Sciences, Niigata, Japan", + "ror_ids": [ + "https://ror.org/04ww21r56" + ] + }, + { + "affiliation": "KTH Royal Institute of Technology, Stockholm, Sweden", + "ror_ids": [ + "https://ror.org/026vcq606" + ] + }, + { + "affiliation": "Instituto de Ciencias Nucleares, Universidad Nacional Autónoma de México, Mexico City, Mexico", + "ror_ids": [ + "https://ror.org/01tmp8f25" + ] + }, + { + "affiliation": "Suzhou Institute for Advanced Research, University of Science and Technology of China, Suzhou, Jiangsu, People’s Republic of China", + "ror_ids": [ + "https://ror.org/04c4dkn09" + ] + }, + { + "affiliation": "Provincial OCD Program, BC Children’s Hospital, Vancouver, BC, Canada", + "ror_ids": [ + "https://ror.org/04n901w50" + ] + }, + { + "affiliation": "Dow University of Health Sciences, Karachi, Pakistan", + "ror_ids": [ + "https://ror.org/01h85hm56" + ] + }, + { + "affiliation": "Department of Pediatrics, Columbia University College of Physicians and Surgeons, New York, NY, USA", + "ror_ids": [ + "https://ror.org/00hj8s172" + ] + }, + { + "affiliation": "School of Psychology, Faculty of Social Sciences, University of Ottawa, Ottawa, ON, Canada", + "ror_ids": [ + "https://ror.org/03c4mmv16" + ] + }, + { + "affiliation": "Brain Dynamics Lab, Swinburne University, Melbourne, Australia", + "ror_ids": [ + "https://ror.org/031rekg67" + ] + }, + { + "affiliation": "Hubei Provincial Engineering Technology Research Center of Metallurgical Secondary Resources, Wuhan University of Science and Technology, Wuhan, Hubei, China", + "ror_ids": [ + "https://ror.org/00e4hrk88" + ] + }, + { + "affiliation": "Western Sydney Sexual Health Centre, Parramatta, NSW, Australia", + "ror_ids": [ + "https://ror.org/014nwb521" + ] + }, + { + "affiliation": "Department of Medical Science, Metabolic Syndrome and Cell Signaling Laboratory, Institute for Cancer Research, College of Medicine, Chungnam National University, Daejeon, Republic of Korea", + "ror_ids": [ + "https://ror.org/0227as991" + ] + }, + { + "affiliation": "Department of Molecular Biology and Genetics, Usak University, Usak, Turkey", + "ror_ids": [ + "https://ror.org/05es91y67" + ] + }, + { + "affiliation": "Faculty of Computers and Artificial Intelligence, Benha University, Banha, Egypt", + "ror_ids": [ + "https://ror.org/03tn5ee41" + ] + }, + { + "affiliation": "Department of Clinical and Molecular Medicine, Sant’Andrea University Hospital, Sapienza University of Rome, Rome, Italy", + "ror_ids": [ + "https://ror.org/02be6w209" + ] + }, + { + "affiliation": "Department of Biology, Laboratory of Biotechnology and Valorization of bio-Resources, Faculty of Sciences, Moulay Ismail University of Meknes, Zitoune Meknes, Morocco", + "ror_ids": [ + "https://ror.org/04cnscd67" + ] + }, + { + "affiliation": "Department of Spine Surgery, Honghui Hospital, Xi’an Jiaotong University, Xi’an, Shaanxi, China", + "ror_ids": [ + "https://ror.org/017zhmm22", + "https://ror.org/015bnwc11" + ] + }, + { + "affiliation": "Division of Gastroenterology, Department of Internal Medicine, Eunpyeong St. Mary’s Hospital, College of Medicine, The Catholic University of Korea, Seoul, Korea", + "ror_ids": [ + "https://ror.org/01fpnj063" + ] + }, + { + "affiliation": "University of California Irvine, Irvine, CA, USA", + "ror_ids": [ + "https://ror.org/04gyf1771" + ] + }, + { + "affiliation": "Freie Universität Berlin, Berlin, Berlin, Deutschland", + "ror_ids": [ + "https://ror.org/046ak2485" + ] + }, + { + "affiliation": "Department of Computer Science and Software Engineering, Shelby Center for Engineering Technology, Samuel Ginn College of Engineering, Auburn University, Auburn, AL, USA", + "ror_ids": [ + "https://ror.org/02v80fc35" + ] + }, + { + "affiliation": "School of Foreign Languages, Wenzhou Medical University, Wenzhou, China", + "ror_ids": [ + "https://ror.org/00rd5t069" + ] + }, + { + "affiliation": "Mathematical Institute, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "National Institute of Materials Physics, Magurele, Romania", + "ror_ids": [ + "https://ror.org/002ghjd91" + ] + }, + { + "affiliation": "Department of Preventive Medicine, The Icahn School of Medicine at Mount Sinai, New York, USA", + "ror_ids": [ + "https://ror.org/04a9tmd77" + ] + }, + { + "affiliation": "Fakultät Life Sciences, Hochschule Rhein-Waal, Kleve, Deutschland", + "ror_ids": [ + "https://ror.org/04wdt0z89" + ] + }, + { + "affiliation": "Physics Division, Lawrence Berkeley National Laboratory, Berkeley, CA, USA", + "ror_ids": [ + "https://ror.org/02jbv0t02" + ] + }, + { + "affiliation": "University of Minnesota Genomics Center (UMNGC), Minneapolis, MN, USA", + "ror_ids": [ + "https://ror.org/017zqws13" + ] + }, + { + "affiliation": "University of Edinburgh, EDINBURGH, United Kingdom", + "ror_ids": [ + "https://ror.org/01nrxwf90" + ] + }, + { + "affiliation": "Department of Health Research Methods, Evidence and Impact, McMaster University, Hamilton, Canada", + "ror_ids": [ + "https://ror.org/02fa3aq29" + ] + }, + { + "affiliation": "Faculty of Mathematics and Information Science, Warsaw University of Technology, Warsaw, Poland", + "ror_ids": [ + "https://ror.org/00y0xnp53" + ] + }, + { + "affiliation": "Sydney Medical School, The University of Sydney, Sydney, NSW, Australia", + "ror_ids": [ + "https://ror.org/0384j8v12" + ] + }, + { + "affiliation": "Medical Oncology, Christchurch Hospital, Christchurch, Canterbury, New Zealand", + "ror_ids": [ + "https://ror.org/003nvpm64" + ] + }, + { + "affiliation": "University Hospital TU Dresden, Dresden, Germany", + "ror_ids": [ + "https://ror.org/042aqky30" + ] + }, + { + "affiliation": "U1227, University of Brest, INSERM, IBSAM, Brest, France", + "ror_ids": [ + "https://ror.org/02vjkv261" + ] + }, + { + "affiliation": "School of Mining and Geosciences, Nazarbayev University, Astana, Kazakhstan", + "ror_ids": [ + "https://ror.org/052bx8q98" + ] + }, + { + "affiliation": "Department of Electronic and Electrical Engineering, Southern University of Science and Technology, Shenzhen, China", + "ror_ids": [ + "https://ror.org/049tv2d57" + ] + }, + { + "affiliation": "College of Clinical Medicine for Obstetrics & Gynecology and Pediatrics, Fujian Medical University, Fuzhou, China", + "ror_ids": [ + "https://ror.org/050s6ns64" + ] + }, + { + "affiliation": "Division of Trauma, Emergency Surgery and Surgical Critical Care, Department of Surgery, Massachusetts General Hospital, Boston, MA, USA", + "ror_ids": [ + "https://ror.org/002pd6e78" + ] + }, + { + "affiliation": "Department of Plastic and Reconstructive Surgery, University Hospital Regensburg, Regensburg, Germany", + "ror_ids": [ + "https://ror.org/01226dv09" + ] + }, + { + "affiliation": "Nicholas School of the Environment, Duke University, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Department of Pharmacology, University of California, San Diego, La Jolla, CA, USA", + "ror_ids": [ + "https://ror.org/0168r3w48" + ] + }, + { + "affiliation": "College of Geology and Environment, Xi’an University of Science and Technology, Xi’an, China", + "ror_ids": [ + "https://ror.org/046fkpt18" + ] + }, + { + "affiliation": "College of Social Work, The Ohio State University, Columbus, OH, USA", + "ror_ids": [ + "https://ror.org/00rs6vg23" + ] + }, + { + "affiliation": "Department of Exercise Physiology, Faculty of Educational Sciences and Psychology, University of Mohaghegh Ardabili, Ardabil, Iran", + "ror_ids": [ + "https://ror.org/045zrcm98" + ] + }, + { + "affiliation": "Department of Geography, Diamond Harbour Women’s University, Sarisha, West Bengal, India", + "ror_ids": [ + "https://ror.org/04xt0wn96" + ] + }, + { + "affiliation": "Department of General Internal Medicine and Clinical Infectious Diseases, Fukushima Medical University, Fukushima, Japan", + "ror_ids": [ + "https://ror.org/012eh0r35" + ] + }, + { + "affiliation": "Institute for High Energy Physics of the Russian Federation, State Research Center “Kurchatov Institute”, Protvino (MO), Russia", + "ror_ids": [ + "https://ror.org/03kn4xv14", + "https://ror.org/00n1nz186" + ] + }, + { + "affiliation": "Department of Health & Exercise Science, Colorado State University, Fort Collins, CO, USA", + "ror_ids": [ + "https://ror.org/03k1gpj17" + ] + }, + { + "affiliation": "Department of Humanity and Science, School of Engineering, Indrashil University, Mehsana, Gujarat, India", + "ror_ids": [ + "https://ror.org/05tcdrk12" + ] + }, + { + "affiliation": "State Key Laboratory of Novel Software Technology, National Institute of Health-care Data Science, Nanjing University, Nanjing, China", + "ror_ids": [ + "https://ror.org/01rxvg760" + ] + }, + { + "affiliation": "Division of Endocrinology, Diabetes and Metabolism, Comprehensive Weight Control Center, Weill Cornell Medicine, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02r109517" + ] + }, + { + "affiliation": "Shanghai Center for Mathematical Sciences, Fudan University, Shanghai, China", + "ror_ids": [ + "https://ror.org/013q1eq08" + ] + }, + { + "affiliation": "School of Dentistry, University of Texas Health Science Center, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/02f6dcw23" + ] + }, + { + "affiliation": "Chair for Production Technology, Institute for Mechatronics, University of Innsbruck, Innsbruck, Austria", + "ror_ids": [ + "https://ror.org/054pv6659" + ] + }, + { + "affiliation": "Centre for Pollution Control and Environmental Engineering, Pondicherry University, Kalapet, Puducherry, India", + "ror_ids": [ + "https://ror.org/01a3mef16" + ] + }, + { + "affiliation": "MPH Student, Faculty of Public Health, University of Health Sciences, Vientiane, Lao People’s Democratic Republic", + "ror_ids": [ + "https://ror.org/02azxx136" + ] + }, + { + "affiliation": "Environment and Health, Amsterdam Institute for Life and Environment, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands", + "ror_ids": [ + "https://ror.org/008xxew50" + ] + }, + { + "affiliation": "Lancashire & South Cumbria NHS Foundation Trust, London, UK", + "ror_ids": [ + "https://ror.org/03zefc030" + ] + }, + { + "affiliation": "Department of Neuromedicine and Movement Science, NTNU, Faculty of Medicine, Norwegian University of Science and Technology, Trondheim, Norway", + "ror_ids": [ + "https://ror.org/05xg72x27" + ] + }, + { + "affiliation": "Department of Medical Biochemistry, Hamidiye School of Medicine, University of Health Sciences, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/03k7bde87" + ] + }, + { + "affiliation": "Department of Physics, Faculty of Sciences – University of Antananarivo, Antananarivo, Madagascar", + "ror_ids": [ + "https://ror.org/02w4gwv87" + ] + }, + { + "affiliation": "Department of Gastroenterology, The First Affiliated Hospital of Guangxi Medical University, Nanning, China", + "ror_ids": [ + "https://ror.org/030sc3x20" + ] + }, + { + "affiliation": "College of Animal Science and Veterinary Medicine, Henan Institute of Science and Technology, Xinxiang, Henan, China", + "ror_ids": [ + "https://ror.org/0578f1k82" + ] + }, + { + "affiliation": "Child Trauma Research Center, University of Regina, Regina, SK, Canada", + "ror_ids": [ + "https://ror.org/03dzc0485" + ] + }, + { + "affiliation": "Department of Neurosciences, Reproductive Sciences and Odontostomatology, School of Medicine, University of Naples “Federico II”, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Department of Urology, Chengdu Xinhua Hospital Affiliated to North Sichuan Medical College, Chengdu, China", + "ror_ids": [ + "https://ror.org/05k3sdc46" + ] + }, + { + "affiliation": "Department of Biomedical Engineering, University of California, Davis, USA", + "ror_ids": [ + "https://ror.org/05rrcem69" + ] + }, + { + "affiliation": "Laboratory of Vegetable Production, Department of Agriculture, Crop Production and Rural Environ-Ment, University of Thessaly, N. Ionia, Greece", + "ror_ids": [ + "https://ror.org/04v4g9h31" + ] + }, + { + "affiliation": "The Urban Institute School of Energy, Geoscience, Infrastructure and Society Heriot-Watt University Edinburgh, Edinburgh, UK", + "ror_ids": [ + "https://ror.org/04mghma93" + ] + }, + { + "affiliation": "Department of General Surgery, Faculty of Medicine, Kutahya Health Sciences University, Kutahya, Turkey", + "ror_ids": [] + }, + { + "affiliation": "Discipline of Public Health Medicine, School of Nursing and Public Health, University of KwaZulu-Natal, Durban, South Africa", + "ror_ids": [ + "https://ror.org/04qzfn040" + ] + }, + { + "affiliation": "Department of Pharmacy, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, China", + "ror_ids": [ + "https://ror.org/056swr059" + ] + }, + { + "affiliation": "Departamento de Química, Universidade Federal da Paraíba, João Pessoa, Paraíba, Brazil", + "ror_ids": [ + "https://ror.org/00p9vpz11" + ] + }, + { + "affiliation": "Department of CSBS, R.V.R & J.C College of Engineering, Guntur, India", + "ror_ids": [ + "https://ror.org/02mfapa96" + ] + }, + { + "affiliation": "Department of Physics, Virginia Commonwealth University, Richmond, VA, USA", + "ror_ids": [ + "https://ror.org/02nkdxk79" + ] + }, + { + "affiliation": "Department of Medical Education, Jeonbuk National University Medical School, Jeonju, Korea", + "ror_ids": [ + "https://ror.org/05q92br09" + ] + }, + { + "affiliation": "Key Laboratory of Carcinogenesis and Translational Research (Ministry of Education/Beijing), Key Laboratory for Research and Evaluation of Radiopharmaceuticals (National Medical Products Administration), Department of Nuclear Medicine, Peking University Cancer Hospital & Institute, , China", + "ror_ids": [ + "https://ror.org/00nyxxr91" + ] + }, + { + "affiliation": "Servicios Informáticos, Universidad de Salamanca, Salamanca, Spain", + "ror_ids": [ + "https://ror.org/02f40zc51" + ] + }, + { + "affiliation": "Department of Public Health, Occupational and Environmental Medicine, Faculty of Medicine, Suez Canal University, Ismailia, Egypt", + "ror_ids": [ + "https://ror.org/02m82p074" + ] + }, + { + "affiliation": "Department of Digital Systems, School of Economics and Technology, University of the Peloponnese, Sparta, Greece", + "ror_ids": [ + "https://ror.org/04d4d3c02" + ] + }, + { + "affiliation": "Department of Surgery, NTT Medical Center Tokyo, Tokyo, Japan", + "ror_ids": [ + "https://ror.org/0285prp25" + ] + }, + { + "affiliation": "Networking and Communications, SRM Institute of Science and Technology, Chennai, India", + "ror_ids": [ + "https://ror.org/050113w36" + ] + }, + { + "affiliation": "National Institute of Fitness and Sports in Kanoya, Kagoshima, Japan", + "ror_ids": [ + "https://ror.org/04n6qtb21" + ] + }, + { + "affiliation": "University Hospital Besançon, Besançon, France", + "ror_ids": [ + "https://ror.org/0084te143" + ] + }, + { + "affiliation": "Department of Radiology, West China Hospital, Sichuan University, Chengdu, Sichuan, China", + "ror_ids": [ + "https://ror.org/011ashp19", + "https://ror.org/007mrxy13" + ] + }, + { + "affiliation": "Technology Innovation Center for Smart Human Settlements and Spatial Planning & Governance, Ministry of Natural Resources, Beijing, China", + "ror_ids": [ + "https://ror.org/02kxqx159" + ] + }, + { + "affiliation": "University of Colorado Boulder, Department of Physics, Boulder, Colorado, USA", + "ror_ids": [ + "https://ror.org/02ttsq026" + ] + }, + { + "affiliation": "Department of Digital Health and Epidemiology, Graduate School of Medicine, Kyoto University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Institute of Educational Research, Ruhr-Universität Bochum, Bochum, Germany", + "ror_ids": [ + "https://ror.org/04tsk2644" + ] + }, + { + "affiliation": "Department of Mechanical and Power Engineering, East China University of Science and Technology, Shanghai, China", + "ror_ids": [ + "https://ror.org/01vyrm377" + ] + }, + { + "affiliation": "Department of Computer Education, Korea National University of Education, Cheongju, Republic of Korea", + "ror_ids": [ + "https://ror.org/03c9fpk55" + ] + }, + { + "affiliation": "Clinic’n’Cell SAS, UFR de Médecine et de Pharmacie, Clermont-Ferrand, TSA, France", + "ror_ids": [ + "https://ror.org/01a8ajp46" + ] + }, + { + "affiliation": "Department of Physiological Education, Chonnam National University, Gwangju, Republic of Korea", + "ror_ids": [ + "https://ror.org/05kzjxq56" + ] + }, + { + "affiliation": "Department of Reproductive Endocrinology, University Hospital Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/01462r250" + ] + }, + { + "affiliation": "Department of Physics, Technical University of Denmark, Lyngby, Denmark", + "ror_ids": [ + "https://ror.org/04qtj9h94" + ] + }, + { + "affiliation": "International Institute for Applied Systems Analysis (IIASA), Laxenburg, Austria", + "ror_ids": [ + "https://ror.org/02wfhk785" + ] + }, + { + "affiliation": "Kazim Karabekir Faculty of Education, Ataturk University, Erzurum, Türkiye", + "ror_ids": [ + "https://ror.org/03je5c526" + ] + }, + { + "affiliation": "Department of Surgery, Swiss HPB and Transplantation Centre, University Hospital Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/01462r250" + ] + }, + { + "affiliation": "Department of Epidemiology of Microbial Diseases, Yale School of Public Health, New Haven, CT, USA", + "ror_ids": [ + "https://ror.org/03v76x132" + ] + }, + { + "affiliation": "CHU Strasbourg University Hospital, Strasbourg, France", + "ror_ids": [ + "https://ror.org/00pg6eq24" + ] + }, + { + "affiliation": "Electronics and Communication Enggineering Department, National Institute of Technology, Silchar, Assam, India", + "ror_ids": [ + "https://ror.org/001ws2a36" + ] + }, + { + "affiliation": "RWU Hochschule Ravensburg-Weingarten, Hochschule für angewandte Wissenschaften, Weingarten, Deutschland", + "ror_ids": [ + "https://ror.org/01k5h5v15" + ] + }, + { + "affiliation": "Noncommunicable Diseases Research Center, Bam University of Medical Sciences, Bam, Iran", + "ror_ids": [ + "https://ror.org/02mm76478" + ] + }, + { + "affiliation": "Department of Neurosurgery, Faculty of Medicine, Mansoura University, Mansoura, Egypt", + "ror_ids": [ + "https://ror.org/01k8vtd75" + ] + }, + { + "affiliation": "Department of History and Philosophy of Science, University of Cambridge, Cambridge, UK", + "ror_ids": [ + "https://ror.org/013meh722" + ] + }, + { + "affiliation": "Canada Research Chair in Statistical Hydro-Climatology, Institut national de la recherche scientifique INRS-ETE, Quebec City, Canada", + "ror_ids": [ + "https://ror.org/04td37d32" + ] + }, + { + "affiliation": "Department of Pediatrics, Perelman School of Medicine, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/00b30xv10" + ] + }, + { + "affiliation": "Nuffield Department of Women’s & Reproductive Health, University of Oxford, Oxford, UK", + "ror_ids": [ + "https://ror.org/052gg0110" + ] + }, + { + "affiliation": "Department of Psychology, University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774" + ] + }, + { + "affiliation": "Department of Audiology, School of Rehabilitation Sciences, Hearing Disorder Research Center, Hamadan University of Medical Sciences, Hamadan, Iran", + "ror_ids": [ + "https://ror.org/02ekfbp48" + ] + }, + { + "affiliation": "Wellcome Wolfson Institute for Experimental Medicine, Queen’s University Belfast, Belfast, UK", + "ror_ids": [ + "https://ror.org/00hswnk62" + ] + }, + { + "affiliation": "Department of Food Engineering, Federal University of Triângulo Mineiro, Uberaba, MG, Brazil", + "ror_ids": [ + "https://ror.org/01av3m334" + ] + }, + { + "affiliation": "University of Illinois College of Medicine at Peoria, Peoria, IL, USA", + "ror_ids": [ + "https://ror.org/02qrdc062" + ] + }, + { + "affiliation": "Department of Chemical Engineering, Kwangwoon University, Seoul, Korea", + "ror_ids": [ + "https://ror.org/02e9zc863" + ] + }, + { + "affiliation": "Department of Economics, Soochow University, Taipei, Taiwan", + "ror_ids": [ + "https://ror.org/05kvm7n82" + ] + }, + { + "affiliation": "Graduate School of Natural and Applied Sciences, Department of Nanoscience and Nanotechnology, Izmir Katip Çelebi University, Izmir, Turkey", + "ror_ids": [ + "https://ror.org/024nx4843" + ] + }, + { + "affiliation": "Department of Medical Life Sciences, College of Medicine, The Catholic University of Korea, Seoul, Republic of Korea", + "ror_ids": [ + "https://ror.org/01fpnj063" + ] + }, + { + "affiliation": "TIFAC-CORE in Cyber Security, Amrita School of Engineering, Amrita Vishwa Vidyapeetham, Coimbatore, India", + "ror_ids": [ + "https://ror.org/03am10p12" + ] + }, + { + "affiliation": "Institut für Gesellschaftswissenschaften, Otto-von-Guericke-University Magdeburg, Magdeburg, Deutschland", + "ror_ids": [ + "https://ror.org/00ggpsq73" + ] + }, + { + "affiliation": "Department of Political and Administrative Studies, School of Humanities and Social Sciences, The University of Zambia, Lusaka, Zambia", + "ror_ids": [ + "https://ror.org/03gh19d69" + ] + }, + { + "affiliation": "Anhui Key Laboratory of Advanced Building Materials, Anhui Jianzhu University, Hefei, Anhui, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0108wjw08" + ] + }, + { + "affiliation": "MD Anderson Cancer Center UTHealth Graduate School of Biomedical Sciences, University of Texas, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/03gds6c39", + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "School of Medical Information and Engineering, Xuzhou Medical University, Xuzhou, Jiangsu, China", + "ror_ids": [ + "https://ror.org/04fe7hy80" + ] + }, + { + "affiliation": "Department of Computer Science, Guangzhou Software Institute, Guangzhou, Guangdong Province, China", + "ror_ids": [ + "https://ror.org/0493m8x04" + ] + }, + { + "affiliation": "Laboratory of Neuropathology – Department of Imaging and Pathology, KU Leuven, Leuven, Belgium", + "ror_ids": [ + "https://ror.org/05f950310" + ] + }, + { + "affiliation": "Department of Laboratory Medicine, Semmelweis University Faculty of Medicine, Budapest, Hungary", + "ror_ids": [ + "https://ror.org/01g9ty582" + ] + }, + { + "affiliation": "Center for Weather Forecasting and Climate Studies (CPTEC), National Institute for Space Research (INPE), Cachoeira Paulista, São Paulo, Brazil", + "ror_ids": [ + "https://ror.org/04xbn6x09" + ] + }, + { + "affiliation": "Stem Cell Research Lab, GROW Lab, Narayana Nethralaya Foundation, Narayana Nethralaya Eye Hospital, Bangalore, Karnataka, India", + "ror_ids": [ + "https://ror.org/02h8pgc47" + ] + }, + { + "affiliation": "Division of Geriatric Medicine, Dalhousie University, Halifax, NS, Canada", + "ror_ids": [ + "https://ror.org/01e6qks80" + ] + }, + { + "affiliation": "Aircraft Swarm Intelligent Sensing and Cooperative Control Key Laboratory of Sichuan Province, UESTC, Chengdu, Sichuan, China", + "ror_ids": [ + "https://ror.org/04qr3zq92" + ] + }, + { + "affiliation": "Department of Mathematics Faculty of Science, Chulalongkorn University, Bangkok 5, Thailand", + "ror_ids": [ + "https://ror.org/028wp3y58" + ] + }, + { + "affiliation": "Department of Traditional Chinese Medicine, Children’s Hospital, Zhejiang University School of Medicine, National Clinical Research Center for Child Health, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "Departamento de Quimica, Centro de Ciencias Exatas, Universidade Estadual de Londrina, Londrina, Paraná, Brazil", + "ror_ids": [ + "https://ror.org/01585b035" + ] + }, + { + "affiliation": "L3S Research Center, Leibniz University Hannover, Hanover, Germany", + "ror_ids": [ + "https://ror.org/0304hq317", + "https://ror.org/039t4wk02" + ] + }, + { + "affiliation": "Department of Public Health, University of Texas at San Antonio, San Antonio, TX, USA", + "ror_ids": [ + "https://ror.org/01kd65564" + ] + }, + { + "affiliation": "Department of Biomedical and Health Informatics, Data Science and Biostatistics Unit, Children’s Hospital of Philadelphia, Philadelphia, PA, USA", + "ror_ids": [ + "https://ror.org/01z7r7q48" + ] + }, + { + "affiliation": "Earth and Ocean Sciences, Nicholas School of the Environment, Duke University, Durham, NC, USA", + "ror_ids": [ + "https://ror.org/00py81415" + ] + }, + { + "affiliation": "Department of Economics, Turku School of Economics, University of Turku, Turku, Finland", + "ror_ids": [ + "https://ror.org/05vghhr25" + ] + }, + { + "affiliation": "Department of Radiology, Children’s Hospital Medical Center, Tehran University of Medical Sciences, Tehran, Iran", + "ror_ids": [ + "https://ror.org/01c4pz451" + ] + }, + { + "affiliation": "Northwell Health Cancer Institute, Lenox Hill Hospital, New York, NY, USA", + "ror_ids": [ + "https://ror.org/0231d2y50" + ] + }, + { + "affiliation": "Health First Heart and Vascular, Melbourne, FL, USA", + "ror_ids": [ + "https://ror.org/00cm7z053" + ] + }, + { + "affiliation": "Faculty of Medicine and University Hospital Cologne, Policlinic for Endocrinology, Diabetology and Preventive Medicine (PEPD), University of Cologne, Cologne, Germany", + "ror_ids": [ + "https://ror.org/00rcxh774", + "https://ror.org/05mxhda18" + ] + }, + { + "affiliation": "MoE Key Lab of Artificial Intelligence, Shanghai Jiao Tong University, Shanghai, China", + "ror_ids": [ + "https://ror.org/0220qvk04" + ] + }, + { + "affiliation": "Faculty of Health Sciences, Valencian International University, Valencia, Spain", + "ror_ids": [ + "https://ror.org/00gjj5n39" + ] + }, + { + "affiliation": "Department of Mathematics, Bar-Ilan University, Ramat-Gan, Israel", + "ror_ids": [ + "https://ror.org/03kgsv495" + ] + }, + { + "affiliation": "Department of Electrical and Computer Engineering, University of Saskatchewan, Saskatoon, Saskatchewan, Canada", + "ror_ids": [ + "https://ror.org/010x8gc63" + ] + }, + { + "affiliation": "Department of Industrial Engineering, Yildiz Technical University, Istanbul, Turkey", + "ror_ids": [ + "https://ror.org/0547yzj13" + ] + }, + { + "affiliation": "Department of Electric and Energy, Vocational Scholl of Technical Science, Fırat University, Elazığ, Turkey", + "ror_ids": [ + "https://ror.org/05teb7b63" + ] + }, + { + "affiliation": "Third World Center for Science and Technology, H.E.J. Research Institute of Chemistry, International Centre for Chemical and Biological Sciences (ICCBS), University of Karachi, Karachi, Pakistan", + "ror_ids": [ + "https://ror.org/05bbbc791" + ] + }, + { + "affiliation": "IDG/McGovern Institute for Brain Research, Beijing Normal University, Beijing, China", + "ror_ids": [ + "https://ror.org/022k4wk35" + ] + }, + { + "affiliation": "State Key Laboratory of New Ceramics and Fine Processing, School of Materials Science and Engineering, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Surgery, State University of New York, Upstate Medical University, Syracuse, NY, USA", + "ror_ids": [ + "https://ror.org/040kfrw16" + ] + }, + { + "affiliation": "Laboratory of Pharmacology of Natural and Synthetic Products, Institute of Biological Sciences, Federal University of Goiás, Goiania, Brazil", + "ror_ids": [ + "https://ror.org/0039d5757" + ] + }, + { + "affiliation": "Department of Clinical Medical College, Shanxi Datong University, Datong, China", + "ror_ids": [ + "https://ror.org/03s8xc553" + ] + }, + { + "affiliation": "Department of Endocrinology, Centre for Diabetes Endocrinology & Metabolism, University College of Medical Sciences (University of Delhi) & GTB Hospital, Delhi, India", + "ror_ids": [ + "https://ror.org/04gzb2213", + "https://ror.org/01h3fm945" + ] + }, + { + "affiliation": "Department of Medical Pharmacology, Faculty of Medicine, Ataturk University, Erzurum, Turkey", + "ror_ids": [ + "https://ror.org/03je5c526" + ] + }, + { + "affiliation": "Department of Genitourinary Medical Oncology, The University of Texas MD Anderson Cancer Center, Houston, TX, USA", + "ror_ids": [ + "https://ror.org/04twxam07" + ] + }, + { + "affiliation": "Department of Colorectal Surgery, Intestinal Rehabilitation Unit, St Mark’s Hospital, London, UK", + "ror_ids": [ + "https://ror.org/05am5g719" + ] + }, + { + "affiliation": "Anhui Province Key Laboratory of Tissue Transplantation and School of Life Sciences, Bengbu Medical College, Bengbu, China", + "ror_ids": [ + "https://ror.org/01f8qvj05" + ] + }, + { + "affiliation": "Department of Computer Science, University of Sherbrooke, Sherbrooke, Canada", + "ror_ids": [ + "https://ror.org/00kybxq39" + ] + }, + { + "affiliation": "State Key Laboratory of Coal Mining and Clean Utilization, China Coal Research Institute, Beijing, China", + "ror_ids": [ + "https://ror.org/05dy2c135" + ] + }, + { + "affiliation": "Institute Medical Sciences, Canterbury Christ Church University, Canterbury, Kent, UK", + "ror_ids": [ + "https://ror.org/0489ggv38" + ] + }, + { + "affiliation": "School of Education, Shihezi University, Shihezi, Xinjiang, China", + "ror_ids": [ + "https://ror.org/04x0kvm78" + ] + }, + { + "affiliation": "Department of Clinical Sciences Lund, Rheumatology, and the Clinic for Rheumatology, Skåne University Hospital, Lund University, Lund, Sweden", + "ror_ids": [ + "https://ror.org/012a77v79", + "https://ror.org/02z31g829" + ] + }, + { + "affiliation": "Department of Surgical Science, University of Cagliari, Cagliari, Italy", + "ror_ids": [ + "https://ror.org/003109y17" + ] + }, + { + "affiliation": "School of Mathematics & Statistics, Nanjing University of Science and Technology, Nanjing, China", + "ror_ids": [ + "https://ror.org/00xp9wg62" + ] + }, + { + "affiliation": "Dyeing, Printing and Textile Auxiliaries Department, Textile Research and Technology Institute, National Research Centre, Dokki, Giza, Egypt", + "ror_ids": [ + "https://ror.org/02n85j827" + ] + }, + { + "affiliation": "Department of Psychology, San Diego State University, San Diego, CA, USA", + "ror_ids": [ + "https://ror.org/0264fdx42" + ] + }, + { + "affiliation": "Tecnologico de Monterrey, Campus Estado de México, Cd. López Mateos, México", + "ror_ids": [ + "https://ror.org/03ayjn504" + ] + }, + { + "affiliation": "Department of Applied Physics, Eindhoven University of Technology, Eindhoven, The Netherlands", + "ror_ids": [ + "https://ror.org/02c2kyt77" + ] + }, + { + "affiliation": "Department of Cardiology, Bispebjerg-Frederiksberg Hospital, Copenhagen, Denmark", + "ror_ids": [ + "https://ror.org/00d264c35" + ] + }, + { + "affiliation": "Yesenin Ryazan State University, Ryazan, Russia", + "ror_ids": [ + "https://ror.org/0562zzt06" + ] + }, + { + "affiliation": "Department of Advanced Biomedical Sciences, Section of Cardiology, Federico II University, Naples, Italy", + "ror_ids": [ + "https://ror.org/05290cv24" + ] + }, + { + "affiliation": "Florida A&M University-Florida State University College of Engineering, Tallahassee, FL, USA", + "ror_ids": [ + "https://ror.org/00c4wc133", + "https://ror.org/01v4tq883" + ] + }, + { + "affiliation": "School of Medicine, Southern University of Science and Technology, Shenzhen, China", + "ror_ids": [ + "https://ror.org/049tv2d57" + ] + }, + { + "affiliation": "Instituto de Investigaciones en Ciencia Y Tecnología de Materiales (INTEMA-CONICET-UNMDP), Mar del Plata, Argentina", + "ror_ids": [ + "https://ror.org/034s8ev31" + ] + }, + { + "affiliation": "Fakultät für Mathematik und Naturwissenschaften, Bergische Universität Wuppertal, Wuppertal, Germany", + "ror_ids": [ + "https://ror.org/00613ak93" + ] + }, + { + "affiliation": "School of Medicine, Eastern Virginia Medical School, Norfolk, VA, USA", + "ror_ids": [ + "https://ror.org/056hr4255" + ] + }, + { + "affiliation": "Department of Plant Biology and Biodiversity Management, Addis Ababa University, Addis Ababa, Ethiopia", + "ror_ids": [ + "https://ror.org/038b8e254" + ] + }, + { + "affiliation": "Laboratory of Clinical Investigation, Intramural Research Program, National Institute On Aging, National Institutes of Health, Baltimore, MD, USA", + "ror_ids": [ + "https://ror.org/049v75w11" + ] + }, + { + "affiliation": "Center for Computational and Theoretical Biology, University of Würzburg, Würzburg, Germany", + "ror_ids": [ + "https://ror.org/00fbnyb24" + ] + }, + { + "affiliation": "Renewable Energy, Al Al-Bayt University, Mafraq, Jordan", + "ror_ids": [ + "https://ror.org/028jh2126" + ] + }, + { + "affiliation": "School of Pharmaceutical Sciences, Zhengzhou University, Zhengzhou, Henan, China", + "ror_ids": [ + "https://ror.org/04ypx8c21" + ] + }, + { + "affiliation": "Faculty of Psychology and Educational Sciences, Department of Psychology, Ludwig-Maximilian University, Munich, Germany", + "ror_ids": [ + "https://ror.org/05591te55" + ] + }, + { + "affiliation": "Department of Civil Engineering, MNNIT Allahabad, Allahabad, India", + "ror_ids": [ + "https://ror.org/04dp7tp96" + ] + }, + { + "affiliation": "Beijing Key Laboratory of Construction Tailorable Advanced Functional Materials and Green Applications, School of Materials Science and Engineering, Beijing Institute of Technology, Beijing, China", + "ror_ids": [ + "https://ror.org/01skt4w74" + ] + }, + { + "affiliation": "Department of Mechanical Engineering, College of Engineering Guindy, Anna University, Chennai, India", + "ror_ids": [ + "https://ror.org/01qhf1r47" + ] + }, + { + "affiliation": "Belgorod State National Research University, Belgorod, Russia", + "ror_ids": [ + "https://ror.org/044cm3z84" + ] + }, + { + "affiliation": "Theodor Kocher Institute, University of Bern, Bern, Switzerland", + "ror_ids": [ + "https://ror.org/02k7v4d05" + ] + }, + { + "affiliation": "Information Materials and Intelligent Sensing Laboratory of Anhui Province, Anhui University, Hefei, Anhui, China", + "ror_ids": [ + "https://ror.org/05th6yx34" + ] + }, + { + "affiliation": "Department of Environmental and Occupational Health, School of Public Health, Indiana University, Bloomington, IN, USA", + "ror_ids": [ + "https://ror.org/02k40bc56" + ] + }, + { + "affiliation": "Department of Neurosurgery, Hokkaido University Hospital, Sapporo, Hokkaido, Japan", + "ror_ids": [ + "https://ror.org/0419drx70" + ] + }, + { + "affiliation": "School of Psychology, The University of Adelaide, Adelaide, South Australia, Australia", + "ror_ids": [ + "https://ror.org/00892tw58" + ] + }, + { + "affiliation": "Department of the Built Environment, Eindhoven University of Technology, Eindhoven, The Netherlands", + "ror_ids": [ + "https://ror.org/02c2kyt77" + ] + }, + { + "affiliation": "Department of Mathematics, Chonnam National University, Gwangju, Korea", + "ror_ids": [ + "https://ror.org/05kzjxq56" + ] + }, + { + "affiliation": "Institute of Biology, National Institute in Science and Technology in Interdisciplinary and Transdisciplinary Studies in Ecology and Evolution (INCT-IN-TREE), Federal University of Bahia, Bahia, Brazil", + "ror_ids": [ + "https://ror.org/03k3p7647" + ] + }, + { + "affiliation": "Department of Master of Islamic Education, Universitas Muhammadiyah Surakarta, Surakarta, Indonesia", + "ror_ids": [ + "https://ror.org/03cnmz153" + ] + }, + { + "affiliation": "Thyroid Center LUKS, Lucerne, Switzerland", + "ror_ids": [ + "https://ror.org/02zk3am42" + ] + }, + { + "affiliation": "Institut für Gesundheitswissenschaften, Universität zu Lübeck, Lübeck, Deutschland", + "ror_ids": [ + "https://ror.org/00t3r8h32" + ] + }, + { + "affiliation": "University of Melbourne Centre for Cancer Research, VCCC, Melbourne, Victoria, Australia", + "ror_ids": [ + "https://ror.org/01ej9dk98", + "https://ror.org/00st91468" + ] + }, + { + "affiliation": "Department of Biology and Biotechnologies “Charles Darwin”, Sapienza University of Rome, Rome, Italy", + "ror_ids": [ + "https://ror.org/02be6w209" + ] + }, + { + "affiliation": "Department of Pathology and Laboratory Medicine, Taichung Veterans General Hospital, Taichung, Taiwan", + "ror_ids": [ + "https://ror.org/00e87hq62" + ] + }, + { + "affiliation": "Center for Metabolomics, Scripps Research Institute, La Jolla, CA, USA", + "ror_ids": [ + "https://ror.org/02dxx6824" + ] + }, + { + "affiliation": "College of Computer Science and Technology, Harbin Engineering University, Harbin, China", + "ror_ids": [ + "https://ror.org/03x80pn82" + ] + }, + { + "affiliation": "Hospital Moinhos de Vento, R. Ramiro Barcelos, Porto Alegre, RS, Brazil", + "ror_ids": [ + "https://ror.org/009gqrs30" + ] + }, + { + "affiliation": "State Key Laboratory of Advanced Technology for Materials Synthesis and Processing, Nanostructure Research Center, Wuhan University of Technology, Wuhan, China", + "ror_ids": [ + "https://ror.org/03fe7t173" + ] + }, + { + "affiliation": "Faculty of Pure and Applied Mathematics, Wrocław University of Science and Technology, Wrocław, Poland", + "ror_ids": [ + "https://ror.org/008fyn775" + ] + }, + { + "affiliation": "Department of Surgery, Renaissance School of Medicine, Stony Brook, NY, USA", + "ror_ids": [ + "https://ror.org/05qghxh33" + ] + }, + { + "affiliation": "Ospedale Generale Regionale ‘F. Miulli’, Bari, Italy", + "ror_ids": [ + "https://ror.org/03djvm380" + ] + }, + { + "affiliation": "School of Sociology, Beijing Normal University, Beijing, China", + "ror_ids": [ + "https://ror.org/022k4wk35" + ] + }, + { + "affiliation": "Istituto Nazionale di Geofisica e Vulcanologia, Rome, Italy", + "ror_ids": [ + "https://ror.org/00qps9a02" + ] + }, + { + "affiliation": "Chemistry Department, Faculty of Science, Beni-Suef University, Beni-Suef, Egypt", + "ror_ids": [ + "https://ror.org/05pn4yv70" + ] + }, + { + "affiliation": "Georgetown University Linguistics, Washington, DC, USA", + "ror_ids": [ + "https://ror.org/05vzafd60" + ] + }, + { + "affiliation": "School of Soil and Water Conservation, Beijing Forestry University, Beijing, China", + "ror_ids": [ + "https://ror.org/04xv2pc41" + ] + }, + { + "affiliation": "Department of Biostatistics, University of Georgia, Athens, GA, USA", + "ror_ids": [ + "https://ror.org/02bjhwk41" + ] + }, + { + "affiliation": "Faculty of Physical Education and Physiotherapy, Federal University of Amazonas - UFAM, Manaus, Brazil", + "ror_ids": [ + "https://ror.org/02263ky35" + ] + }, + { + "affiliation": "Department of Clinical Sciences, Faculty of Veterinary Medicine, Shahrekord University, Shahrekord, Iran", + "ror_ids": [ + "https://ror.org/051rngw70" + ] + }, + { + "affiliation": "Department of Materials Science of Semiconductors and Dielectrics, National University of Science and Technology “MISIS”, Moscow, Russia", + "ror_ids": [ + "https://ror.org/019vsm959" + ] + }, + { + "affiliation": "Centre for Interdisciplinary Social Research, Phenikaa University, Hanoi, Viet Nam", + "ror_ids": [ + "https://ror.org/03anxx281" + ] + }, + { + "affiliation": "Department of Surgery, Pediatric Service, Memorial Sloan Kettering Cancer Center, New York, NY, USA", + "ror_ids": [ + "https://ror.org/02yrq0923" + ] + }, + { + "affiliation": "College of Optical, Mechanical and Electrical Engineering, Institute of Carbon Neutrality, Zhejiang A&F University, Hangzhou, Zhejiang, China", + "ror_ids": [ + "https://ror.org/02vj4rn06" + ] + }, + { + "affiliation": "Department of Biology, Massachusetts College of Liberal Arts, North Adams, MA, USA", + "ror_ids": [ + "https://ror.org/01ka28180" + ] + }, + { + "affiliation": "Conservative Dentistry Unit, School of Dental Sciences, Universiti Sains Malaysia, Kubang Kerian, Kelantan, Malaysia", + "ror_ids": [ + "https://ror.org/02rgb2k63" + ] + }, + { + "affiliation": "Department of Intelligence Science and Technology, Graduate School of Informatics, Kyoto University, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/02kpeqv85" + ] + }, + { + "affiliation": "Faculty of Health and Sports Science, Doshisha University, Kyotanabe, Kyoto, Japan", + "ror_ids": [ + "https://ror.org/01fxdkm29" + ] + }, + { + "affiliation": "Environmental Simulation and Pollution Control State Key Joint Laboratory, State Environmental Protection Key Laboratory of Microorganism Application and Risk Control (SMARC), School of Environment, Tsinghua University, Beijing, China", + "ror_ids": [ + "https://ror.org/03cve4549" + ] + }, + { + "affiliation": "Key Laboratory of the Provincial Education, Department of Heilongjiang for Common Animal Disease Prevention and Treatment, Northeast Agricultural University, Harbin, People’s Republic of China", + "ror_ids": [ + "https://ror.org/0515nd386" + ] + }, + { + "affiliation": "Laboratoire de Chimie Moléculaire, Matériaux et Environnement (LCM2E), Faculté Pluridisciplinaire de Nador, Université Mohammed 1er, Nador, Morocco", + "ror_ids": [ + "https://ror.org/01ejxf797" + ] + }, + { + "affiliation": "Ministry of Land, Infrastructure, Transport, and Tourism (now at Public Works Research Institute), Nara, Japan", + "ror_ids": [ + "https://ror.org/00b0p4j69", + "https://ror.org/04b8j4a33" + ] + }, + { + "affiliation": "Human Flourishing Program, Institute of Quantitative Social Science, Harvard University, Cambridge, MA, USA", + "ror_ids": [ + "https://ror.org/03vek6s52" + ] + }, + { + "affiliation": "Edinburgh Medical School: Medical Education, University of Edinburgh, Edinburgh, Scotland", + "ror_ids": [ + "https://ror.org/01nrxwf90" + ] + }, + { + "affiliation": "Department of Trauma Surgery, St. Antonius Hospital, Utrecht, The Netherlands", + "ror_ids": [ + "https://ror.org/01jvpb595" + ] + }, + { + "affiliation": "Department of Plant Sciences, University of Hyderabad, Hyderabad, Telangana, India", + "ror_ids": [ + "https://ror.org/04a7rxb17" + ] + }, + { + "affiliation": "Institute of Artificial Intelligence, Soochow University, Suzhou, China", + "ror_ids": [ + "https://ror.org/05t8y2r12" + ] + }, + { + "affiliation": "Department of Mathematics and Computer Science, University of Manitoba, Brandon, MB, Canada", + "ror_ids": [ + "https://ror.org/02gfys938" + ] + }, + { + "affiliation": "The People’s Hospital of Guangxi Zhuang Autonomous Region, Nanning, Guangxi, People’s Republic of China", + "ror_ids": [ + "https://ror.org/02aa8kj12" + ] + }, + { + "affiliation": "RCE Graz-Styria – Zentrum für nachhaltige Gesellschaftstransformation, Universität Graz, Graz, Austria", + "ror_ids": [ + "https://ror.org/01faaaf77" + ] + }, + { + "affiliation": "Centre for Advanced Structural Materials, City University of Hong Kong Shenzhen Research Institute, Greater Bay Joint Division, Shenyang National Laboratory for Materials Science, Shenzhen, People’s Republic of China", + "ror_ids": [ + "https://ror.org/00xc0ma20", + "https://ror.org/03q8dnn23" + ] + }, + { + "affiliation": "Department of Anesthesiology, the First Hospital of Wuhan, Wuhan, China", + "ror_ids": [ + "https://ror.org/021ty3131" + ] + }, + { + "affiliation": "Department of Chiropractic Medicine, Faculty of Medicine, Balgrist University Hospital, University of Zurich, Zurich, Switzerland", + "ror_ids": [ + "https://ror.org/02crff812" + ] + }, + { + "affiliation": "Haematology Department of Shengjing Hospital, China Medical University, Shenyang, Liaoning, P.R. China", + "ror_ids": [ + "https://ror.org/032d4f246" + ] + }, + { + "affiliation": "Agricultural Experiment Station, Zhejiang University, Hangzhou, China", + "ror_ids": [ + "https://ror.org/00a2xv884" + ] + }, + { + "affiliation": "School of Mathematics, University of East Anglia, Norwich, UK", + "ror_ids": [ + "https://ror.org/026k5mg93" + ] + }, + { + "affiliation": "School of Pathology and Laboratory Medicine, University of Western Australia, Perth, Australia", + "ror_ids": [ + "https://ror.org/047272k79" + ] + }, + { + "affiliation": "Klinik für Geburtshilfe und Pränatalmedizin, Universitätsklinikum Hamburg-Eppendorf (UKE), Hamburg, Deutschland", + "ror_ids": [ + "https://ror.org/01zgy1s35" + ] + }, + { + "affiliation": "Department of Neurosurgery, Lu’an Hospital Affiliated to Anhui Medical University, Lu’an, China", + "ror_ids": [ + "https://ror.org/03xb04968" + ] + }, + { + "affiliation": "CDS-Creative Data Solutions, Colfax, CA, USA", + "ror_ids": [ + "https://ror.org/0429eqk16" + ] + }, + { + "affiliation": "The Henryk Niewodniczanski Institute of Nuclear Physics, Polish Academy of Sciences, Cracow, Poland", + "ror_ids": [ + "https://ror.org/01dr6c206", + "https://ror.org/01n78t774" + ] + } +] \ No newline at end of file diff --git a/rorapi/tests/tests_affiliations/tests_matching_v1.py b/rorapi/tests/tests_affiliations/tests_matching_v1.py new file mode 100644 index 00000000..324f5b5a --- /dev/null +++ b/rorapi/tests/tests_affiliations/tests_matching_v1.py @@ -0,0 +1,137 @@ +import json +import os +import re +import time +import requests + +from django.test import SimpleTestCase +from statsmodels.stats.api import proportion_confint + +ACCURACY_MIN = 0.885741 +PRECISION_MIN = 0.915426 +RECALL_MIN = 0.920048 + +API_URL = os.environ.get('ROR_BASE_URL', 'http://localhost') +API_VERSION = 'v1' +TEST_DATASET_SPRINGER = "dataset_affiliations_springer_2023_10_31.json" +TEST_DATASET_CROSSREF = "dataset_affiliations_crossref_2024_02_19.json" + + +class AffiliationMatchingSpringerTestCase(SimpleTestCase): + def match(self, affiliation): + affiliation = re.sub(r'([\+\-=\&\|>= ACCURACY_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(r) for r in self.results]) + precision = correct / total + print('Precision: {} {}'.format(precision, + proportion_confint(correct, total))) + self.assertTrue(precision >= PRECISION_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(d.get('ror_ids')) for d in self.dataset]) + recall = correct / total + print('Recall: {} {}'.format(recall, + proportion_confint(correct, total))) + self.assertTrue(recall >= RECALL_MIN) + +class AffiliationMatchingCrossrefTestCase(SimpleTestCase): + def match(self, affiliation): + affiliation = re.sub(r'([\+\-=\&\|>= ACCURACY_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(r) for r in self.results]) + precision = correct / total + print('Precision: {} {}'.format(precision, + proportion_confint(correct, total))) + self.assertTrue(precision >= PRECISION_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(d.get('ror_ids')) for d in self.dataset]) + recall = correct / total + print('Recall: {} {}'.format(recall, + proportion_confint(correct, total))) + self.assertTrue(recall >= RECALL_MIN) + diff --git a/rorapi/tests/tests_affiliations/tests_matching_v2.py b/rorapi/tests/tests_affiliations/tests_matching_v2.py new file mode 100644 index 00000000..da5b76a3 --- /dev/null +++ b/rorapi/tests/tests_affiliations/tests_matching_v2.py @@ -0,0 +1,255 @@ +import json +import os +import re +import time +import requests + +from django.test import SimpleTestCase +from statsmodels.stats.api import proportion_confint + +ACCURACY_MIN = 0.7300 +PRECISION_MIN = 0.9500 +RECALL_MIN = 0.7000 + +API_URL = os.environ.get('ROR_BASE_URL', 'http://localhost') +TEST_DATASET_SPRINGER = "dataset_affiliations_springer_2023_10_31.json" +TEST_DATASET_CROSSREF = "dataset_affiliations_crossref_2024_02_19.json" + + +class AffiliationMatchingSpringerSingleSearchTestCase(SimpleTestCase): + def match(self, affiliation): + affiliation = re.sub(r'([\+\-=\&\|>= ACCURACY_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(r) for r in self.results]) + precision = correct / total + print('Precision: {} {}'.format(precision, + proportion_confint(correct, total))) + self.assertTrue(precision >= PRECISION_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(d.get('ror_ids')) for d in self.dataset]) + recall = correct / total + print('Recall: {} {}'.format(recall, + proportion_confint(correct, total))) + self.assertTrue(recall >= RECALL_MIN) + +class AffiliationMatchingCrossrefSingleSearchTestCase(SimpleTestCase): + def match(self, affiliation): + affiliation = re.sub(r'([\+\-=\&\|>= ACCURACY_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(r) for r in self.results]) + precision = correct / total + print('Precision: {} {}'.format(precision, + proportion_confint(correct, total))) + self.assertTrue(precision >= PRECISION_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(d.get('ror_ids')) for d in self.dataset]) + recall = correct / total + print('Recall: {} {}'.format(recall, + proportion_confint(correct, total))) + self.assertTrue(recall >= RECALL_MIN) + +class AffiliationMatchingSpringerTestCase(SimpleTestCase): + def match(self, affiliation): + affiliation = re.sub(r'([\+\-=\&\|>= ACCURACY_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(r) for r in self.results]) + precision = correct / total + print('Precision: {} {}'.format(precision, + proportion_confint(correct, total))) + self.assertTrue(precision >= PRECISION_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(d.get('ror_ids')) for d in self.dataset]) + recall = correct / total + print('Recall: {} {}'.format(recall, + proportion_confint(correct, total))) + self.assertTrue(recall >= RECALL_MIN) + +class AffiliationMatchingCrossrefTestCase(SimpleTestCase): + def match(self, affiliation): + affiliation = re.sub(r'([\+\-=\&\|>= ACCURACY_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(r) for r in self.results]) + precision = correct / total + print('Precision: {} {}'.format(precision, + proportion_confint(correct, total))) + self.assertTrue(precision >= PRECISION_MIN) + + correct = sum([ + len(set(r).intersection(set(d.get('ror_ids')))) + for d, r in zip(self.dataset, self.results) + ]) + total = sum([len(d.get('ror_ids')) for d in self.dataset]) + recall = correct / total + print('Recall: {} {}'.format(recall, + proportion_confint(correct, total))) + self.assertTrue(recall >= RECALL_MIN) \ No newline at end of file diff --git a/rorapi/tests/tests_functional/tests_matching_v1.py b/rorapi/tests/tests_functional/tests_matching_v1.py deleted file mode 100644 index ba0d7214..00000000 --- a/rorapi/tests/tests_functional/tests_matching_v1.py +++ /dev/null @@ -1,79 +0,0 @@ -import json -import os -import re -import requests - -from django.test import SimpleTestCase -from statsmodels.stats.api import proportion_confint - -ACCURACY_MIN = 0.885741 -PRECISION_MIN = 0.915426 -RECALL_MIN = 0.920048 - -API_URL = os.environ.get('ROR_BASE_URL', 'http://localhost') -API_VERSION = 'v1' -TEST_DATASET_1 = "dataset_affiliations_springer_2023_10_31.json" -TEST_DATASET_2 = "dataset_affiliations_crossref_2024_02_19.json" - - -class AffiliationMatchingTestCase(SimpleTestCase): - def match(self, affiliation): - affiliation = re.sub(r'([\+\-=\&\|>= ACCURACY_MIN) - - correct = sum([ - len(set(r).intersection(set(d.get('ror_ids')))) - for d, r in zip(self.dataset, self.results) - ]) - total = sum([len(r) for r in self.results]) - precision = correct / total - print('Precision: {} {}'.format(precision, - proportion_confint(correct, total))) - self.assertTrue(precision >= PRECISION_MIN) - - correct = sum([ - len(set(r).intersection(set(d.get('ror_ids')))) - for d, r in zip(self.dataset, self.results) - ]) - total = sum([len(d.get('ror_ids')) for d in self.dataset]) - recall = correct / total - print('Recall: {} {}'.format(recall, - proportion_confint(correct, total))) - self.assertTrue(recall >= RECALL_MIN) diff --git a/rorapi/tests/tests_functional/tests_matching_v2.py b/rorapi/tests/tests_functional/tests_matching_v2.py deleted file mode 100644 index 1fbd8df6..00000000 --- a/rorapi/tests/tests_functional/tests_matching_v2.py +++ /dev/null @@ -1,84 +0,0 @@ -import json -import os -import re -import requests - -from django.test import SimpleTestCase -from statsmodels.stats.api import proportion_confint - -ACCURACY_MIN = 0.885741 -PRECISION_MIN = 0.915426 -RECALL_MIN = 0.920048 - -API_URL = os.environ.get('ROR_BASE_URL', 'http://localhost') -TEST_DATASET_1 = "dataset_affiliations_springer_2023_10_31.json" -TEST_DATASET_2 = "dataset_affiliations_crossref_2024_02_19.json" - - -class AffiliationMatchingTestCase(SimpleTestCase): - def match(self, affiliation, single_search=False): - affiliation = re.sub(r'([\+\-=\&\|>= ACCURACY_MIN) - - correct = sum([ - len(set(r).intersection(set(d.get('ror_ids')))) - for d, r in zip(self.dataset, self.results) - ]) - total = sum([len(r) for r in self.results]) - precision = correct / total - print('Precision: {} {}'.format(precision, - proportion_confint(correct, total))) - self.assertTrue(precision >= PRECISION_MIN) - - correct = sum([ - len(set(r).intersection(set(d.get('ror_ids')))) - for d, r in zip(self.dataset, self.results) - ]) - total = sum([len(d.get('ror_ids')) for d in self.dataset]) - recall = correct / total - print('Recall: {} {}'.format(recall, - proportion_confint(correct, total))) - self.assertTrue(recall >= RECALL_MIN) From c75787feac51d482f315b47f324dbd732ac6c3f7 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Wed, 10 Sep 2025 16:05:53 -0400 Subject: [PATCH 03/33] Adding single search --- .github/workflows/dev.yml | 2 +- rorapi/common/matching_single_search.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index ad35c53b..5f6383ee 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -87,7 +87,7 @@ jobs: working-directory: ./ror-api run: | python manage.py test rorapi.tests.tests_unit - python manage.py test rorapi.tests.tests_affiliations + # python manage.py test rorapi.tests.tests_affiliations # TODO fix these tests running in GitHub Action # python manage.py test rorapi.tests_integration # python manage.py test rorapi.tests_functional diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index c2b993c2..88f99072 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -262,7 +262,7 @@ def match_by_query(text, query, countries): chosen_candidate = choose_candidate(rescored_candidates) if chosen_candidate: if (countries - and to_region(chosen_candidate[0]["_source"]["locations"][0]["geonames_details"]["country_code"]) + and to_region(chosen_candidate.organization["_source"]["locations"][0]["geonames_details"]["country_code"]) not in countries): pass else: From e9c0325942445cb4b5c0225d596015d527463df0 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Wed, 10 Sep 2025 17:32:41 -0400 Subject: [PATCH 04/33] Adding single search --- rorapi/common/views.py | 3 ++- rorapi/tests/tests_affiliations/tests_matching_v1.py | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/rorapi/common/views.py b/rorapi/common/views.py index 73bb95ec..6248b8e4 100644 --- a/rorapi/common/views.py +++ b/rorapi/common/views.py @@ -158,7 +158,8 @@ def list(self, request, version=REST_FRAMEWORK["DEFAULT_VERSION"]): if "affiliation" in params: if version == "v2": if "single_search" in params: - errors, organizations = single_search_match_organizations(params, version) + errors, organizations = match_organizations(params, version) + # errors, organizations = single_search_match_organizations(params, version) else: errors, organizations = match_organizations(params, version) else: diff --git a/rorapi/tests/tests_affiliations/tests_matching_v1.py b/rorapi/tests/tests_affiliations/tests_matching_v1.py index 324f5b5a..ed382e11 100644 --- a/rorapi/tests/tests_affiliations/tests_matching_v1.py +++ b/rorapi/tests/tests_affiliations/tests_matching_v1.py @@ -7,9 +7,9 @@ from django.test import SimpleTestCase from statsmodels.stats.api import proportion_confint -ACCURACY_MIN = 0.885741 -PRECISION_MIN = 0.915426 -RECALL_MIN = 0.920048 +ACCURACY_MIN = 0.7000 +PRECISION_MIN = 0.9000 +RECALL_MIN = 0.6000 API_URL = os.environ.get('ROR_BASE_URL', 'http://localhost') API_VERSION = 'v1' From 6538b2df3277e6af5f48aa98b521c45bc0f6bf75 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Wed, 10 Sep 2025 17:47:19 -0400 Subject: [PATCH 05/33] Adding single search --- rorapi/common/matching_single_search.py | 19 +++++++++++-------- rorapi/common/views.py | 4 ++-- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 88f99072..209df3a4 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -314,12 +314,15 @@ def match_affiliation(affiliation, active_only, version): def match_organizations(params, version): if "affiliation" in params: - active_only = True - if "all_status" in params: - if params["all_status"] == "" or params["all_status"].lower() == "true": - active_only = False - matched = match_affiliation(params.get("affiliation"), active_only, version) - if version == "v2": - return None, MatchingResultV2(matched) - return None, MatchingResultV1(matched) + try: + active_only = True + if "all_status" in params: + if params["all_status"] == "" or params["all_status"].lower() == "true": + active_only = False + matched = match_affiliation(params.get("affiliation"), active_only, version) + if version == "v2": + return None, MatchingResultV2(matched) + return None, MatchingResultV1(matched) + except: + return Errors('"affiliation" parameter missing'), None return Errors('"affiliation" parameter missing'), None \ No newline at end of file diff --git a/rorapi/common/views.py b/rorapi/common/views.py index 6248b8e4..b28c770f 100644 --- a/rorapi/common/views.py +++ b/rorapi/common/views.py @@ -158,8 +158,8 @@ def list(self, request, version=REST_FRAMEWORK["DEFAULT_VERSION"]): if "affiliation" in params: if version == "v2": if "single_search" in params: - errors, organizations = match_organizations(params, version) - # errors, organizations = single_search_match_organizations(params, version) + # errors, organizations = match_organizations(params, version) + errors, organizations = single_search_match_organizations(params, version) else: errors, organizations = match_organizations(params, version) else: From 134f10749daabe5dd674e9444b92c978218cf9fd Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Wed, 10 Sep 2025 18:14:52 -0400 Subject: [PATCH 06/33] Adding single search --- rorapi/common/matching_single_search.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 209df3a4..eea90b3a 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -324,5 +324,5 @@ def match_organizations(params, version): return None, MatchingResultV2(matched) return None, MatchingResultV1(matched) except: - return Errors('"affiliation" parameter missing'), None - return Errors('"affiliation" parameter missing'), None \ No newline at end of file + return Errors(["'affiliation' parameter missing here"]), None + return Errors(["'affiliation' parameter missing"]), None \ No newline at end of file From 8865686a445d52497262a189187a564f78ab6684 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Wed, 10 Sep 2025 18:16:14 -0400 Subject: [PATCH 07/33] Adding single search --- rorapi/common/matching_single_search.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index eea90b3a..bc3fe9ea 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -314,15 +314,15 @@ def match_affiliation(affiliation, active_only, version): def match_organizations(params, version): if "affiliation" in params: + active_only = True + if "all_status" in params: + if params["all_status"] == "" or params["all_status"].lower() == "true": + active_only = False try: - active_only = True - if "all_status" in params: - if params["all_status"] == "" or params["all_status"].lower() == "true": - active_only = False matched = match_affiliation(params.get("affiliation"), active_only, version) - if version == "v2": - return None, MatchingResultV2(matched) - return None, MatchingResultV1(matched) except: return Errors(["'affiliation' parameter missing here"]), None + if version == "v2": + return None, MatchingResultV2(matched) + return None, MatchingResultV1(matched) return Errors(["'affiliation' parameter missing"]), None \ No newline at end of file From 4c1b8cb0055c60ec18380dc47b8a71956f1022e4 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Wed, 10 Sep 2025 18:33:25 -0400 Subject: [PATCH 08/33] Adding single search --- rorapi/common/matching_single_search.py | 27 ++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index bc3fe9ea..2191c9f7 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -307,9 +307,21 @@ def get_candidates(aff, countries, version): def match_affiliation(affiliation, active_only, version): - countries = get_countries(affiliation) - chosen, all_matched = get_candidates(affiliation, countries, version) - return get_output(chosen, all_matched, active_only) + try: + try: + countries = get_countries(affiliation) + except: + return "countries error" + try: + chosen, all_matched = get_candidates(affiliation, countries, version) + except: + return "get_candidates error" + try: + return get_output(chosen, all_matched, active_only) + except: + return "get_output error" + except: + return "error" def match_organizations(params, version): @@ -318,10 +330,11 @@ def match_organizations(params, version): if "all_status" in params: if params["all_status"] == "" or params["all_status"].lower() == "true": active_only = False - try: - matched = match_affiliation(params.get("affiliation"), active_only, version) - except: - return Errors(["'affiliation' parameter missing here"]), None + matched = match_affiliation(params.get("affiliation"), active_only, version) + + if isinstance(matched, str): + return Errors(["{}".format(matched)]), None + if version == "v2": return None, MatchingResultV2(matched) return None, MatchingResultV1(matched) From 384146a833990736e70844d0d306687d68c60877 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Wed, 10 Sep 2025 19:03:04 -0400 Subject: [PATCH 09/33] Adding single search --- rorapi/common/matching_single_search.py | 32 +++++++++++-------------- 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 2191c9f7..36968557 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -262,7 +262,7 @@ def match_by_query(text, query, countries): chosen_candidate = choose_candidate(rescored_candidates) if chosen_candidate: if (countries - and to_region(chosen_candidate.organization["_source"]["locations"][0]["geonames_details"]["country_code"]) + and to_region(chosen_candidate[0]["_source"]["locations"][0]["geonames_details"]["country_code"]) not in countries): pass else: @@ -302,26 +302,22 @@ def get_output(chosen, all_matched, active_only): def get_candidates(aff, countries, version): qb = ESQueryBuilder(version) - qb.add_affiliation_query(aff, 200) - return match_by_query(aff, qb.get_query(), countries) + try: + qb.add_affiliation_query(aff, 200) + except: + return "query error", None + try: + return match_by_query(aff, qb.get_query(), countries) + except: + return "match_by_query error", None def match_affiliation(affiliation, active_only, version): - try: - try: - countries = get_countries(affiliation) - except: - return "countries error" - try: - chosen, all_matched = get_candidates(affiliation, countries, version) - except: - return "get_candidates error" - try: - return get_output(chosen, all_matched, active_only) - except: - return "get_output error" - except: - return "error" + countries = get_countries(affiliation) + chosen, all_matched = get_candidates(affiliation, countries, version) + if isinstance(chosen, str): + return chosen + return get_output(chosen, all_matched, active_only) def match_organizations(params, version): From 034350c495eff499e74be0bc862bc84b578df382 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Wed, 10 Sep 2025 22:20:05 -0400 Subject: [PATCH 10/33] Adding single search --- rorapi/common/matching_single_search.py | 97 ++++++++++++++----------- 1 file changed, 53 insertions(+), 44 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 36968557..8b02929e 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -241,45 +241,60 @@ def choose_candidate(rescored): def match_by_query(text, query, countries): """Match affiliation text using specific ES query.""" - scored_candidates = [] - chosen_candidate = None - chosen_true = None - results = query.execute() - candidates = results.hits.hits + try: + scored_candidates = [] + chosen_candidate = None + chosen_true = None + results = query.execute() + candidates = results.hits.hits + except: + return "query error", None if candidates: - candidates = [c for c in candidates if c["_source"]["status"] == "active"] - scored_candidates = [score(text, c) for c in candidates] - scored_candidates = [s for s in scored_candidates if s.score >= MIN_SCORE_FOR_RETURN] + try: + candidates = [c for c in candidates if c["_source"]["status"] == "active"] + scored_candidates = [score(text, c) for c in candidates] + scored_candidates = [s for s in scored_candidates if s.score >= MIN_SCORE_FOR_RETURN] + except: + return "score error", None if scored_candidates: - if (len(scored_candidates) == 1) and (scored_candidates[0].score >= MIN_SCORE): - chosen_candidate = scored_candidates[0] - if len(scored_candidates) > 1: - rescored_candidates = rescore(text, scored_candidates) - rescored_candidates = [ - r for r in rescored_candidates if r.score >= MIN_SCORE - ] - if rescored_candidates: - chosen_candidate = choose_candidate(rescored_candidates) + try: + if (len(scored_candidates) == 1) and (scored_candidates[0].score >= MIN_SCORE): + chosen_candidate = scored_candidates[0] + if len(scored_candidates) > 1: + rescored_candidates = rescore(text, scored_candidates) + rescored_candidates = [ + r for r in rescored_candidates if r.score >= MIN_SCORE + ] + if rescored_candidates: + chosen_candidate = choose_candidate(rescored_candidates) + except: + return "rescored error", None if chosen_candidate: - if (countries - and to_region(chosen_candidate[0]["_source"]["locations"][0]["geonames_details"]["country_code"]) - not in countries): - pass - else: - chosen_true = MatchedOrganization( - organization=chosen_candidate.organization, - name=chosen_candidate.name, - rescore=chosen_candidate.rescore, - score=round(chosen_candidate.score / 100, 2), - start=chosen_candidate.start, - end=chosen_candidate.end, - matching_type=MATCHING_TYPE_SINGLE, - substring=chosen_candidate.substring, - chosen=True, - ) - scored_candidates = [ - s._replace(score=round(s.score / 100, 2)) for s in scored_candidates - ] + try: + if (countries + and to_region(chosen_candidate[0]["_source"]["locations"][0]["geonames_details"]["country_code"]) + not in countries): + pass + else: + chosen_true = MatchedOrganization( + organization=chosen_candidate.organization, + name=chosen_candidate.name, + rescore=chosen_candidate.rescore, + score=round(chosen_candidate.score / 100, 2), + start=chosen_candidate.start, + end=chosen_candidate.end, + matching_type=MATCHING_TYPE_SINGLE, + substring=chosen_candidate.substring, + chosen=True, + ) + except: + return "chosen error", None + try: + scored_candidates = [ + s._replace(score=round(s.score / 100, 2)) for s in scored_candidates + ] + except: + return "scored candidates error", None return chosen_true, scored_candidates @@ -302,14 +317,8 @@ def get_output(chosen, all_matched, active_only): def get_candidates(aff, countries, version): qb = ESQueryBuilder(version) - try: - qb.add_affiliation_query(aff, 200) - except: - return "query error", None - try: - return match_by_query(aff, qb.get_query(), countries) - except: - return "match_by_query error", None + qb.add_affiliation_query(aff, 200) + return match_by_query(aff, qb.get_query(), countries) def match_affiliation(affiliation, active_only, version): From fbcf8e53bdc46a1952412c6d5d7a8b3e59a8bacc Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Wed, 10 Sep 2025 22:42:19 -0400 Subject: [PATCH 11/33] Adding single search --- rorapi/common/matching_single_search.py | 79 +++++++++++-------------- 1 file changed, 35 insertions(+), 44 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 8b02929e..045ee61b 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -246,55 +246,46 @@ def match_by_query(text, query, countries): chosen_candidate = None chosen_true = None results = query.execute() - candidates = results.hits.hits except: return "query error", None + try: + candidates = results.hits.hits + except: + return f"candidates error: {results}", None if candidates: - try: - candidates = [c for c in candidates if c["_source"]["status"] == "active"] - scored_candidates = [score(text, c) for c in candidates] - scored_candidates = [s for s in scored_candidates if s.score >= MIN_SCORE_FOR_RETURN] - except: - return "score error", None + candidates = [c for c in candidates if c["_source"]["status"] == "active"] + scored_candidates = [score(text, c) for c in candidates] + scored_candidates = [s for s in scored_candidates if s.score >= MIN_SCORE_FOR_RETURN] if scored_candidates: - try: - if (len(scored_candidates) == 1) and (scored_candidates[0].score >= MIN_SCORE): - chosen_candidate = scored_candidates[0] - if len(scored_candidates) > 1: - rescored_candidates = rescore(text, scored_candidates) - rescored_candidates = [ - r for r in rescored_candidates if r.score >= MIN_SCORE - ] - if rescored_candidates: - chosen_candidate = choose_candidate(rescored_candidates) - except: - return "rescored error", None - if chosen_candidate: - try: - if (countries - and to_region(chosen_candidate[0]["_source"]["locations"][0]["geonames_details"]["country_code"]) - not in countries): - pass - else: - chosen_true = MatchedOrganization( - organization=chosen_candidate.organization, - name=chosen_candidate.name, - rescore=chosen_candidate.rescore, - score=round(chosen_candidate.score / 100, 2), - start=chosen_candidate.start, - end=chosen_candidate.end, - matching_type=MATCHING_TYPE_SINGLE, - substring=chosen_candidate.substring, - chosen=True, - ) - except: - return "chosen error", None - try: - scored_candidates = [ - s._replace(score=round(s.score / 100, 2)) for s in scored_candidates + if (len(scored_candidates) == 1) and (scored_candidates[0].score >= MIN_SCORE): + chosen_candidate = scored_candidates[0] + if len(scored_candidates) > 1: + rescored_candidates = rescore(text, scored_candidates) + rescored_candidates = [ + r for r in rescored_candidates if r.score >= MIN_SCORE ] - except: - return "scored candidates error", None + if rescored_candidates: + chosen_candidate = choose_candidate(rescored_candidates) + if chosen_candidate: + if (countries + and to_region(chosen_candidate[0]["_source"]["locations"][0]["geonames_details"]["country_code"]) + not in countries): + pass + else: + chosen_true = MatchedOrganization( + organization=chosen_candidate.organization, + name=chosen_candidate.name, + rescore=chosen_candidate.rescore, + score=round(chosen_candidate.score / 100, 2), + start=chosen_candidate.start, + end=chosen_candidate.end, + matching_type=MATCHING_TYPE_SINGLE, + substring=chosen_candidate.substring, + chosen=True, + ) + scored_candidates = [ + s._replace(score=round(s.score / 100, 2)) for s in scored_candidates + ] return chosen_true, scored_candidates From 490a1d87fbe070ebc64054135d39f05311a8a800 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Wed, 10 Sep 2025 22:55:03 -0400 Subject: [PATCH 12/33] Adding single search --- rorapi/common/matching_single_search.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 045ee61b..4af5cf45 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -246,12 +246,12 @@ def match_by_query(text, query, countries): chosen_candidate = None chosen_true = None results = query.execute() - except: - return "query error", None + except Exception as e: + return f"query error: {e}", None try: candidates = results.hits.hits - except: - return f"candidates error: {results}", None + except Exception as e: + return f"candidates error: {e}\n{results}", None if candidates: candidates = [c for c in candidates if c["_source"]["status"] == "active"] scored_candidates = [score(text, c) for c in candidates] From c18c19d523233a6fe4e11ea7940d5b27fbb57c9a Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Thu, 11 Sep 2025 09:11:56 -0400 Subject: [PATCH 13/33] Adding single search --- rorapi/common/es_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rorapi/common/es_utils.py b/rorapi/common/es_utils.py index af19e529..70ecdc93 100644 --- a/rorapi/common/es_utils.py +++ b/rorapi/common/es_utils.py @@ -32,7 +32,7 @@ def add_affiliation_query(self, terms, max_candidates): # print(terms) self.search = self.search.query( "nested", - path="affiliation_match.names", + path="affiliation_match", score_mode="max", query=Q("match", **{"affiliation_match.names.name": terms}) ).extra(size=max_candidates) From ee3b4637eaa55684daf68852b4b81685de4bea70 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Thu, 11 Sep 2025 09:55:24 -0400 Subject: [PATCH 14/33] Adding single search --- rorapi/common/matching_single_search.py | 16 +++++----------- rorapi/management/commands/indexror.py | 13 +++++++++++++ 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 4af5cf45..3ba5a1f2 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -241,17 +241,11 @@ def choose_candidate(rescored): def match_by_query(text, query, countries): """Match affiliation text using specific ES query.""" - try: - scored_candidates = [] - chosen_candidate = None - chosen_true = None - results = query.execute() - except Exception as e: - return f"query error: {e}", None - try: - candidates = results.hits.hits - except Exception as e: - return f"candidates error: {e}\n{results}", None + scored_candidates = [] + chosen_candidate = None + chosen_true = None + results = query.execute() + candidates = results.hits.hits if candidates: candidates = [c for c in candidates if c["_source"]["status"] == "active"] scored_candidates = [score(text, c) for c in candidates] diff --git a/rorapi/management/commands/indexror.py b/rorapi/management/commands/indexror.py index b6d643ec..7dda5af0 100644 --- a/rorapi/management/commands/indexror.py +++ b/rorapi/management/commands/indexror.py @@ -45,6 +45,17 @@ def get_nested_ids_v2(org): for eid in ext_id['all']: yield eid +def get_affiliation_match_doc(org): + doc = { + 'id': org['id'], + 'country': org["locations"][0]["geonames_details"]["country_code"], + 'status': org['status'], + 'primary': [n["value"] for n in org["names"] if "ror_display" in n["types"]][0], + 'names': [{"name": n} for n in get_nested_names_v2(org)], + 'relationships': [{"type": r['type'], "id": r['id']} for r in org['relationships']] + } + return doc + def prepare_files(path, local_file): data = [] err = {} @@ -165,6 +176,8 @@ def index(dataset, version): org['names_ids'] += [{ 'id': n } for n in get_nested_ids_v2(org)] + # experimental affiliations_match nested doc + org['affiliation_match'] = get_affiliation_match_doc(org) else: org['names_ids'] = [{ 'name': n From 3516e7ee06ae9776355239c254c740d77d263c91 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Thu, 11 Sep 2025 10:12:22 -0400 Subject: [PATCH 15/33] Adding single search --- rorapi/common/matching_single_search.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 3ba5a1f2..991c67df 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -245,7 +245,12 @@ def match_by_query(text, query, countries): chosen_candidate = None chosen_true = None results = query.execute() - candidates = results.hits.hits + except Exception as e: + return f"query error: {e}", None + try: + candidates = results.hits.hits + except Exception as e: + return f"candidates error: {e}\n{results}", None if candidates: candidates = [c for c in candidates if c["_source"]["status"] == "active"] scored_candidates = [score(text, c) for c in candidates] From 7057d95caf5369112941369a16fc486bcc48427d Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Thu, 11 Sep 2025 10:18:20 -0400 Subject: [PATCH 16/33] Adding single search --- rorapi/common/matching_single_search.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 991c67df..4af5cf45 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -241,10 +241,11 @@ def choose_candidate(rescored): def match_by_query(text, query, countries): """Match affiliation text using specific ES query.""" - scored_candidates = [] - chosen_candidate = None - chosen_true = None - results = query.execute() + try: + scored_candidates = [] + chosen_candidate = None + chosen_true = None + results = query.execute() except Exception as e: return f"query error: {e}", None try: From 57201c7854c25da0b64b5faaae5cbaa15c0cc40c Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Thu, 11 Sep 2025 10:44:36 -0400 Subject: [PATCH 17/33] Adding single search --- rorapi/common/es_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rorapi/common/es_utils.py b/rorapi/common/es_utils.py index 70ecdc93..af19e529 100644 --- a/rorapi/common/es_utils.py +++ b/rorapi/common/es_utils.py @@ -32,7 +32,7 @@ def add_affiliation_query(self, terms, max_candidates): # print(terms) self.search = self.search.query( "nested", - path="affiliation_match", + path="affiliation_match.names", score_mode="max", query=Q("match", **{"affiliation_match.names.name": terms}) ).extra(size=max_candidates) From a0dd3e7ed9a12ab574538f0e020f17d33fe9a64c Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Mon, 15 Sep 2025 14:24:56 -0400 Subject: [PATCH 18/33] Adding single search --- rorapi/common/matching_single_search.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 4af5cf45..1c75e640 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -4,6 +4,7 @@ import unidecode from rorapi.common.models import Errors +from rorapi.settings import ES7 from rorapi.common.es_utils import ESQueryBuilder from rorapi.v1.models import MatchingResult as MatchingResultV1 from rorapi.v2.models import MatchingResult as MatchingResultV2 @@ -308,8 +309,17 @@ def get_output(chosen, all_matched, active_only): def get_candidates(aff, countries, version): qb = ESQueryBuilder(version) - qb.add_affiliation_query(aff, 200) - return match_by_query(aff, qb.get_query(), countries) + try: + qb.add_affiliation_query(aff, 200) + return match_by_query(aff, qb.get_query(), countries) + except Exception as e: + try: + # get index info like the mappings + curr_v2_index = ES7.get('organizations-v2')['mappings'] + return curr_v2_index, None + except Exception as e2: + return f"query error: {e2}", None + return f"query error: {e2}", None def match_affiliation(affiliation, active_only, version): From b8e8ea0c667b3d5e9e7188d0427ee81727324ddd Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Mon, 15 Sep 2025 14:35:58 -0400 Subject: [PATCH 19/33] Adding single search --- rorapi/common/matching_single_search.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 1c75e640..1939f081 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -309,17 +309,15 @@ def get_output(chosen, all_matched, active_only): def get_candidates(aff, countries, version): qb = ESQueryBuilder(version) + try: + curr_v2_index = ES7.get('organizations-v2')['mappings'] + except Exception as e: + return f"query error {version}: {e}", None try: qb.add_affiliation_query(aff, 200) return match_by_query(aff, qb.get_query(), countries) except Exception as e: - try: - # get index info like the mappings - curr_v2_index = ES7.get('organizations-v2')['mappings'] - return curr_v2_index, None - except Exception as e2: - return f"query error: {e2}", None - return f"query error: {e2}", None + return f"query error: {e}", None def match_affiliation(affiliation, active_only, version): From 5162244247ef68b4a26537b0bb3cf699c08c0ec8 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Mon, 15 Sep 2025 14:42:29 -0400 Subject: [PATCH 20/33] Adding single search --- rorapi/common/matching_single_search.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 1939f081..de7efaa1 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -2,6 +2,7 @@ import re import unicodedata import unidecode +import json from rorapi.common.models import Errors from rorapi.settings import ES7 @@ -311,6 +312,8 @@ def get_candidates(aff, countries, version): qb = ESQueryBuilder(version) try: curr_v2_index = ES7.get('organizations-v2')['mappings'] + # return as json string + return json.dumps(curr_v2_index), None except Exception as e: return f"query error {version}: {e}", None try: From 380acaf9f2bbd6a32649591c00a1799fb1114b14 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Mon, 15 Sep 2025 15:13:58 -0400 Subject: [PATCH 21/33] Adding single search --- rorapi/common/matching_single_search.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index de7efaa1..9c8c4aee 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -311,7 +311,8 @@ def get_output(chosen, all_matched, active_only): def get_candidates(aff, countries, version): qb = ESQueryBuilder(version) try: - curr_v2_index = ES7.get('organizations-v2')['mappings'] + # get the index mappings for an index + curr_v2_index = ES7.indices.get_mapping('organizations-v2') # return as json string return json.dumps(curr_v2_index), None except Exception as e: From 4b88d8857941a277a0bf1f3bba4f99844524daad Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Thu, 18 Sep 2025 22:35:53 -0400 Subject: [PATCH 22/33] Adding single search --- rorapi/management/commands/indexror.py | 9 ++++++++- rorapi/management/commands/indexrordump.py | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/rorapi/management/commands/indexror.py b/rorapi/management/commands/indexror.py index 7dda5af0..d6750d0e 100644 --- a/rorapi/management/commands/indexror.py +++ b/rorapi/management/commands/indexror.py @@ -45,13 +45,18 @@ def get_nested_ids_v2(org): for eid in ext_id['all']: yield eid +def get_single_search_names_v2(org): + for name in org["names"]: + if "acronym" not in name["types"]: + yield name["value"] + def get_affiliation_match_doc(org): doc = { 'id': org['id'], 'country': org["locations"][0]["geonames_details"]["country_code"], 'status': org['status'], 'primary': [n["value"] for n in org["names"] if "ror_display" in n["types"]][0], - 'names': [{"name": n} for n in get_nested_names_v2(org)], + 'names': [{"name": n} for n in get_single_search_names_v2(org)], 'relationships': [{"type": r['type'], "id": r['id']} for r in org['relationships']] } return doc @@ -186,6 +191,8 @@ def index(dataset, version): 'id': n } for n in get_nested_ids_v1(org)] body.append(org) + print(body[0]) + print(body[8]) ES7.bulk(body) except TransportError: err[index.__name__] = f"Indexing error, reverted index back to previous state" diff --git a/rorapi/management/commands/indexrordump.py b/rorapi/management/commands/indexrordump.py index 1cea9367..e3d11b9f 100644 --- a/rorapi/management/commands/indexrordump.py +++ b/rorapi/management/commands/indexrordump.py @@ -44,13 +44,18 @@ def get_nested_ids_v2(org): for eid in ext_id['all']: yield eid +def get_single_search_names_v2(org): + for name in org["names"]: + if "acronym" not in name["types"]: + yield name["value"] + def get_affiliation_match_doc(org): doc = { 'id': org['id'], 'country': org["locations"][0]["geonames_details"]["country_code"], 'status': org['status'], 'primary': [n["value"] for n in org["names"] if "ror_display" in n["types"]][0], - 'names': [{"name": n} for n in get_nested_names_v2(org)], + 'names': [{"name": n} for n in get_single_search_names_v2(org)], 'relationships': [{"type": r['type'], "id": r['id']} for r in org['relationships']] } return doc @@ -93,6 +98,8 @@ def index_dump(self, filename, index, dataset): 'id': n } for n in get_nested_ids_v1(org)] body.append(org) + print(body[0]) + print(body[8]) ES7.bulk(body) except TransportError: self.stdout.write(TransportError) From ea185daf8ba2b2c75646d56a4abb3f17a6c28cf8 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Thu, 18 Sep 2025 22:58:52 -0400 Subject: [PATCH 23/33] Adding single search --- rorapi/management/commands/indexror.py | 7 +++++-- rorapi/management/commands/indexrordump.py | 6 ++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/rorapi/management/commands/indexror.py b/rorapi/management/commands/indexror.py index d6750d0e..2217dd6c 100644 --- a/rorapi/management/commands/indexror.py +++ b/rorapi/management/commands/indexror.py @@ -9,6 +9,7 @@ import pathlib import shutil from rorapi.settings import ES7, ES_VARS, DATA +import random from django.core.management.base import BaseCommand from elasticsearch import TransportError @@ -191,8 +192,10 @@ def index(dataset, version): 'id': n } for n in get_nested_ids_v1(org)] body.append(org) - print(body[0]) - print(body[8]) + print("example_1: ", body[0]) + print("example_1: ", body[1]) + print("example_2: ", body[8]) + print("example_2: ", body[9]) ES7.bulk(body) except TransportError: err[index.__name__] = f"Indexing error, reverted index back to previous state" diff --git a/rorapi/management/commands/indexrordump.py b/rorapi/management/commands/indexrordump.py index e3d11b9f..b810fc3e 100644 --- a/rorapi/management/commands/indexrordump.py +++ b/rorapi/management/commands/indexrordump.py @@ -98,8 +98,10 @@ def index_dump(self, filename, index, dataset): 'id': n } for n in get_nested_ids_v1(org)] body.append(org) - print(body[0]) - print(body[8]) + print("example_1: ", body[0]) + print("example_1: ", body[1]) + print("example_2: ", body[8]) + print("example_2: ", body[9]) ES7.bulk(body) except TransportError: self.stdout.write(TransportError) From 88faf1fad378504ec2a58c308bd456171ef489c4 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Thu, 18 Sep 2025 23:34:04 -0400 Subject: [PATCH 24/33] Adding single search --- rorapi/management/commands/indexror.py | 1 - rorapi/tests/tests_unit/tests_views_v2.py | 13 +++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/rorapi/management/commands/indexror.py b/rorapi/management/commands/indexror.py index 2217dd6c..2c8c7e79 100644 --- a/rorapi/management/commands/indexror.py +++ b/rorapi/management/commands/indexror.py @@ -9,7 +9,6 @@ import pathlib import shutil from rorapi.settings import ES7, ES_VARS, DATA -import random from django.core.management.base import BaseCommand from elasticsearch import TransportError diff --git a/rorapi/tests/tests_unit/tests_views_v2.py b/rorapi/tests/tests_unit/tests_views_v2.py index 88111979..34f0ddaa 100644 --- a/rorapi/tests/tests_unit/tests_views_v2.py +++ b/rorapi/tests/tests_unit/tests_views_v2.py @@ -22,6 +22,19 @@ def setUp(self): 'data/test_data_search_es7_v2.json'), 'r') as f: self.test_data = json.load(f) + @mock.patch('elasticsearch_dsl.Search.execute') + def test_search_organizations_with_affiliations_match(self, search_mock): + view = views.OrganizationViewSet.as_view({'get': 'list'}) + request = factory.get('/v2/organizations?affiliation=Sorbonne University, France&single_search= ') + + response = view(request, version=self.V2_VERSION) + response.render() + organizations = json.loads(response.content.decode('utf-8')) + + print("testing affiliations match: ", organizations) + self.assertNotEqual(organizations['number_of_results'], 0) + + @mock.patch('elasticsearch_dsl.Search.execute') def test_search_organizations(self, search_mock): search_mock.return_value = \ From e8cf6f591d4dcaa638fd9e450e6d1f947044da40 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Fri, 19 Sep 2025 08:20:09 -0400 Subject: [PATCH 25/33] Adding single search --- rorapi/common/matching_single_search.py | 32 +++++----------------- rorapi/management/commands/indexror.py | 4 --- rorapi/management/commands/indexrordump.py | 4 --- 3 files changed, 7 insertions(+), 33 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 9c8c4aee..04e67fe4 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -243,17 +243,11 @@ def choose_candidate(rescored): def match_by_query(text, query, countries): """Match affiliation text using specific ES query.""" - try: - scored_candidates = [] - chosen_candidate = None - chosen_true = None - results = query.execute() - except Exception as e: - return f"query error: {e}", None - try: - candidates = results.hits.hits - except Exception as e: - return f"candidates error: {e}\n{results}", None + scored_candidates = [] + chosen_candidate = None + chosen_true = None + results = query.execute() + candidates = results.hits.hits if candidates: candidates = [c for c in candidates if c["_source"]["status"] == "active"] scored_candidates = [score(text, c) for c in candidates] @@ -310,25 +304,13 @@ def get_output(chosen, all_matched, active_only): def get_candidates(aff, countries, version): qb = ESQueryBuilder(version) - try: - # get the index mappings for an index - curr_v2_index = ES7.indices.get_mapping('organizations-v2') - # return as json string - return json.dumps(curr_v2_index), None - except Exception as e: - return f"query error {version}: {e}", None - try: - qb.add_affiliation_query(aff, 200) - return match_by_query(aff, qb.get_query(), countries) - except Exception as e: - return f"query error: {e}", None + qb.add_affiliation_query(aff, 200) + return match_by_query(aff, qb.get_query(), countries) def match_affiliation(affiliation, active_only, version): countries = get_countries(affiliation) chosen, all_matched = get_candidates(affiliation, countries, version) - if isinstance(chosen, str): - return chosen return get_output(chosen, all_matched, active_only) diff --git a/rorapi/management/commands/indexror.py b/rorapi/management/commands/indexror.py index 2c8c7e79..c86b720b 100644 --- a/rorapi/management/commands/indexror.py +++ b/rorapi/management/commands/indexror.py @@ -191,10 +191,6 @@ def index(dataset, version): 'id': n } for n in get_nested_ids_v1(org)] body.append(org) - print("example_1: ", body[0]) - print("example_1: ", body[1]) - print("example_2: ", body[8]) - print("example_2: ", body[9]) ES7.bulk(body) except TransportError: err[index.__name__] = f"Indexing error, reverted index back to previous state" diff --git a/rorapi/management/commands/indexrordump.py b/rorapi/management/commands/indexrordump.py index b810fc3e..67197050 100644 --- a/rorapi/management/commands/indexrordump.py +++ b/rorapi/management/commands/indexrordump.py @@ -98,10 +98,6 @@ def index_dump(self, filename, index, dataset): 'id': n } for n in get_nested_ids_v1(org)] body.append(org) - print("example_1: ", body[0]) - print("example_1: ", body[1]) - print("example_2: ", body[8]) - print("example_2: ", body[9]) ES7.bulk(body) except TransportError: self.stdout.write(TransportError) From d44bbabaf3a02184fc8b74336a43a7dde457f9a1 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Fri, 19 Sep 2025 08:35:04 -0400 Subject: [PATCH 26/33] Adding single search --- rorapi/common/matching_single_search.py | 3 --- rorapi/tests/tests_unit/tests_views_v2.py | 4 +++- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 04e67fe4..39ff3e15 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -321,9 +321,6 @@ def match_organizations(params, version): if params["all_status"] == "" or params["all_status"].lower() == "true": active_only = False matched = match_affiliation(params.get("affiliation"), active_only, version) - - if isinstance(matched, str): - return Errors(["{}".format(matched)]), None if version == "v2": return None, MatchingResultV2(matched) diff --git a/rorapi/tests/tests_unit/tests_views_v2.py b/rorapi/tests/tests_unit/tests_views_v2.py index 34f0ddaa..5df65173 100644 --- a/rorapi/tests/tests_unit/tests_views_v2.py +++ b/rorapi/tests/tests_unit/tests_views_v2.py @@ -25,7 +25,9 @@ def setUp(self): @mock.patch('elasticsearch_dsl.Search.execute') def test_search_organizations_with_affiliations_match(self, search_mock): view = views.OrganizationViewSet.as_view({'get': 'list'}) - request = factory.get('/v2/organizations?affiliation=Sorbonne University, France&single_search= ') + data = {'affiliation':'Sorbonne University, France', + 'single_search': ''} + request = factory.get('/v2/organizations', data) response = view(request, version=self.V2_VERSION) response.render() From 5e48232ba37e85833fe8b3d124a5699a4d445254 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Fri, 19 Sep 2025 08:55:07 -0400 Subject: [PATCH 27/33] Adding single search --- rorapi/tests/tests_unit/tests_views_v2.py | 54 ++++++++++++++++++++++- 1 file changed, 52 insertions(+), 2 deletions(-) diff --git a/rorapi/tests/tests_unit/tests_views_v2.py b/rorapi/tests/tests_unit/tests_views_v2.py index 5df65173..41698bc0 100644 --- a/rorapi/tests/tests_unit/tests_views_v2.py +++ b/rorapi/tests/tests_unit/tests_views_v2.py @@ -23,7 +23,55 @@ def setUp(self): self.test_data = json.load(f) @mock.patch('elasticsearch_dsl.Search.execute') - def test_search_organizations_with_affiliations_match(self, search_mock): + def test_search_organizations_with_affiliations_match(self, search_mock): + # Create mock data with affiliation_match field required for single search + mock_hit = { + "_index": "organizations-v2", + "_type": "_doc", + "_id": "https://ror.org/02en5vm52", + "_score": 1.0, + "_source": { + "id": "https://ror.org/02en5vm52", + "status": "active", + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "continent_code": "EU", + "continent_name": "Europe", + "country_code": "FR", + "country_name": "France", + "lat": 48.8566, + "lng": 2.3522, + "name": "Paris" + } + } + ], + "names": [ + { + "value": "Sorbonne University", + "types": ["ror_display", "label"], + "lang": null + } + ], + "affiliation_match": { + "names": [ + {"name": "Sorbonne University"}, + {"name": "Sorbonne Université"}, + {"name": "Université de la Sorbonne"} + ] + }, + "types": ["Education"], + "established": 2018 + } + } + + mock_response = IterableAttrDict( + {"hits": {"hits": [mock_hit], "total": {"value": 1}}}, + [mock_hit] + ) + search_mock.return_value = mock_response + view = views.OrganizationViewSet.as_view({'get': 'list'}) data = {'affiliation':'Sorbonne University, France', 'single_search': ''} @@ -34,7 +82,9 @@ def test_search_organizations_with_affiliations_match(self, search_mock): organizations = json.loads(response.content.decode('utf-8')) print("testing affiliations match: ", organizations) - self.assertNotEqual(organizations['number_of_results'], 0) + self.assertEqual(response.status_code, 200) + self.assertIn('items', organizations) + self.assertGreater(len(organizations['items']), 0) @mock.patch('elasticsearch_dsl.Search.execute') From 91607c1f2efa1d7fecd2dbb59c1743936ad1e809 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Fri, 19 Sep 2025 09:04:02 -0400 Subject: [PATCH 28/33] Adding single search --- rorapi/tests/tests_unit/tests_views_v2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rorapi/tests/tests_unit/tests_views_v2.py b/rorapi/tests/tests_unit/tests_views_v2.py index 41698bc0..5e24a3e4 100644 --- a/rorapi/tests/tests_unit/tests_views_v2.py +++ b/rorapi/tests/tests_unit/tests_views_v2.py @@ -51,7 +51,7 @@ def test_search_organizations_with_affiliations_match(self, search_mock): { "value": "Sorbonne University", "types": ["ror_display", "label"], - "lang": null + "lang": "fr" } ], "affiliation_match": { From 6d3b2cf83e7300f6caea4efeb9885dc905e603de Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Fri, 19 Sep 2025 09:19:11 -0400 Subject: [PATCH 29/33] Adding single search --- rorapi/tests/tests_unit/tests_views_v2.py | 65 ----------------------- 1 file changed, 65 deletions(-) diff --git a/rorapi/tests/tests_unit/tests_views_v2.py b/rorapi/tests/tests_unit/tests_views_v2.py index 5e24a3e4..88111979 100644 --- a/rorapi/tests/tests_unit/tests_views_v2.py +++ b/rorapi/tests/tests_unit/tests_views_v2.py @@ -22,71 +22,6 @@ def setUp(self): 'data/test_data_search_es7_v2.json'), 'r') as f: self.test_data = json.load(f) - @mock.patch('elasticsearch_dsl.Search.execute') - def test_search_organizations_with_affiliations_match(self, search_mock): - # Create mock data with affiliation_match field required for single search - mock_hit = { - "_index": "organizations-v2", - "_type": "_doc", - "_id": "https://ror.org/02en5vm52", - "_score": 1.0, - "_source": { - "id": "https://ror.org/02en5vm52", - "status": "active", - "locations": [ - { - "geonames_id": 2988507, - "geonames_details": { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FR", - "country_name": "France", - "lat": 48.8566, - "lng": 2.3522, - "name": "Paris" - } - } - ], - "names": [ - { - "value": "Sorbonne University", - "types": ["ror_display", "label"], - "lang": "fr" - } - ], - "affiliation_match": { - "names": [ - {"name": "Sorbonne University"}, - {"name": "Sorbonne Université"}, - {"name": "Université de la Sorbonne"} - ] - }, - "types": ["Education"], - "established": 2018 - } - } - - mock_response = IterableAttrDict( - {"hits": {"hits": [mock_hit], "total": {"value": 1}}}, - [mock_hit] - ) - search_mock.return_value = mock_response - - view = views.OrganizationViewSet.as_view({'get': 'list'}) - data = {'affiliation':'Sorbonne University, France', - 'single_search': ''} - request = factory.get('/v2/organizations', data) - - response = view(request, version=self.V2_VERSION) - response.render() - organizations = json.loads(response.content.decode('utf-8')) - - print("testing affiliations match: ", organizations) - self.assertEqual(response.status_code, 200) - self.assertIn('items', organizations) - self.assertGreater(len(organizations['items']), 0) - - @mock.patch('elasticsearch_dsl.Search.execute') def test_search_organizations(self, search_mock): search_mock.return_value = \ From 4fd646a7edb093328698d2917f7736e458cb3697 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Fri, 19 Sep 2025 11:53:05 -0400 Subject: [PATCH 30/33] Adding single search --- rorapi/common/matching_single_search.py | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 39ff3e15..d41c54a9 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -251,7 +251,8 @@ def match_by_query(text, query, countries): if candidates: candidates = [c for c in candidates if c["_source"]["status"] == "active"] scored_candidates = [score(text, c) for c in candidates] - scored_candidates = [s for s in scored_candidates if s.score >= MIN_SCORE_FOR_RETURN] + scored_candidates = [s for s in scored_candidates if s.score >= MIN_SCORE] + scored_candidates_to_return = [s for s in scored_candidates if s.score >= MIN_SCORE_FOR_RETURN] if scored_candidates: if (len(scored_candidates) == 1) and (scored_candidates[0].score >= MIN_SCORE): chosen_candidate = scored_candidates[0] @@ -279,18 +280,14 @@ def match_by_query(text, query, countries): substring=chosen_candidate.substring, chosen=True, ) - scored_candidates = [ - s._replace(score=round(s.score / 100, 2)) for s in scored_candidates + scored_candidates_to_return = [ + s._replace(score=round(s.score / 100, 2)) for s in scored_candidates_to_return ] - return chosen_true, scored_candidates + return chosen_true, scored_candidates_to_return -def get_output(chosen, all_matched, active_only): - if active_only: - all_matched = [ - m for m in all_matched if m.organization["_source"]["status"] == "active" - ] +def get_output(chosen, all_matched): all_matched = sorted(all_matched, key=lambda x: x.score, reverse=True)[:100] if chosen: all_matched = [ From fccb83a34c8c9210742a6aafe0462f3501159ead Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Fri, 19 Sep 2025 13:35:37 -0400 Subject: [PATCH 31/33] Adding single search --- rorapi/common/matching_single_search.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index d41c54a9..182f983b 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -251,8 +251,8 @@ def match_by_query(text, query, countries): if candidates: candidates = [c for c in candidates if c["_source"]["status"] == "active"] scored_candidates = [score(text, c) for c in candidates] - scored_candidates = [s for s in scored_candidates if s.score >= MIN_SCORE] scored_candidates_to_return = [s for s in scored_candidates if s.score >= MIN_SCORE_FOR_RETURN] + scored_candidates = [s for s in scored_candidates if s.score >= MIN_SCORE] if scored_candidates: if (len(scored_candidates) == 1) and (scored_candidates[0].score >= MIN_SCORE): chosen_candidate = scored_candidates[0] @@ -305,19 +305,15 @@ def get_candidates(aff, countries, version): return match_by_query(aff, qb.get_query(), countries) -def match_affiliation(affiliation, active_only, version): +def match_affiliation(affiliation, version): countries = get_countries(affiliation) chosen, all_matched = get_candidates(affiliation, countries, version) - return get_output(chosen, all_matched, active_only) + return get_output(chosen, all_matched) def match_organizations(params, version): if "affiliation" in params: - active_only = True - if "all_status" in params: - if params["all_status"] == "" or params["all_status"].lower() == "true": - active_only = False - matched = match_affiliation(params.get("affiliation"), active_only, version) + matched = match_affiliation(params.get("affiliation"), version) if version == "v2": return None, MatchingResultV2(matched) From fdaac4a3d07889b5b016225aeb65321f02273832 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Fri, 19 Sep 2025 15:58:21 -0400 Subject: [PATCH 32/33] Adding single search --- rorapi/common/matching_single_search.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index 182f983b..d07b5588 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -244,6 +244,7 @@ def choose_candidate(rescored): def match_by_query(text, query, countries): """Match affiliation text using specific ES query.""" scored_candidates = [] + scored_candidates_to_return = [] chosen_candidate = None chosen_true = None results = query.execute() From ea05660100900644bfb7b0dc92135279fb0921f9 Mon Sep 17 00:00:00 2001 From: Justin Barrett Date: Fri, 19 Sep 2025 16:24:33 -0400 Subject: [PATCH 33/33] Adding single search --- rorapi/common/matching_single_search.py | 28 +++++++++++-------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/rorapi/common/matching_single_search.py b/rorapi/common/matching_single_search.py index d07b5588..db34bcd1 100644 --- a/rorapi/common/matching_single_search.py +++ b/rorapi/common/matching_single_search.py @@ -250,20 +250,16 @@ def match_by_query(text, query, countries): results = query.execute() candidates = results.hits.hits if candidates: - candidates = [c for c in candidates if c["_source"]["status"] == "active"] - scored_candidates = [score(text, c) for c in candidates] - scored_candidates_to_return = [s for s in scored_candidates if s.score >= MIN_SCORE_FOR_RETURN] - scored_candidates = [s for s in scored_candidates if s.score >= MIN_SCORE] + active_candidates = [score(text, c) for c in candidates if c["_source"]["status"] == "active"] + scored_candidates_to_return = [s for s in active_candidates if s.score >= MIN_SCORE_FOR_RETURN] + scored_candidates = [s for s in scored_candidates_to_return if s.score >= MIN_SCORE] + #### choose candidate #### if scored_candidates: - if (len(scored_candidates) == 1) and (scored_candidates[0].score >= MIN_SCORE): + if (len(scored_candidates) == 1): chosen_candidate = scored_candidates[0] - if len(scored_candidates) > 1: - rescored_candidates = rescore(text, scored_candidates) - rescored_candidates = [ - r for r in rescored_candidates if r.score >= MIN_SCORE - ] - if rescored_candidates: - chosen_candidate = choose_candidate(rescored_candidates) + rescored_candidates = rescore(text, scored_candidates) + if rescored_candidates: + chosen_candidate = choose_candidate(rescored_candidates) if chosen_candidate: if (countries and to_region(chosen_candidate[0]["_source"]["locations"][0]["geonames_details"]["country_code"]) @@ -281,15 +277,15 @@ def match_by_query(text, query, countries): substring=chosen_candidate.substring, chosen=True, ) - scored_candidates_to_return = [ - s._replace(score=round(s.score / 100, 2)) for s in scored_candidates_to_return - ] return chosen_true, scored_candidates_to_return def get_output(chosen, all_matched): - all_matched = sorted(all_matched, key=lambda x: x.score, reverse=True)[:100] + all_matched = sorted(all_matched, key=lambda x: x.score, reverse=True)[:10] + all_matched = [ + s._replace(score=round(s.score / 100, 2)) for s in all_matched + ] if chosen: all_matched = [ a